The Trunk: ReleaseBuilder-dtl.47.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: ReleaseBuilder-dtl.47.mcz

commits-2
David T. Lewis uploaded a new version of ReleaseBuilder to project The Trunk:
http://source.squeak.org/trunk/ReleaseBuilder-dtl.47.mcz

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

Name: ReleaseBuilder-dtl.47
Author: dtl
Time: 14 February 2010, 10:17:41.143 pm
UUID: a4e9d411-af00-4e24-9953-bc98ee3f7156
Ancestors: ReleaseBuilder-ar.46

Remove explicit reference to MVC ListPargraph from ReleaseBuilderTrunk class>>prepareNewBuild.

=============== Diff against ReleaseBuilder-ar.46 ===============

Item was changed:
  ----- Method: ReleaseBuilderTrunk classSide>>prepareNewBuild (in category 'scripts') -----
  prepareNewBuild "ReleaseBuilderTrunk prepareNewBuild"
  "Prepare everything that should be done for a new image build"
  Smalltalk cleanUpUndoCommands.
  Undeclared removeUnreferencedKeys.
  StandardScriptingSystem initialize.
  GradientFillStyle initPixelRampCache.
  (NaturalLanguageFormTranslator bindingOf: #CachedTranslations) value: nil.
  (NaturalLanguageTranslator bindingOf: #CachedTranslations) value: nil.
  (NaturalLanguageTranslator bindingOf: #AllKnownPhrases) value: nil.
  PaintBoxMorph classPool at: #ColorChart put: nil.
  (Utilities bindingOf: #ScrapsBook) value: nil.
  CommandHistory resetAllHistory.
  Smalltalk at: #Browser ifPresent:[:br| br initialize].
  DataStream initialize.
+ Smalltalk at: #ListParagraph ifPresent: [:lp | lp initialize].
- ListParagraph initialize.
  PopUpMenu initialize.
  Smalltalk forgetDoIts.
  Smalltalk flushClassNameCache.
  ScrollBar initializeImagesCache.
  Behavior flushObsoleteSubclasses.
  AppRegistry withAllSubclassesDo:[:reg| reg removeObsolete].
  FileServices removeObsolete.
  ExternalDropHandler resetRegisteredHandlers.
  SystemOrganization removeEmptyCategories.
  MCFileBasedRepository flushAllCaches.
  MCMethodDefinition shutDown.
  MCDefinition clearInstances.
  HashedCollection rehashAll.
  ChangeSet removeChangeSetsNamedSuchThat:
  [:cs| cs name ~= ChangeSet current name].
  ChangeSet current clear.
  ChangeSet current name: 'Unnamed1'.
  Smalltalk garbageCollect.
  3 timesRepeat: [
  Smalltalk garbageCollect.
  Symbol compactSymbolTable.
  ].!