[squeak-dev] The Inbox: CommandLine-fbs.3.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 30 18:36:20 UTC 2013


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

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

Name: CommandLine-fbs.3
Author: fbs
Time: 30 December 2013, 6:36:22.399 pm
UUID: a8ce5a55-8bb5-ac4b-a112-eb308ce3bf53
Ancestors: CommandLine-fbs.2

If launched headless (with option -headless or -vm-display-null), use the CommandLineToolSet instead of the StandardToolSet.

We must startUp: before AutoStart because AutoStart triggers the processing of startup scripts (because it asks all registered AbstractLaunchers - in particular, ProjectLauncher - to do their thing).

=============== Diff against CommandLine-fbs.2 ===============

Item was added:
+ ----- Method: CommandLineToolSet class>>initialize (in category 'class initialization') -----
+ initialize
+ 	Smalltalk addToStartUpList: self before: AutoStart.!

Item was added:
+ ----- Method: CommandLineToolSet class>>startUp: (in category 'system startup') -----
+ startUp: resuming
+ 	Smalltalk isHeadless ifTrue: [ToolSet default: self].!



More information about the Squeak-dev mailing list