Skip to content

Commit

Permalink
50680
Browse files Browse the repository at this point in the history
17804 --no-default-preferences does not work on the latest Pharo 5
	https://pharo.fogbugz.com/f/cases/17804

http://files.pharo.org/image/50/50680.zip
  • Loading branch information
Jenkins Build Server authored and ci committed Apr 8, 2016
1 parent 1a9d0da commit 4be569b
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 52 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
script50679
script50680

^ 'AST-Core-TheIntegrator.411.mcz
AST-FFI-Pharo50Compatibility-EstebanLorenzano.1.mcz
Expand Down Expand Up @@ -77,23 +77,23 @@ FuelSystem-FileRegistry-EstebanLorenzano.3.mcz
FuelTests-EstebanLorenzano.394.mcz
FuelTools-Debugger-TheIntegrator.17.mcz
GT-BytecodeDebugger-TudorGirba.31.mcz
GT-Debugger-AndreiChis.349.mcz
GT-Debugger-AndreiChis.350.mcz
GT-EventRecorder-TheIntegrator.65.mcz
GT-EventRecorder-Tests-JurajKubelka.37.mcz
GT-Inspector-AndreiChis.396.mcz
GT-InspectorExtensions-Core-TudorGirba.208.mcz
GT-Inspector-StefanReichhart.397.mcz
GT-InspectorExtensions-Core-TudorGirba.213.mcz
GT-Playground-AliakseiSyrel.123.mcz
GT-SUnitDebugger-TudorGirba.39.mcz
GT-Spotter-AndreiChis.391.mcz
GT-Spotter-AndreiChis.392.mcz
GT-Spotter-EventRecorder-TheIntegrator.109.mcz
GT-SpotterExtensions-Core-AliakseiSyrel.201.mcz
GT-SpotterExtensions-Core-AndreiChis.202.mcz
GT-Tests-Debugger-AndreiChis.14.mcz
GT-Tests-Inspector-AndreiChis.53.mcz
GT-Tests-Playground-StefanReichhart.4.mcz
GT-Tests-Spotter-AliakseiSyrel.17.mcz
Glamour-Announcements-AndreiChis.8.mcz
Glamour-Browsers-AndreiChis.112.mcz
Glamour-Core-AndreiChis.315.mcz
Glamour-Core-CyrilFerlicot.316.mcz
Glamour-Examples-TudorGirba.303.mcz
Glamour-FastTable-AndreiChis.59.mcz
Glamour-Helpers-TudorGirba.40.mcz
Expand All @@ -108,7 +108,7 @@ Glamour-Rubric-Presentations-TudorGirba.51.mcz
Glamour-Tests-Core-AndreiChis.111.mcz
Glamour-Tests-Morphic-TudorGirba.137.mcz
Glamour-Tests-Resources-AndreiChis.5.mcz
Glamour-Tests-Rubric-AliakseiSyrel.27.mcz
Glamour-Tests-Rubric-AndreiChis.33.mcz
Gofer-Core-TheIntegrator.237.mcz
Gofer-Tests-TheIntegrator.164.mcz
Gofer-UI-TheIntegrator.2.mcz
Expand Down Expand Up @@ -310,7 +310,7 @@ System-Changes-FileServices-TheIntegrator.2.mcz
System-Clipboard-TheIntegrator.40.mcz
System-CommandLine-TheIntegrator.181.mcz
System-CommandLine-TextSupport-TheIntegrator.4.mcz
System-CommandLineHandler-TheIntegrator.12.mcz
System-CommandLineHandler-TheIntegrator.14.mcz
System-FileRegistry-TheIntegrator.50.mcz
System-Finalization-TheIntegrator.32.mcz
System-Hashing-TheIntegrator.50.mcz
Expand All @@ -326,8 +326,8 @@ System-Platforms-TheIntegrator.81.mcz
System-Serial Port-StephaneDucasse.23.mcz
System-SessionManager-ChristopheDemarey.21.mcz
System-SessionManager-Tests-ChristopheDemarey.9.mcz
System-Settings-TheIntegrator.334.mcz
System-Settings-Tests-TheIntegrator.9.mcz
System-Settings-TheIntegrator.337.mcz
System-Settings-Tests-TheIntegrator.11.mcz
System-Sound-StephaneDucasse.18.mcz
System-Sources-TheIntegrator.46.mcz
System-Support-TheIntegrator.1208.mcz
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
update50680
"self new update50680"
self withUpdateLog: '17804 --no-default-preferences does not work on the latest Pharo 5
https://pharo.fogbugz.com/f/cases/17804'.
self loadTogether: self script50680 merge: false.

SessionManager default unregisterClassNamed: #SystemSettingsPersistence.
self flushCaches.
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
commentForCurrentUpdate
^ '17956 Morph>>#changed: do not check for extension
https://pharo.fogbugz.com/f/cases/17956
17720 CompiledMethodTrailer>>#sourceCode sends unimplemented messages
https://pharo.fogbugz.com/f/cases/17720
17960 GToolkit version 3.18
https://pharo.fogbugz.com/f/cases/17960'
^ '17804 --no-default-preferences does not work on the latest Pharo 5
https://pharo.fogbugz.com/f/cases/17804'
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
runPreferences

StartupPreferencesLoader default loadFromDefaultLocations
SystemSettingsPersistence resumeSystemSettings.
StartupPreferencesLoader default loadFromDefaultLocations

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
initialize
"in order to update settings at startup"
SessionManager default
registerUserClassNamed: self name atPriority: 9999
"in order to update settings at startup.
shoudl be register at the end of standard classes but before user classes"

"IMPORTANT: do not uncomment the registration to the session manager!
For now, SystemSettingsPersistence is handled directly by the command line handler startup.
We should define a startup action parsing command line arguments and able to provide them to other startup actions. Then, SystemSettingsPersistence as well as StartupPreferencesLoader, could be independent startup actions."
"SessionManager default
registerBeforeUserClass: self"

0 comments on commit 4be569b

Please sign in to comment.