Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-09 Thread Stephane Ducasse
Alistair did I miss some pending PR to be integrated for FS? I'm getting back to reality after a totally fun and intense ESUG conference. Stef On Thu, Sep 7, 2017 at 8:26 AM, Alistair Grant wrote: > Hi Andreas, > > On Wed, Sep 06, 2017 at 04:53:27PM -0700, Andreas Sunardi wrote: >> Hi Alistair,

Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-06 Thread Alistair Grant
Hi Andreas, On Wed, Sep 06, 2017 at 04:53:27PM -0700, Andreas Sunardi wrote: > Hi Alistair, > > I found fogbugz #19717 where this was discussed. > > https://pharo.fogbugz.com/f/cases/19717/ > FileSystem-workingDirectory-wrong-after-image-moved-to-a-new-folder > > The issue seems to be the curre

Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-06 Thread Stephane Ducasse
Thanks a lot andreas!! On Thu, Sep 7, 2017 at 1:53 AM, Andreas Sunardi wrote: > Hi Alistair, > > I found fogbugz #19717 where this was discussed. > > https://pharo.fogbugz.com/f/cases/19717/FileSystem-workingDirectory-wrong-after-image-moved-to-a-new-folder > > The issue seems to be the curre

Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-06 Thread Andreas Sunardi
Hi Alistair, I found fogbugz #19717 where this was discussed. https://pharo.fogbugz.com/f/cases/19717/FileSystem-workingDirectory-wrong-after-image-moved-to-a-new-folder The issue seems to be the current working directory is saved in instance variable workingDirectory. When the image is moved to

Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-06 Thread Alistair Grant
On Wed, Sep 06, 2017 at 10:50:05AM -0700, Andreas Sunardi wrote: > It isn't only #changeDirectory: method that is missing. Method # > workingDirectoryPath: and instance variable workingDirectory are also > missing. > > FileSystem >> changeDirectory: aPath > self workingDirectoryPath: (self res

Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-06 Thread Andreas Sunardi
It isn't only #changeDirectory: method that is missing. Method #workingDirectoryPath: and instance variable workingDirectory are also missing. FileSystem >> changeDirectory: aPath self workingDirectoryPath: (self resolve: aPath) FileSystem >> workingDirectoryPath: aPath aPath isAbsolute i

Re: [Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-09-05 Thread Stephane Ducasse
Thanks for reporting. I do not remember an action around me for this change. Do you have the definition in Pharo 50 at hand? Stef On Wed, Aug 30, 2017 at 11:09 PM, Andreas Sunardi wrote: > I found FileSystem class has changed from Pharo 5 to Pharo 6. I've been > using FileSystem>>changeDirectory

[Pharo-users] Pharo 6 FileSystem>>changeDirectory: is missing

2017-08-30 Thread Andreas Sunardi
I found FileSystem class has changed from Pharo 5 to Pharo 6. I've been using FileSystem>>changeDirectory to make my program (Pharo 5) runs in the current working directory (thus able to find local files). This is now broken because #changeDirectory doesn't exist anymore. The change seems intentio