Re: [Pharo-users] diff'ing with metacello

2017-03-31 Thread Siemen Baader
> One of the thing that can be done is to temporarily copy all the versions > concerned into a Git-based repository with Iceberg or GitFileTree, and then > sees if git can provides a better diff, or even a git blame ability Great tip, thanks, Thierry! -- Siemen > . I've done that multiple tim

Re: [Pharo-users] diff'ing with metacello

2017-03-31 Thread Thierry Goubier
2017-03-31 8:16 GMT+02:00 Siemen Baader : > Ok. So it is a missing feature. I will do individual diff'ing on versions > of the package that contains the method under concern instead. This is > after all not different from a git repo that uses eg a package.json file to > include external projects.

Re: [Pharo-users] diff'ing with metacello

2017-03-30 Thread Siemen Baader
Ok. So it is a missing feature. I will do individual diff'ing on versions of the package that contains the method under concern instead. This is after all not different from a git repo that uses eg a package.json file to include external projects. Thanks for enlightening me! Siemen On Thu, Mar 3

Re: [Pharo-users] diff'ing with metacello

2017-03-30 Thread Thierry Goubier
2017-03-30 16:42 GMT+02:00 Ben Coman : > On Thu, Mar 30, 2017 at 2:58 PM, Siemen Baader > wrote: > > Below is a fileout of 'ConfigurationOfPharoJS'. I download new releases > of > > PharoJS as they become available. Recently I found a regression - a > method > > 'PjApplication class >> playgroun

Re: [Pharo-users] diff'ing with metacello

2017-03-30 Thread Ben Coman
On Thu, Mar 30, 2017 at 2:58 PM, Siemen Baader wrote: > Below is a fileout of 'ConfigurationOfPharoJS'. I download new releases of > PharoJS as they become available. Recently I found a regression - a method > 'PjApplication class >> playgroundWithoutLaunch' did not work any more. What > I wante

Re: [Pharo-users] diff'ing with metacello

2017-03-29 Thread Siemen Baader
Below is a fileout of 'ConfigurationOfPharoJS'. I download new releases of PharoJS as they become available. Recently I found a regression - a method 'PjApplication class >> playgroundWithoutLaunch' did not work any more. What I wanted to do was to revert the whole project to an earlier version u

Re: [Pharo-users] diff'ing with metacello

2017-03-28 Thread Siemen Baader
Sent from my iPhone On 28/03/2017, at 14.56, Ben Coman wrote: > Can you provide a concrete case of two versions you want to compare? > cheers -ben > Sure! I'm away from the computer but will post one ASAP! > On Tue, Mar 28, 2017 at 8:51 PM, Siemen Baader wrote: >> >> >> Sent from my iPhon

Re: [Pharo-users] diff'ing with metacello

2017-03-28 Thread Ben Coman
Can you provide a concrete case of two versions you want to compare? cheers -ben On Tue, Mar 28, 2017 at 8:51 PM, Siemen Baader wrote: > > > Sent from my iPhone > > On 28/03/2017, at 13.52, Ben Coman wrote: > >> Do you mean the difference between two "ConfigurationXXXmcz" files? > > I didn't

Re: [Pharo-users] diff'ing with metacello

2017-03-28 Thread Siemen Baader
Sent from my iPhone On 28/03/2017, at 13.52, Ben Coman wrote: > Do you mean the difference between two "ConfigurationXXXmcz" files? I didn't know there were 'ConfigurationOfX.mcz' files. What do they contain? What I want to see is what code has changed between two releases. In Git I wo

Re: [Pharo-users] diff'ing with metacello

2017-03-28 Thread Ben Coman
Do you mean the difference between two "ConfigurationXXXmcz" files? As a workaround, perhaps load one and then from Monticello, "start" to merge the other from Monticello and you will see a diff between them. cheers -ben On Tue, Mar 28, 2017 at 7:06 PM, Siemen Baader wrote: > Hi all, > > is