Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-10-02 Thread Damien Cassou
On Tue, Oct 1, 2013 at 4:55 PM, Nicolas Passerini wrote: > Any clue? > Is there any information else, that I could give you to help find out the > problem? can you please try $ sudo apt-get update $ sudo apt-get upgrade $ sudo apt-get install pharo-launcher:i386 if it does not work, try the fo

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-10-02 Thread Damien Cassou
On Mon, Sep 23, 2013 at 6:33 PM, blake wrote: > Very nice. Works on Mint, too. Could use more feedback, maybe: It's not > always clear when it's doing something when you create an image. that has been fixed by a joint work of Kilon and Ben Coman. Thanks to both. -- Damien Cassou http://damienc

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-10-01 Thread Nicolas Passerini
Hi Demian, I've been using your ppa for a while, but I could have the last update working. This is the information I've got: npasserini@pablitar-xps:~/Downloads$ sudo apt-get install pharo-launcher:i386 Reading package lists... Done Building dependency tree Reading state information... Done The fo

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-26 Thread btc
kilon wrote: yeap definetly excited. I love python, but really missed such an IDE as pharo. But now I can say I found the tool I was always looking for. :) Ok tried , latest PharoLauncher on windows. Brogress bars work well, it even displays a third one for unziping the files. But I f

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-26 Thread Damien Cassou
On Thu, Sep 26, 2013 at 2:04 PM, kilon wrote: > Is this why image launching fails, or is it unrelated ? open a new thread about that please. -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." Winston Chu

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-26 Thread kilon
yeap definetly excited. I love python, but really missed such an IDE as pharo. But now I can say I found the tool I was always looking for. :) Ok tried , latest PharoLauncher on windows. Brogress bars work well, it even displays a third one for unziping the files. But I found a bug, it cant

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-25 Thread btc
great to see your enthusiasm :) :) cheers -ben kilon wrote: YEAH I DID IT !!! HAHAHAHA I am one of you now :D I Implemented the progress bar. Well it displays 2 progress bars. I assume the first one is for unzipping the file though it does not progress , could be something else. But the secon

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-25 Thread kilon
YEAH I DID IT !!! HAHAHAHA I am one of you now :D I Implemented the progress bar. Well it displays 2 progress bars. I assume the first one is for unzipping the file though it does not progress , could be something else. But the second one works like a charm , even displays the percentage of downl

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-25 Thread kilon
thank you again. Ok that shows clearly that ZnClient can perfectly stream its contents. I know it can do it, afterall Monticello is doing it, as soon as I figure out how Monticello is doing this , its should be a piece of cake. Assuming that there is such thing as "piece of cake" in coding :D

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Sven Van Caekenberghe
Kilon, Here is another example: OrderedCollection streamContents: [ :out | [ ZnClient new signalProgress: true; url: 'http://stfx.eu/PharoV20.sources'; downloadTo: '/tmp' ] on: HTTPProgress do: [ :notification | out nextPut: notification. notification resum

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread kilon
The confusion of the noob, I saw a method though it was a class, did not see "self" in front of it. Yeap its definitely Zinc , its staring me in the face with that blank look :D Ok then its certainly my lack of understanding. I will take my time learning how Zinc works and how progress bar works.

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Camillo Bruni
On 2013-09-24, at 17:43, Sven Van Caekenberghe wrote: > > On 24 Sep 2013, at 22:23, kilon wrote: > >> Actually it works its just that is not meant to create a progress bar. >> >> To create a progressbar I created a new test >> >> testProgressBar >> UIManager default informUserDuring:

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Sven Van Caekenberghe
On 24 Sep 2013, at 22:23, kilon wrote: > Actually it works its just that is not meant to create a progress bar. > > To create a progressbar I created a new test > > testProgressBar > UIManager default informUserDuring: [ :bar | > [ ^ ZnClient new >

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread kilon
Actually it works its just that is not meant to create a progress bar. To create a progressbar I created a new test testProgressBar UIManager default informUserDuring: [ :bar | [ ^ ZnClient new signalProgress: true;

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Sven Van Caekenberghe
On 24 Sep 2013, at 15:18, kilon wrote: > ah yes of course. Ok thanks for adding me. > > I took a look at the code, it points back to Zinc , it look like I would > need to override ZnClient >> withProgressDo: , no Idea how to do this > currently but will continue looking into . I also found ho

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Damien Cassou
On Tue, Sep 24, 2013 at 3:18 PM, kilon wrote: > I took a look at the code, it points back to Zinc , it look like I would > need to override ZnClient >> withProgressDo: , no Idea how to do this > currently but will continue looking into . I also found how monticello uses > progress bars when downl

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread kilon
ah yes of course. Ok thanks for adding me. I took a look at the code, it points back to Zinc , it look like I would need to override ZnClient >> withProgressDo: , no Idea how to do this currently but will continue looking into . I also found how monticello uses progress bars when downloading rep

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Damien Cassou
On Tue, Sep 24, 2013 at 1:21 PM, kilon wrote: > yeah I will give it a try, don't know how long will take me but I like what > you have done with Pharo Launcher. I will create an enhancement issue when I > have it working as I want and report back. Esteban has granted me commit > right to pharo 3 i

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread kilon
yeah I will give it a try, don't know how long will take me but I like what you have done with Pharo Launcher. I will create an enhancement issue when I have it working as I want and report back. Esteban has granted me commit right to pharo 3 inbox too so I will commit there. Or do you want me to c

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Damien Cassou
On Tue, Sep 24, 2013 at 12:46 PM, kilon wrote: > is adding a progress bar , hard to do ? don't know. Do you want to try? -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." Winston Churchill

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread kilon
is adding a progress bar , hard to do ? -- View this message in context: http://forum.world.st/ANN-Launching-Pharo-on-Ubuntu-tp4709757p4710015.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-24 Thread Damien Cassou
On Mon, Sep 23, 2013 at 6:33 PM, blake wrote: > Very nice. Works on Mint, too. Could use more feedback, maybe: It's not > always clear when it's doing something when you create an image. I know :-(. If you have an idea, please tell me. Also, I would appreciate some help. -- Damien Cassou http:

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-23 Thread blake
Very nice. Works on Mint, too. Could use more feedback, maybe: It's not always clear when it's doing something when you create an image. On Mon, Sep 23, 2013 at 5:56 AM, Erwan Douaille wrote: > Thanks :) > > > 2013/9/23 Camillo Bruni > >> good work! >> >> On 2013-09-23, at 09:13, Damien Cassou

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-23 Thread Erwan Douaille
Thanks :) 2013/9/23 Camillo Bruni > good work! > > On 2013-09-23, at 09:13, Damien Cassou wrote: > > > For Ubuntu users who are using my PPA > > (https://launchpad.net/~pharo/+archive/stable/), you can now launch > > Pharo from either the Ubuntu Dashboard or the terminal (just type > > 'pharo'

Re: [Pharo-dev] [Pharo-users] [ANN] Launching Pharo on Ubuntu

2013-09-23 Thread Camillo Bruni
good work! On 2013-09-23, at 09:13, Damien Cassou wrote: > For Ubuntu users who are using my PPA > (https://launchpad.net/~pharo/+archive/stable/), you can now launch > Pharo from either the Ubuntu Dashboard or the terminal (just type > 'pharo'). > > In both cases, you will see the Pharo Launch