On 23.09.2008, at 09:49, Norbert Hartl wrote:

I tried to load the Polymorph package in a fresh pharo image
and I didn't succeed. I tried pharo 10044, 10070 and 10074
image. And I tried loading from universes as well as via
monticello. The result is the same: When the Loading progress
bar appears it freezes after 10% of the bar is full. It
doesn't matter if I load it with 64bit or 32bit (binary)
vm.


You need to uncomment so mc does not show a progress bar:

Having trouble loading? Since the ui enhancements modify many existing methods, and the fact that Monticello doesn't do atomic loading, it is best to close any windows you can and make the remainder clear of the central area where the progress indicator appears. For guaranteed (as much as it can be) load you'll need to modify the MCPackageLoader>>basicLoad method, 3rd line, to read [[additions do: [:ea | self tryToLoad: ea]. instead of [[additions do: [:ea | self tryToLoad: ea] displayingProgress: 'Loading...'.


http://wiki.squeak.org/squeak/6005


(this is again a problem of atomic loading: it changes the code of the progress bar while the bar is executing)

--
Marcus Denker  --  [EMAIL PROTECTED]
http://www.iam.unibe.ch/~denker


_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to