[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-29 Thread Emilio Oca
Hey, Breaking the ice, by following the logic behind 'Pull' button at 'Working copy of..." from iceberg repo UI, I found I can put this: aRemote := IceGitRemote name: 'origin' url: ' https://github.com/User/MyProject.git'. aRemote localRepository: (IceRepository registry detect: [ :each | each in

[Pharo-users] Re: [Pharo-dev] [ANN] Pharo Launcher 3.0.1 released!

2022-04-29 Thread Shaping
PL 3.0.1 is still failing to open on Windows. The VM instance appears in TaskMan. Shaping From: Christophe Demarey Sent: Friday, 29 April, 2022 03:50 To: Pharo Development List ; Pharo-users Subject: [Pharo-dev] [ANN] Pharo Launcher 3.0.1 released! Hi all, Pharo Launcher 3.0.1 has

[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-29 Thread Dale Henrichs
Emilio, Okay ... we're peeling the onion :) ... At this point it sounds like you need to do a flushCache on your filetree repository in order to force Metacello to re-download from the github into the local package-cache. But if Iceberg is involved, I am not the person to ask ... I am not famili

[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-29 Thread Emilio Oca
Hi Dale Thanks again, still not working. After updating github I am unable to pull the changes into the image. So far the only way is to hit Pull button at the "Working copy of MyProyect" repo window. I wish I could reproduce what that button does. Even this: Metacello new repository: 'gi

[Pharo-users] Re: A question about #beginsWith: and #endsWith:

2022-04-29 Thread Kasper Osterbye
The two methods are changed to do the right thing. We are still waiting for the CI server to check if that broke anything. During the change, 4 places was identified which was simplified by doing it right (aka empty prefix always true). Best, Kasper

[Pharo-users] Re: A question about #beginsWith: and #endsWith:

2022-04-29 Thread Richard Sargent
Making the code correct is "untwisting the rope". Keeping the code wrong and adding a bizarre workaround is "twisting the rope tighter". The former is the right direction. On Fri, Apr 29, 2022 at 12:15 AM Steffen Märcker wrote: > Hi Kasper, > > I've thought about that approach too. But then ask

[Pharo-users] Re: [Pharo-dev] [ANN] Pharo Launcher 3.0 released!

2022-04-29 Thread Christophe Demarey
Hi Jimmie, Thank you for your feedback. Could you open a feature request on https://github.com/pharo-project/pharo-launcher/issues ? Regards, Christophe > Le 29 avr. 2022 à 11:23, Jimmie Houchin a écrit : > > Hello, > > Thanks for all

[Pharo-users] [ANN] Pharo Launcher 3.0.1 released!

2022-04-29 Thread Christophe Demarey
Hi all, Pharo Launcher 3.0.1 has just been released! It is available from http://pharo.org/download . It fixes some issues reported on Pharo Launcher 3.0. Here is the changelog: Pharo Launcher v3.0.1 Bug fixes: #554

[Pharo-users] Re: A question about #beginsWith: and #endsWith:

2022-04-29 Thread Steffen Märcker
Hi Kasper, I've thought about that approach too. But then asked myself whether it is more likely that there is code that relies on this bug than code where this went unnoticed and is therefore broken. What do the other think about that matter and the fix in Squeak? Best, Steffen Kasper