Re: [Pharo-dev] File List -- MNU: RubTextEditor>>doIt

2016-07-17 Thread Martin McClure
On 07/17/2016 01:58 PM, stepharo wrote: You found a bug due to the PluggableTextMorph removal. Since nobody use the fileList it went unnoticed. Can you open a bug entry? Done, case 18781. Regards, -Martin

Re: [Pharo-dev] [Pharo-users] [ANN] file dialog replacement experiment

2016-07-17 Thread Nicolas Passerini
On Sun, Jul 17, 2016 at 4:25 PM, Peter Uhnák wrote: > I wonder… does Pharo support such workflow that it would pull the code > from github? I.e. the development would continue on GitHub and Pharo would > just pull the updates. > > It is not ready for production, but I am

Re: [Pharo-dev] how to update monticello cypress repository downloaded from github?

2016-07-17 Thread Nicolas Passerini
It happens the same to me. On Sun, Jul 17, 2016 at 4:37 PM, Peter Uhnák wrote: > Metacello new >> baseline: 'FileDialog'; >> repository: 'github://peteruhnak/file-dialog/repository'; >> get; >> load. > > > Using #get indeed downloads a fresh copy, however

Re: [Pharo-dev] File List -- MNU: RubTextEditor>>doIt

2016-07-17 Thread Martin McClure
On 05/29/2016 12:52 PM, Hernán Morales Durand wrote: In Windows if you select a file with Smalltalk code and right click you get MessageNotUnderstood: FileList class>>allRegisteredServices without menu at all. I think you have to open a Workspace with contents and then you can evaluate. I

[Pharo-dev] 100 factorial asMethodConst

2016-07-17 Thread Denis Kudriashov
Hi. As continue to Marcus cool features around haltOnce I implement analogue of Dolphin ##() syntax. Slice is inbox (18768 ). So it will be available soon. Idea is to send message #asMethodConst to

Re: [Pharo-dev] how to update monticello cypress repository downloaded from github?

2016-07-17 Thread Peter Uhnák
> > Metacello new > baseline: 'FileDialog'; > repository: 'github://peteruhnak/file-dialog/repository'; > get; > load. Using #get indeed downloads a fresh copy, however the code in Pharo is _not_ reloaded. Is this a bug? Or do I need to do yet something more to reload that too?

Re: [Pharo-dev] [Pharo-users] [ANN] file dialog replacement experiment

2016-07-17 Thread Peter Uhnák
On Sat, Jul 16, 2016 at 11:04 PM, Johan Fabry wrote: > > This is excellent !!! > > We should change the default file browser to be this one ! > I wonder… does Pharo support such workflow that it would pull the code from github? I.e. the development would continue on GitHub

Re: [Pharo-dev] Pharo minimal & bootstrapping - Time & DelayScheduler

2016-07-17 Thread stepharo
Hi Ben Le 17/7/16 à 14:06, Ben Coman a écrit : A question on the minimization of the Pharo image and bootstrapping... Is there a desire to ultimately get down to the point of starting without the Time class and/or without the DelayScheduler class? Right now I do not think that we are

[Pharo-dev] Pharo minimal & bootstrapping - Time & DelayScheduler

2016-07-17 Thread Ben Coman
A question on the minimization of the Pharo image and bootstrapping... Is there a desire to ultimately get down to the point of starting without the Time class and/or without the DelayScheduler class? DelayScheduler currently depends on Time, only due to calling "Time microsecondClockValue' which

Re: [Pharo-dev] Problem with delay waiting (OSSubprocess code) on Pharo 5.0

2016-07-17 Thread Ben Coman
On Wed, Jul 13, 2016 at 12:30 AM, Mariano Martinez Peck wrote: > > > On Wed, May 18, 2016 at 11:39 PM, Ben Coman wrote: >> >> On Thu, May 19, 2016 at 8:49 AM, Martin McClure >> wrote: >> > On 05/18/2016 03:17 PM, Martin McClure