[squeak-dev] Re: Squeak 4.3 released

Sean P. DeNigris sean at clipperadams.com
Wed May 9 15:42:27 UTC 2012


Lawson English-2 wrote
> 
> I managed to get it to load simply by using:
> 
> ((Smalltalk at: #ConfigurationOfOmniBrowser) project perform: 
> #lastVersion) load.
> 
> Instead of:
> 
> ((Smalltalk at: #ConfigurationOfOmniBrowser) project perform: 
> #lastVersion) load: #( Dev ).
> 

FYI, loading with #lastVersion is probably not what you want unless you're
experimenting. It simply loads the highest numbered version (which will
change over time as the config is updated), not the one that's blessed for
your platform. #stableVersion returns the version that has been tested to
work on your platform (someone has to manually indicate this). Also, if you
don't load #Dev, you won't have Shout, SUnit integration, or Refactoring,
which are the main reasons I want OB to begin with.

I successfully loaded OB in 4.3 via:

Installer ss
    project: 'MetacelloRepository';
    install: #ConfigurationOfOmniBrowser.
((Smalltalk at: #ConfigurationOfOmniBrowser) project perform:
#stableVersion) load: #( Dev ).

There were some problems, which I mentioned at
http://stackoverflow.com/questions/10518095/install-script-for-omnibrowser-for-pharo-1-3/10518336,
but this would probably be the best place to start...

HTH,
Sean

--
View this message in context: http://forum.world.st/Squeak-4-3-released-tp4230144p4620854.html
Sent from the Squeak - Dev mailing list archive at Nabble.com.


More information about the Squeak-dev mailing list