[squeak-dev] The Inbox: Morphic-fbs.630.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Dec 5 20:43:47 UTC 2012


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-fbs.630.mcz

==================== Summary ====================

Name: Morphic-fbs.630
Author: fbs
Time: 5 December 2012, 8:41:20.637 pm
UUID: 7d7af477-bc18-4cc3-9db7-352bb8e983f4
Ancestors: Morphic-fbs.629

Actually, #welcomeToSqueak will minimise the disruption to Morphic of a new release. I'm leaving #welcomeToSqueak43 in place until we factor our the release-specific info into a separate package to which Morphic may refer.

=============== Diff against Morphic-fbs.629 ===============

Item was added:
+ ----- Method: TheWorldMainDockingBar>>welcomeToSqueak (in category 'submenu - help') -----
+ welcomeToSqueak
+ 	^'Squeak 4.4 - Ulam Spiral
+ 
+ Changelog:
+ * Cleanup and simplification of Morphic text editing
+ * Add host window support, letting you display things in a host window. (Currently only on Windows and Mac.)
+ * Bugfixes in the Compiler, Parser and Debugger toolchain
+ * Stub support for the ability to evolve the bytecode set
+ * Better printing of Floats, hashing of DateAndTimes
+ * ChangeSorter improvements
+ * ToolBuilder improvements
+ * Merged network improvements from Etoys
+ * Monticello browsing can now group versions by branch, making tracking of parallel developments easier
+ * Decreased coupling between core packages
+ * IPv6 support (if your VM provides it)!!
+ ]style[(24 2 10 3 7 23 20 1 25 86 8 8 8 2 6 5 8 45 6 5 12 3 15 4 6 13 12 3 12 16 11 23 20 14 19 24 9 52 18 25 12 25)FBitstreamVeraSans#20.0,,bu,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,!!' readStream nextChunkText!

Item was removed:
- ----- Method: TheWorldMainDockingBar>>welcomeToSqueak44 (in category 'submenu - help') -----
- welcomeToSqueak44
- 	^'Squeak 4.4 - Ulam Spiral
- 
- Changelog:
- * Cleanup and simplification of Morphic text editing
- * Add host window support, letting you display things in a host window. (Currently only on Windows and Mac.)
- * Bugfixes in the Compiler, Parser and Debugger toolchain
- * Stub support for the ability to evolve the bytecode set
- * Better printing of Floats, hashing of DateAndTimes
- * ChangeSorter improvements
- * ToolBuilder improvements
- * Merged network improvements from Etoys
- * Monticello browsing can now group versions by branch, making tracking of parallel developments easier
- * Decreased coupling between core packages
- * IPv6 support (if your VM provides it)!!
- ]style[(24 2 10 3 7 23 20 1 25 86 8 8 8 2 6 5 8 45 6 5 12 3 15 4 6 13 12 3 12 16 11 23 20 14 19 24 9 52 18 25 12 25)FBitstreamVeraSans#20.0,,bu,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,,b,!!' readStream nextChunkText!

Item was changed:
  ----- Method: TheWorldMainDockingBar>>welcomeWorkspacesOn: (in category 'submenu - help') -----
  welcomeWorkspacesOn: menu
  
  	menu addItem:[:item|
  		item
  			contents: 'Welcome to Squeak 4.4' translated;
  			help: 'A Welcome Workspace' translated;
  			target: self;
  			selector: #showWelcomeText:label:in:;
  			arguments: {
+ 				#welcomeToSqueak.
- 				#welcomeToSqueak44. 
  				'Welcome to Squeak 4.4'. 
  				(200 at 200 extent: 500 at 300)
  			}].
  	menu addItem:[:item|
  		item
  			contents: 'Welcome Future Directions' translated;
  			help: 'A Welcome Workspace' translated;
  			target: self;
  			selector: #showWelcomeText:label:in:;
  			arguments: {
  				#welcomeFutureDirections. 
  				'Future Directions'. 
  				(140 at 140 extent: 500 at 300)
  			}].
  	menu addItem:[:item|
  		item
  			contents: 'The Squeak User Interface' translated;
  			help: 'A Welcome Workspace' translated;
  			target: self;
  			selector: #showWelcomeText:label:in:;
  			arguments: {
  				#squeakUserInterface. 
  				'The Squeak User Interface'. 
  				(160 at 160 extent: 500 at 300)
  			}].
  	menu addItem:[:item|
  		item
  			contents: 'Working With Squeak' translated;
  			help: 'A Welcome Workspace' translated;
  			target: self;
  			selector: #showWelcomeText:label:in:;
  			arguments: {
  				#workingWithSqueak. 
  				'Working With Squeak'. 
  				(180 at 180 extent: 500 at 300)
  			}].
  	menu addItem:[:item|
  		item
  			contents: 'License Information' translated;
  			help: 'A Welcome Workspace' translated;
  			target: self;
  			selector: #showWelcomeText:label:in:;
  			arguments: {
  				#licenseInformation. 
  				'License Information'. 
  				(200 at 200 extent: 500 at 300)
  			}].!



More information about the Squeak-dev mailing list