SeasideSt / Seaside

The framework for developing sophisticated web applications in Smalltalk.
MIT License
519 stars 71 forks source link

Cannot load from BaselineOf, error Character did not understand #greaseInteger #1347

Closed labordep closed 1 year ago

labordep commented 1 year ago

To reproduce : 1- Create a new Pharo 11 image My config : Pharo-11.0.0+build.392 OS : Windows 11 Pro 64 bits

2 - Load Seaside by executing this script :

Metacello new
 baseline:'Seaside3';
 repository: 'github://SeasideSt/Seaside:master/repository';
 load

image

3 - There is a warning about dependencies, : image I don't know what to do here, so I ignore it and play with "Proceed" button.

4 - Error signal : image

Thanks for your help :-)

theseion commented 1 year ago

We don't support Pharo 11 yet. The baseline is missing the definitions for Pharo 11. You can add them yourself and loading will work (simply add the Pharo 11 equivalent where it says pharo10... in the baseline), but be aware that it is very likely that some things will not work.

labordep commented 1 year ago

Ok thanks, I will test :)