[Pharo-project] [ANN] 10305 and 10306
- Issue 812: [FIX] Debugger fix from Eliot Miranda http://code.google.com/p/pharo/issues/detail?id=812 - issue 808: Preference alternativeBrowseIt to settings refactoring http://code.google.com/p/pharo/issues/detail?id=808 - Issue 813: Preference to settings refactoring: #balloonHelpInMessageLists case Stef
I have a naive question -- what exactly do the numbers 10305 and 10306 refer to? Where can I find these numbers in the Pharo system or on the web site? I can see the numbers flying by when I update, but I cannot tell what the final version number is after updating. - on
On Fri, May 15, 2009 at 1:37 PM, Oscar Nierstrasz <oscar@iam.unibe.ch>wrote:
I have a naive question -- what exactly do the numbers 10305 and 10306 refer to? Where can I find these numbers in the Pharo system or on the web site?
This is the version that is released. This must be unique per release. In the Pharo website you can only see the latest version. But all the versions can be found here: http://gforge.inria.fr/frs/?group_id=1299
I can see the numbers flying by when I update, but I cannot tell what the final version number is after updating.
System -> about. There you can see "latest update: XXXXX"
- on
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Oscar the update is a stream of cs the update list is then a list such as 10001... 10002.... 10010 each of these can be a simple cs (as in Squeak3.8) in 3.9 or pharo here is a typical CS "Postscript: Leave the line above, and replace the rest of this comment by a useful one. Executable statements should follow this comment, and should be separated by periods, with no exclamation points (!!). Be sure to put any further comments in double-quotes, like this one." |repository| repository := MCHttpRepository location: 'http://www.squeaksource.com/Pharo/' user: '' password: ''. (repository loadVersionFromFileNamed:'ScriptLoader-stephane_ducasse. 862.mcz') load. ScriptLoader new update10306. ! what you see is the that 10306 will invoke the method of scriptLoader that launches the loading of the corresponding MC package. Now you can see the changes by browsing the methods update10..... in the class ScriptLoader Stef
participants (3)
-
Mariano Martinez Peck -
Oscar Nierstrasz -
Stéphane Ducasse