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

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Mon Dec 8 18:36:17 UTC 2008


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

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

Name: Tasks-Squeak310-kph.23
Author: kph
Time: 8 December 2008, 6:36:12 pm
UUID: cdd22e63-a273-4cf0-a59d-795313cc1d37
Ancestors: Tasks-Squeak310-kph.22

.

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

Item was added:
+ ReleaseAfterSqueak310 subclass: #ReleaseSqueak310
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'Tasks-Squeak310'!
+ 
+ !ReleaseSqueak310 commentStamp: 'kph 12/8/2008 18:31' prior: 0!
+ This isStable and isUpdate!

Item was removed:
- ReleaseAfterSqueak310 subclass: #TasksSqueak310
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Tasks-Squeak310'!
- 
- !TasksSqueak310 commentStamp: 'kph 12/8/2008 18:31' prior: 0!
- This isStable and isUpdate!

Item was removed:
- ----- Method: Release310 class>>doClean (in category '10') -----
- doClean
- 
- 	^ SakeTask define: [ :task |
- 
- 		task dependsOn: {
- 		
- 			 self removeRedundantMethods.
- 			 (Packages current named: 'Universes') unload.
- 			 
- 		}
- 		
- 	].
-  !

Item was removed:
- ----- Method: Release310 class>>removeRedundantMethods (in category '10') -----
- removeRedundantMethods
- 
- 	^ SakeTask define: [ :task |
- 
- 		task dependsOn: {
- 		
- 			"Discards should be tasks and shouldnt clutter up SystemDictionary"	
- 
- 			(SakeTask class: 'SystemDictionary') removeSelectorsMatching: 'discard*'.	
- 				
- 			"makeing a release is a task and shouldnt clutter up SystemDictionary"	
- 				
- 			(SakeTask class: 'SystemDictionary') removeSelectors: #( #lastRemoval #majorShrink  #zapMVCprojects.
- 		  #makeExternalRelease  #makeInternalRelease #zapMVCprojects #zapMVCprojects ).
-  					
- 			"replaced with the more useful: Smalltalk globals explore"		
- 			(SakeTask class: 'SystemDictionary') removeSelector: #inspectGlobals.
- 			
- 			(SakeTask class: 'ReleaseBuilder') removeSelector: #fixObsoleteReferences.
-  			(SakeTask class: 'ScriptLoader') removeSelector: #fixObsoleteReferences.
- 			
- 		}.
- 		task info doc:
- 			
- 'SystemDictionary #inspectGlobals was including traits.
- removed method. (Replace with SystemDictionary #globals from kernel-extensions)'
- 
- 		
- 	].!

Item was removed:
- ----- Method: Release310 class>>bugsFoundOrFixed (in category '10') -----
- bugsFoundOrFixed
- 
- "
- SystemDictionary inspectGlobals was showing traits.
- removed and replace with #globals
- 
- "
- !

Item was removed:
- TasksRelease subclass: #Release310
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Tasks-Squeak310'!

Item was removed:
- ----- Method: Release310 class>>removePackages (in category '10') -----
- removePackages
- 
- 	^ SakeTask define: [ :task |
- 
- 		task dependsOn: {}.
- 		
- 		task action: {
- 			[ Installer unload: 'OB-Standard.39' ].
- 			[ Installer unload: 'OB-Standard.39' ].
- 		
- 		
- 		}
- 		 
- 		
- 	].!

Item was removed:
- ----- Method: Release310 class>>removeDeprecatedMethods (in category '10') -----
- removeDeprecatedMethods 
- 
- 	^ SakeTask define: [ :task |
- 
- 		task action: [ 
- 		
- 				(SystemNavigation default allCallsOn: #deprecated:)  
- 				do: [ :mr | mr remove ]. 
- 		
- 		]			
- 	].
- 
- "
- SequencableCollection #upTo: is marked deprecated, but has users
- 
- (TheWorldMenu class >> #loadSqueakMap) browse.
- (KedamaSetColorComponentTile >> #addPatchTile) browse.
- (SMSqueakMap >> #pingServer: ) browse.
- Lexicon browse. 'has several senders'
- StringMorph >> #balloonTextForLexiconString
- "!

Item was removed:
- TasksRelease subclass: #UpdateAfterSqueak310
- 	instanceVariableNames: ''
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Tasks-Squeak310'!



More information about the Packages mailing list