Re: [Pharo-dev] Feedback about "Contribute a Fix to Pharo" (For windows users)

2018-02-03 Thread Hernán Morales Durand
Hi 2018-02-03 15:54 GMT-03:00 Esteban Lorenzano : > > > On 3 Feb 2018, at 17:09, Hernán Morales Durand > wrote: > > Hi Nicolai, > > 2018-02-03 10:42 GMT-03:00 Nicolai Hess : > > The setup finally somehow works: > > I followed

Re: [Pharo-dev] Feedback about "Contribute a Fix to Pharo" (For windows users)

2018-02-03 Thread Esteban Lorenzano
> On 3 Feb 2018, at 17:09, Hernán Morales Durand > wrote: > > Hi Nicolai, > > 2018-02-03 10:42 GMT-03:00 Nicolai Hess : >> The setup finally somehow works: >> >> I followed the guide at >>

Re: [Pharo-dev] Change Pharo window icon

2018-02-03 Thread kmo
" But in any case it would be nice to be able to change window icon from the image. " It would be nice to change the window title from the image as well - but that's been broken in Linux for as long as I can remember. -- Sent from:

Re: [Pharo-dev] Change Pharo window icon

2018-02-03 Thread Aliaksei Syrel
Hi Eliot, I thought Vincent wants to change Pharo main window icon (image). > I would like to know how to change the main Pharo window icon. The fact that he mentioned an ability to change window's title from inside of the running image suggested me that he actually wants to change an icon at

Re: [Pharo-dev] Feedback about "Contribute a Fix to Pharo" (For windows users)

2018-02-03 Thread Hernán Morales Durand
Hi Nicolai, 2018-02-03 10:42 GMT-03:00 Nicolai Hess : > The setup finally somehow works: > > I followed the guide at > https://github.com/pharo-project/pharo/wiki/Contribute-a-fix-to-Pharo > > * wget -O- get.pharo.org/70+vm | bash > > Does not work (windows msys-console) >

Re: [Pharo-dev] Change Pharo window icon

2018-02-03 Thread Eliot Miranda
Hi Aliaksei, > On Feb 3, 2018, at 4:30 AM, Aliaksei Syrel wrote: > > Hi > > Since Pharo uses sdl2 (or should use) > https://wiki.libsdl.org/SDL_SetWindowIcon Hang on. Changing a window's icon is not at all the same as changing the VM's icon. Which are we talking about

[Pharo-dev] Feedback about "Contribute a Fix to Pharo" (For windows users)

2018-02-03 Thread Nicolai Hess
The setup finally somehow works: I followed the guide at https://github.com/pharo-project/pharo/wiki/Contribute-a-fix-to-Pharo * wget -O- get.pharo.org/70+vm | bash Does not work (windows msys-console) It starts donwloading something but not pharo I tried to do at seperate steps: Only the

Re: [Pharo-dev] Change Pharo window icon

2018-02-03 Thread Aliaksei Syrel
Hi Since Pharo uses sdl2 (or should use) https://wiki.libsdl.org/SDL_SetWindowIcon Alex On Sat, 3 Feb 2018 at 13:27, philippe.b...@highoctane.be < philippe.b...@gmail.com> wrote: > Well, Windows is still Windows at the core. > > Even some Windows 2.0 books can provide insights into its working

Re: [Pharo-dev] Change Pharo window icon

2018-02-03 Thread philippe.b...@highoctane.be
Well, Windows is still Windows at the core. Even some Windows 2.0 books can provide insights into its working principles that are hard to find these days. Anyway, I remember that there is a way to change the icon at runtime but not when listing the exe. Hence Resource editor. Phil On Feb 2,

[Pharo-dev] [Pharo 7.0-dev] Build #495: 21231-tabmorph-close-icon-is-not-well-aligned

2018-02-03 Thread ci-pharo-ci-jenkins2
There is a new Pharo build available! The status of the build #495 was: SUCCESS. The Pull Request #793 was integrated: "21231-tabmorph-close-icon-is-not-well-aligned" Pull request url: https://github.com/pharo-project/pharo/pull/793 Issue Url: https://pharo.fogbugz.com/f/cases/21231

[Pharo-dev] [Pharo 7.0-dev] Build #494: 21232-BenchmarkResultprintFrequencyOn-can-be-confusing

2018-02-03 Thread ci-pharo-ci-jenkins2
There is a new Pharo build available! The status of the build #494 was: SUCCESS. The Pull Request #794 was integrated: "21232-BenchmarkResultprintFrequencyOn-can-be-confusing" Pull request url: https://github.com/pharo-project/pharo/pull/794 Issue Url:

Re: [Pharo-dev] Change Pharo window icon

2018-02-03 Thread Stephane Ducasse
Tx we should have a class to do it for us. On Fri, Feb 2, 2018 at 11:42 PM, Eliot Miranda wrote: > Hi Stef, > > On Fri, Feb 2, 2018 at 11:32 AM, Stephane Ducasse > wrote: >> >> Would it be possible to change the icon without having to compile a

Re: [Pharo-dev] Disabling a MenuGroupModel

2018-02-03 Thread Stephane Ducasse
Tx! On Sat, Feb 3, 2018 at 12:25 AM, Hernán Morales Durand wrote: > https://pharo.fogbugz.com/f/cases/21233/Disabling-a-MenuGroupModel-bug > > > 2018-02-02 10:10 GMT-03:00 Hernán Morales Durand : >> Hi guys, >> >> If you develop an application

[Pharo-dev] FileSystem copyTo:

2018-02-03 Thread Stephane Ducasse
I have two folders: a/ and d/ and I want to copy file c in a but keeping its path. i.e. a/b/c copyTo: d and I want to get a/b/c and d/b/c It looks like I have to do all the logic to create intermediary folders (b) under d/ :( Stef