[Pharo-users] Re: Porting Pharo8 code to Pharo10

2023-11-28 Thread Davide Varvello via Pharo-users
Hi David,Thank you for your reply, it is slightly different from my solution (see https://lists.pharo.org/empathy/thread/FKBM3BI7COOB4SMJKDHQVADBN6RQKPPN) but as same as effective. Cheers Davide On Monday, November 27, 2023 at 10:33:24 AM GMT+1, wrote: Hello Davide! I used TonelWrit

[Pharo-users] Re: Porting Pharo8 code to Pharo10

2023-11-27 Thread bajger
Hello Davide! I used TonelWriter functionality in one of projects, following worked for me. `|tonelWriter|` `tonelWriter := TonelWriterV2 on: FileLocator home asFileReference. “or any other directory”` `tonelWriter writeSnapshot: ((RPackage named: 'YourPackageName') snapshot )` Note: TonelWri

[Pharo-users] Re: Porting Pharo8 code to Pharo10

2023-11-26 Thread Davide Varvello via Pharo-users
Hi Esteban, I gave Tonel a chance, It worked. The documentation about Tonel is 0, I'm going to write an email to the mlist with a couple of basic tonal commands for future help. Cheers Davide On Saturday, November 25, 2023 at 11:57:51 AM GMT+1, Esteban Lorenzano wrote: what a good

[Pharo-users] Re: Porting Pharo8 code to Pharo10

2023-11-25 Thread Esteban Lorenzano
what a good moment to start using it, isn't? :) Esteban ps: if the cs exported the classes in different order than needed, there is not much the importer can do. You can always pre-create manually the class (a simple stub will suffice) and then expect the import process will fix the rest.

[Pharo-users] Re: Porting Pharo8 code to Pharo10

2023-11-25 Thread Davide Varvello via Pharo-users
 Hi Esteban > On Saturday, November 25, 2023 at 08:29:14 AM GMT+1, Esteban Lorenzano wrote: > > hi, > > some questions :) > > 1. why you are importing from cs? In pharo 8 there was already other >formats available, including tonel. Yep, but I never used it > > 1. Are you sure you

[Pharo-users] Re: Porting Pharo8 code to Pharo10

2023-11-24 Thread Esteban Lorenzano
hi, some questions :) 1. why you are importing from cs? In pharo 8 there was already other formats available, including tonel. 1. Are you sure your missing class is not in another .cs you should install before? 2. In that sense, it would help to know which class is missing, we d