[Pkg] Tasks: Tasks-Squeak310-kph.35.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Fri Dec 12 04:58:30 UTC 2008


A new version of Tasks-Squeak310 was added to project Tasks:
http://www.squeaksource.com/Tasks/Tasks-Squeak310-kph.35.mcz

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

Name: Tasks-Squeak310-kph.35
Author: kph
Time: 12 December 2008, 4:58:28 am
UUID: 1595e749-4bd2-4c43-b167-21d96e1e83ff
Ancestors: Tasks-Squeak310-kph.34

makeRelease

=============== Diff against Tasks-Squeak310-kph.34 ===============

Item was changed:
  ----- Method: Squeak310MakeBuildCandidate class>>taskBUILD (in category 'as yet unclassified') -----
  taskBUILD
  
  	"starting with 3.10 or 3.10.2 get the image into a known state for fixes to be applied"
  
  	^ self action: {
  				
  			self taskResetFixesAutoDocumentation.
  	
  			[World removeAllMorphs.		
  			 Transcript open ].
  		
  			self taskTidyMorphs.
   			
  			self taskSetPreferences. 
  			self taskUpgradePackages.
  			
  			self taskEssentialFixes.
  			self taskDocumentFixes. "so far"
  		
  			self taskFinalize asTask run.
  
  			self taskTidyPackageOrganizer.
  			self taskSaveRehoming: self kernelPackages in: self repositoryInputBC.
  
- 			self taskCleanUpAndSaveAs: SystemVersion current version
  		}
  
  !

Item was added:
+ ----- Method: Squeak310MakeBuildCandidate class>>taskMakeRelease (in category 'as yet unclassified') -----
+ taskMakeRelease
+ 
+ 
+ 	^ self action: {
+ 	
+ 			[World removeAllMorphs.	
+ 			 Installer mc project: '311'; install: 'Documentation' ].
+ 
+ 			self taskDisplayReadMe.
+ 			self taskCleanUpAndSaveAs: SystemVersion current version.
+ 	}.!

Item was added:
+ ----- Method: ReleaseAfterSqueak310 class>>taskDisplayReadMe (in category 'as yet unclassified') -----
+ taskDisplayReadMe
+ 
+ 	| w |
+ 	
+ 	self action: [ 
+ 		Installer mc project: '311'; install: 'Documentation'.
+ 
+ 		w := Workspace openFile: 'Documentation/Welcome-' , self suffix, '.text'.
+ 	
+ 		w label: ('Welcome to... ', SystemVersion current asString).
+ 		w containingWindow 
+ 			position: (20 at 20);
+ 			extent: (200 at 300);
+ 			yourself.
+ 	]
+ 	
+ 		!



More information about the Packages mailing list