FogBugz (Fall [Issue]20447) Crosscutting and Misc - SystemVersion>>highestUpdate not initialized and nil

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

FogBugz (Fall [Issue]20447) Crosscutting and Misc - SystemVersion>>highestUpdate not initialized and nil

Pharo Issue Tracker
FogBugz Notification
avatar
Bug in Project:  Crosscutting and Misc: 1. Pharo Image  •  You are subscribed to this case
We need to change the middle part of PBImageBuilder50>>initializeImage from

---------------------------------------------------------------------------------------------
...

SystemVersion
writeClassVariableNamed: #Current
value: (SystemVersion new
type: ''Pharo'';
major: {major};
minor: {minor};
suffix: ''alpha.build.{build}.sha.{hash}'';
commitHash: ''{hash}'';
yourself).
PharoBootstrapInitialization initializeCommandLineHandlerAndErrorHandling' format: {
'major' -> definitionFetcher majorVersion asString.
'minor' -> definitionFetcher minorVersion asString.
'build' -> self buildNumber asString.
'hash' -> definitionFetcher commitHash asString.
} asDictionary).

...
---------------------------------------------------------------------------------------------

to

---------------------------------------------------------------------------------------------
...

SystemVersion
writeClassVariableNamed: #Current
value: (SystemVersion new
type: ''Pharo'';
major: {major};
minor: {minor};
suffix: ''alpha.build.{build}.sha.{hash}'';
highestUpdate: {update};
commitHash: ''{hash}'';
yourself).
PharoBootstrapInitialization initializeCommandLineHandlerAndErrorHandling' format: {
'major' -> definitionFetcher majorVersion asString.
'minor' -> definitionFetcher minorVersion asString.
'build' -> self buildNumber asString.
'update' -> ((definitionFetcher majorVersion * 10000) + (definitionFetcher minorVersion * 1000) + self buildNumber) asString.
'hash' -> definitionFetcher commitHash asString.
} asDictionary).

...

---------------------------------------------------------------------------------------------

but I do not know how to apply this change.

Anyone can help here?
Priority Priority: 5 – Fix If Time Status Status: Work Needed
Assigned To Assigned to: Everyone Milestone Milestone: Pharo7.0

Go to Case
No longer need updates? Unsubscribe from this case.

Don't want FogBugz notifications anymore? Update your preferences.

FogBugz

_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
https://lists.gforge.inria.fr/mailman/listinfo/pharo-bugtracker