Re: [Pharo-users] Bloc Tutorial

2019-02-18 Thread horrido
Whoa! This works! Thank you very much. Andrei Chis wrote > In the same image you can do that from the Iceberg user interface. You can > open Iceberg from the Tools menu. > Then right click on the Tutorial project and from the context menu select > Pull. > > On Mon, Feb 18, 2019 at 12:29 AM

Re: [Pharo-users] Bloc Tutorial

2019-02-18 Thread Andrei Chis
In the same image you can do that from the Iceberg user interface. You can open Iceberg from the Tools menu. Then right click on the Tutorial project and from the context menu select Pull. On Mon, Feb 18, 2019 at 12:29 AM horrido wrote: > So how do I force Iceberg to reload? > > > Andrei Chis

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread Tudor Girba
Hi, The simplest thing is to take a fresh image, in a fresh directory and rerun the Metacello script. Let us know how it works. Cheers, Doru > On Feb 18, 2019, at 12:28 AM, horrido wrote: > > So how do I force Iceberg to reload? > > > Andrei Chis wrote >> If you use repositories that

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread horrido
So how do I force Iceberg to reload? Andrei Chis wrote > If you use repositories that start with `github://` in Metacello you are > using Iceberg. Iceberg is used to clone and load the code. Metacello is > just the interface through which that is done. > > Running the loading instruction does

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread Andrei Chis
If you use repositories that start with `github://` in Metacello you are using Iceberg. Iceberg is used to clone and load the code. Metacello is just the interface through which that is done. Running the loading instruction does not pull new changes from remote repositories. On Sun, Feb 17, 2019

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread horrido
??? I'm not using a cloned repository. I'm using Metacello just like in the snippet I showed you. Shouldn't it pull in the latest repo? I've never used Iceberg; I don't know how to use it. I don't really want to fuck around with GitHub. I don't want to be pulled into a rabbit hole. Andrei

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread Andrei Chis
If you already have the repository cloned, running the code that you mentioned does not update the content of the repository. Hence, the existing version will be loaded again. Instead you need to do a pull using Iceberg to update the content of the repository and the code. Cheers, Andrei On

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread horrido
If you're referring to this: Metacello new baseline: 'BlocTutorials'; repository: 'github://pharo-graphics/Tutorials/src'; load It made no difference. Same error message. Andrei Chis wrote > Hi, > > Thanks for the bug report. > Can you try loading the latest version for the code

Re: [Pharo-users] Bloc Tutorial

2019-02-17 Thread Andrei Chis
Hi, Thanks for the bug report. Can you try loading the latest version for the code of the tutorial. I fixed the deprecation warning. Let us know if you encounter any other issues. Cheers, Andrei On Sun, Feb 17, 2019 at 6:49 PM Richard Kenneth Eng < horrido.hobb...@gmail.com> wrote: > I'm

[Pharo-users] Bloc Tutorial

2019-02-17 Thread Richard Kenneth Eng
I'm following the tutorial in the MemoryGame booklet. When I run the game and click on any square, I get: The method BlBaseAnimation>>#startOn: called from MgCardElement>>#onFlippedFace has been deprecated. Use BlElement>>#addAnimation: The tutorial is out of sync. How can I proceed? Is there