Marcel Taeumel uploaded a new version of Installer-Core to project The Trunk:
http://source.squeak.org/trunk/Installer-Core-mt.418.mcz==================== Summary ====================
Name: Installer-Core-mt.418
Author: mt
Time: 16 April 2018, 10:32:54.633614 am
UUID: 86f6ce25-e304-9842-a77f-d5f94e32784f
Ancestors: Installer-Core-ul.417
#setAuthorInitials: -> #authorInitials:
=============== Diff against Installer-Core-ul.417 ===============
Item was changed:
----- Method: Installer class>>launchWith: (in category 'launcher support') -----
launchWith: params
params at: 'P' ifPresent: [ :v | params at: 'PATH' put: v ].
params at: 'I' ifPresent: [ :v | params at: 'INSTALL' put: v ].
params at: 'IN' ifPresent: [ :v | params at: 'INSTALL' put: v ].
params at: 'U' ifPresent: [ :v | params at: 'URL' put: v ].
params at: 'PATH' ifPresent: [ :v |
self webSearchPathFrom: v.
].
params at: 'USER' ifPresent: [ :v |
+ Utilities authorInitials: v
- Utilities setAuthorInitials: v
].
params at: 'VERSION' ifPresent: [ :v |
SystemVersion current version: v
].
params at: 'VIEW' ifPresent: [ :v |
self view: v
].
IsSetToTrapErrors := true.
params at: 'DEBUG' ifPresent: [ :v | IsSetToTrapErrors := (v == true) not ].
params at: 'URL' ifPresent: [ :v |
self installUrl: v
].
params at: 'FILE' ifPresent: [ :v |
self installFile: v
].
params at: 'INSTALL' ifPresent: [ :v |
self do: v
].
params at: 'DO' ifPresent: [ :v |
self do: v
].
^true
!