Re: [Pharo-dev] Bloc Feedback

2017-12-01 Thread Sean P. DeNigris
Aliaksei Syrel wrote >> So one would change the `loop: 1` in your example to `beInfinite`? > ... > Also, what is the lifetime of an infinite animation? > > > It can only be stopped by sending #stop to it. Is holding it weakly from the element and sending #stop enough for the animation to be

[Pharo-dev] Bloc and Gestures

2017-12-01 Thread Sean P. DeNigris
I see a tantalizing hierarchy of BlGestureEvent and subclasses like BlGestureZoomEvent, but I can't seem to trap any. Are these working? If not, any ETA? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html

[Pharo-dev] Newsletter content / editors wanted

2017-12-01 Thread Marcus Denker
Hi, You might know that we are sending out a monthly pharo newsletter, it contains larger “mini articles” (e.g. announcements) and small one-line notes for blog posts, new libraries, things like that. Here is the archive:

Re: [Pharo-dev] iceberg metacello integration not working?

2017-12-01 Thread Tudor Girba
Hi, Thanks! This worked fine: Iceberg enableMetacelloIntegration: true. IceMetacelloPharoPlatform select. Metacello new baseline: 'GToolkit'; repository: 'github://feenkcom/gtoolkit/src'; load. Cheers, Doru > On Dec 1, 2017, at 7:45 AM, Esteban Lorenzano wrote: >

[Pharo-dev] Where is the latest linux vm?

2017-12-01 Thread stephan
Is the latest really from august? Stephan

Re: [Pharo-dev] Newsletter content / editors wanted

2017-12-01 Thread Julien
For the next one you could talk about the solutions created by the community for the Advent Of Code. They will be available there: https://github.com/juliendelplanque/AdventOfCode2017WithPharo --- Julien Delplanque Doctorant à

[Pharo-dev] [Pharo 7.0-dev] Build #354: 20786-halt-messages-are-not-highlighted-in-red-as-the-other-flavours-of-halt-messages

2017-12-01 Thread ci-pharo-ci-jenkins2
There is a new Pharo build available! The status of the build #354 was: SUCCESS. The Pull Request #564 was integrated: "20786-halt-messages-are-not-highlighted-in-red-as-the-other-flavours-of-halt-messages" Pull request url: https://github.com/pharo-project/pharo/pull/564 Issue Url:

Re: [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-12-01 Thread Marcus Denker
I will check with Esteban when he is back! > On 29 Nov 2017, at 18:20, Nicolas Cellier > wrote: > > Maybe a good occasion to fix opensmalltalk-vm :) > > i.e. > https://ci.appveyor.com/project/OpenSmalltalk/vm/branch/Cog/job/h8la5cg9fi2t3l2s > >

[Pharo-dev] Polymorphism between Strings and FileReference

2017-12-01 Thread Cyril Ferlicot
Hi, I am often in the case where I have a method taking a file or a string as parameter and I often want to use #readStreamDo:/#writeStreamDo: in the method because with I do not have to care if I need to close the file stream or not with those. But since String do not understand

