The Trunk: EToys-fbs.115.mcz

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

The Trunk: EToys-fbs.115.mcz

commits-2
Frank Shearar uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-fbs.115.mcz

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

Name: EToys-fbs.115
Author: fbs
Time: 5 December 2013, 9:01:55.042 pm
UUID: d1b9128c-0b6d-bd48-aa5d-ffe5054ea523
Ancestors: EToys-fbs.114

Make Etoys responsible for its own #cleanUp:.

=============== Diff against EToys-fbs.114 ===============

Item was added:
+ ----- Method: EToySystem class>>cleanUp: (in category 'class initialization') -----
+ cleanUp: aggressive
+ aggressive ifTrue: [
+ StandardScriptingSystem removeUnreferencedPlayers.
+ Project removeAllButCurrent.
+ #('Morphic-UserObjects' 'EToy-UserObjects' 'Morphic-Imported' ) do:
+ [ : each | SystemOrganization removeSystemCategory: each ].
+ World dumpPresenter.
+ Presenter defaultPresenterClass: nil.
+ Preferences removePreference: #allowEtoyUserCustomEvents.]!