[squeak-dev] How to tell which package version?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

[squeak-dev] How to tell which package version?

Sophie424
I'm trying to determine which version of Monticello I have. The Monticello
Browser says "Monticello-edc.312". How to I translate this to a version,
such as "1.5"? Or should I be looking somewhere else?

Thanks - Sophie




Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] How to tell which package version?

keith1y
Sophie (itsme213) wrote:
> I'm trying to determine which version of Monticello I have. The Monticello
> Browser says "Monticello-edc.312". How to I translate this to a version,
> such as "1.5"? Or should I be looking somewhere else?
>
> Thanks - Sophie
>  
As far as Monticello is concerned...

1.0 exists in three streams, depending upon where you find it. edc.312
is the 3.10 version with Ralphs loader.

1.5 is recognizable by the presence of the package ".Orphanage", things
that fail to load do not raise errors, but wait in the orphanage until
they are loadable.

1.6 is 1.5, with the preference "atomic loading" enabled, and
SystemEditor loaded.

Keith

Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] How to tell which package version?

Edgar J. De Cleene
In reply to this post by Sophie424



El 11/3/08 9:05 PM, "Sophie (itsme213)" <[hidden email]> escribió:

> I'm trying to determine which version of Monticello I have. The Monticello
> Browser says "Monticello-edc.312". How to I translate this to a version,
> such as "1.5"? Or should I be looking somewhere else?
>
> Thanks - Sophie


edc is me , but the Monticello on Squeak 3.10 is from Ralph, is plain old
good trusted Monticello 1.

And I advice you use it until Colin finish Monticello 2.


Edgar



Reply | Threaded
Open this post in threaded view
|

[squeak-dev] Re: How to tell which package version?

Sophie424
In reply to this post by keith1y
OK, thanks. Is there a way to figure this out for myself, for a general
package? Is the connection between the monticello number & the version
number nowhere in the image?

- Sophie

"Keith Hodges" <[hidden email]> wrote in message
news:[hidden email]...

> Sophie (itsme213) wrote:
>> I'm trying to determine which version of Monticello I have. The
>> Monticello
>> Browser says "Monticello-edc.312". How to I translate this to a version,
>> such as "1.5"? Or should I be looking somewhere else?
>>
>> Thanks - Sophie
>>
> As far as Monticello is concerned...
>
> 1.0 exists in three streams, depending upon where you find it. edc.312
> is the 3.10 version with Ralphs loader.
>
> 1.5 is recognizable by the presence of the package ".Orphanage", things
> that fail to load do not raise errors, but wait in the orphanage until
> they are loadable.
>
> 1.6 is 1.5, with the preference "atomic loading" enabled, and
> SystemEditor loaded.
>
> Keith
>
>




Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] Re: How to tell which package version?

keith1y
Sophie (itsme213) wrote:
> OK, thanks. Is there a way to figure this out for myself, for a general
> package? Is the connection between the monticello number & the version
> number nowhere in the image?
>
> - Sophie
>
>  
In general the answer is no. Monticello only knows its version numbers.

however

Monticello 1.5 supports traditional version numbering schemes...

e.g.

MyPackage-kph.1.0.34.mcz

Keith