Re: [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-12-01 Thread Marcus Denker
SSL certificate are now created and setup: https://files.pharo.org https://mooc.pharo.org https://lectures.pharo.org https://books.pharo.org https://get.pharo.org Marcus

[Pharo-dev] [ANN] Pharo TechTalk Dec 19: Contributing to Pharo7

2017-12-01 Thread Marcus Denker
Pharo TechTalk December 17: - 19 Dec 2017 5:00 PM - 7:00 PM (UTC+01:00) - Where? Discord / Youtube live Topic: Contributing. How to report bugs, submit code change. This will be a hands-on session where we show how to • report bugs • create pull requests

Re: [Pharo-dev] Where is the latest linux vm?

2017-12-01 Thread stephan
On 01-12-17 18:56, Alistair Grant wrote: On 01-12-17 11:16, stephan wrote: Is the latest really from august? I have: Date: Sun Aug 27 21:55:26 2017 +0200 So what happened in the past two months? Stephan

Re: [Pharo-dev] Moving from mc to tonel?

2017-12-01 Thread Martin Dias
Julien, I dodn't know it but anyway my issue was just in the step smalltalkhub -> filtree using the migration tool. Peter, yes it's public. This is the code I used: migration := GitMigration on: 'MartinDias/Epicea'. migration cacheAllVersions. migration

Re: [Pharo-dev] Where is the latest linux vm?

2017-12-01 Thread Thierry Goubier
Le 01/12/2017 à 19:52, stephan a écrit : On 01-12-17 18:56, Alistair Grant wrote: On 01-12-17 11:16, stephan wrote: Is the latest really from august? I have: Date: Sun Aug 27 21:55:26 2017 +0200 So what happened in the past two months? I don't know. To avoid segfaults, I'm using one from

[Pharo-dev] [TechTalk] Topics Wanted for 2018!

2017-12-01 Thread Marcus Denker
Hi, As you know, we are trying to have one Pharo tech-talk per month. The idea is to use this for -> mini “Lectures” -> Demos of interesting Projects -> Just some interesting topic to discuss with audio chat on Discord You can see the past topics here:

Re: [Pharo-dev] Polymorphism between Strings and FileReference

2017-12-01 Thread Alistair Grant
Hi Cyril, On 1 December 2017 at 12:04, Cyril Ferlicot wrote: > On Fri, Dec 1, 2017 at 11:55 AM, Alistair Grant wrote: >> Hi Cyril, >> >> The normal way to handle this is #asFileReference, so you can just have: >> >> aStringOrReference

[Pharo-dev] [ANN] New Academic Partner: USI Software Institute

2017-12-01 Thread Marcus Denker
The Pharo Consortium is very happy to announce that the Software Institute of the Università della Svizzera italiana has joined as a Academic Partner. About - USI Software Institute: https://www.si.usi.ch - Pharo Consortium: http://consortium.pharo.org

Re: [Pharo-dev] Polymorphism between Strings and FileReference

2017-12-01 Thread Cyril Ferlicot
On Fri, Dec 1, 2017 at 11:55 AM, Alistair Grant wrote: > Hi Cyril, > > The normal way to handle this is #asFileReference, so you can just have: > > aStringOrReference asFileReference readStreamDo: ... > In that case, if it is a String like 'test', we will get a readStream

Re: [Pharo-dev] Polymorphism between Strings and FileReference

2017-12-01 Thread Cyril Ferlicot
On Fri, Dec 1, 2017 at 12:17 PM, Alistair Grant wrote: > Hi Cyril, > > > Sorry, I misunderstood. > No problem :) > This looks like a good addition. Although is there any reason it > shouldn't be added to SequenceableCollection, where #readStream and > #writeStream are

Re: [Pharo-dev] Polymorphism between Strings and FileReference

2017-12-01 Thread Alistair Grant
Hi Cyril, On 1 December 2017 at 11:50, Cyril Ferlicot wrote: > Hi, > > I am often in the case where I have a method taking a file or a string > as parameter and I often want to use #readStreamDo:/#writeStreamDo: in > the method because with I do not have to care if I

[Pharo-dev] [Pharo 7.0-dev] Build #355: 20800-do-not-open-welcome-window-for-now

2017-12-01 Thread ci-pharo-ci-jenkins2
There is a new Pharo build available! The status of the build #355 was: FAILURE. The Pull Request #568 was integrated: "20800-do-not-open-welcome-window-for-now" Pull request url: https://github.com/pharo-project/pharo/pull/568 Issue Url: https://pharo.fogbugz.com/f/cases/20800 Build

Re: [Pharo-dev] Where is the latest linux vm?

2017-12-01 Thread stephan
On 01-12-17 11:16, stephan wrote: Is the latest really from august? Ping

Re: [Pharo-dev] Where is the latest linux vm?

2017-12-01 Thread Alistair Grant
On 1 December 2017 at 18:49, stephan wrote: > On 01-12-17 11:16, stephan wrote: >> >> Is the latest really from august? > > > Ping I have: Date: Sun Aug 27 21:55:26 2017 +0200 Cheers, Alistair

Re: [Pharo-dev] Where is the latest linux vm?

2017-12-01 Thread Eliot Miranda
Hi Stephan, On Fri, Dec 1, 2017 at 10:52 AM, stephan wrote: > On 01-12-17 18:56, Alistair Grant wrote: > >> On 01-12-17 11:16, stephan wrote: >>> Is the latest really from august? >>> I have: Date: Sun Aug 27 21:55:26 2017 +0200 >> > > So what happened in the past