[Seaside] [ANN] Seaside 3.1 and 3.0.10 release

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

[Seaside] [ANN] Seaside 3.1 and 3.0.10 release

Philippe Marschall
We are pleased to announce the releases of Seaside 3.1 and 3.0.10.
Seaside 3.1 is a feature release and contains a range of improvements
and fixes from a variety of people. Seaside 3.0.10 is a minor release
of Seaside 3.0 containing only a single bug fix.

The changes can be view here:
http://code.google.com/p/seaside/wiki/Seaside310Changelog and here:
http://code.google.com/p/seaside/wiki/Seaside3010Changelog

A one-click image is available here:
http://www.seaside.st/distributions/Seaside-3.1-OneClick.zip and here:
http://www.seaside.st/distributions/Seaside-3.0.10-OneClick.zip
Mavericks user beware the one click images are not signed.

Seaside's Metacello configuration has been updated, so Seaside 3.1 can
be loaded into Pharo with:

Gofer new
    url:'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
    package: 'ConfigurationOfSeaside3';
    load.
((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load.

For more control over what gets loaded check out the class comment of
ConfigurationOfSeaside3 that lists the supported groups.

We would like to thank everybody who contributed to these releases.

The Seaside Team
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Seaside] [ANN] Seaside 3.1 and 3.0.10 release

Sven Van Caekenberghe-2

On 27 Dec 2013, at 11:57, Philippe Marschall <[hidden email]> wrote:

> We are pleased to announce the releases of Seaside 3.1 and 3.0.10.

That is great news. Congratulations and thank you to the whole team.

> Seaside 3.1 is a feature release and contains a range of improvements
> and fixes from a variety of people. Seaside 3.0.10 is a minor release
> of Seaside 3.0 containing only a single bug fix.
>
> The changes can be view here:
> http://code.google.com/p/seaside/wiki/Seaside310Changelog and here:
> http://code.google.com/p/seaside/wiki/Seaside3010Changelog
>
> A one-click image is available here:
> http://www.seaside.st/distributions/Seaside-3.1-OneClick.zip and here:
> http://www.seaside.st/distributions/Seaside-3.0.10-OneClick.zip
> Mavericks user beware the one click images are not signed.

It’s a pity those are still based on Pharo 1.3, which is becoming quite old now.

> Seaside's Metacello configuration has been updated, so Seaside 3.1 can
> be loaded into Pharo with:
>
> Gofer new
>    url:'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>    package: 'ConfigurationOfSeaside3';
>    load.
> ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load.

Images of Pharo 2.0 or 3.0 with Seaside preloaded can be found here:

  https://ci.inria.fr/pharo-contribution/job/Seaside/

Sven

> For more control over what gets loaded check out the class comment of
> ConfigurationOfSeaside3 that lists the supported groups.
>
> We would like to thank everybody who contributed to these releases.
>
> The Seaside Team
> _______________________________________________
> seaside-dev mailing list
> [hidden email]
> http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev

_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Seaside] [ANN] Seaside 3.1 and 3.0.10 release

Philippe Marschall
In reply to this post by Philippe Marschall
On Mon, Jan 20, 2014 at 8:24 PM, Bob Arning <[hidden email]> wrote:

>
> On 1/20/14 1:49 PM, Philippe Marschall wrote:
>>
>> The "Kom" group is not available for Squeak, try "WebClient" instead.
>
> OK, so I tried
>
> ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load: #(
> 'WebClient').
>
> And got:
>
> Error: Could not resolve: WebClient-Seaside [WebClient-Seaside-ar.10] in
> /Users/bob/squeak/SECOG/package-cache
> http://smalltalkhub.com/mc/Seaside/Seaside31/main
> 20 January 2014 2:19:56.365 pm

Can somebody with a better understanding of Metacello have you look at
this? Somehow it searches for WebClient-Seaside-ar.10 only in
http://smalltalkhub.com/mc/Seaside/Seaside31/main

I use the following code:

(Installer monticello http:
'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main');
    install: 'ConfigurationOfSeaside3'.
((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable)
load: #('Core' 'WebClient').

Cheers
Philippe
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Seaside] [ANN] Seaside 3.1 and 3.0.10 release

Paul DeBruicker
Just fixed this and uploaded the fix.  Andreas's repo wasn't referenced in the 'Webclient-Seaside' definition block.  I'll add an email in the regular forum for Bob and posterity.





Philippe Marschall wrote
On Mon, Jan 20, 2014 at 8:24 PM, Bob Arning <[hidden email]> wrote:
>
> On 1/20/14 1:49 PM, Philippe Marschall wrote:
>>
>> The "Kom" group is not available for Squeak, try "WebClient" instead.
>
> OK, so I tried
>
> ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load: #(
> 'WebClient').
>
> And got:
>
> Error: Could not resolve: WebClient-Seaside [WebClient-Seaside-ar.10] in
> /Users/bob/squeak/SECOG/package-cache
> http://smalltalkhub.com/mc/Seaside/Seaside31/main
> 20 January 2014 2:19:56.365 pm

Can somebody with a better understanding of Metacello have you look at
this? Somehow it searches for WebClient-Seaside-ar.10 only in
http://smalltalkhub.com/mc/Seaside/Seaside31/main

I use the following code:

(Installer monticello http:
'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main');
    install: 'ConfigurationOfSeaside3'.
((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable)
load: #('Core' 'WebClient').

Cheers
Philippe
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Seaside] [ANN] Seaside 3.1 and 3.0.10 release

Philippe Marschall
On Thu, Jan 23, 2014 at 10:20 PM, Paul DeBruicker <[hidden email]> wrote:
> Just fixed this and uploaded the fix.  Andreas's repo wasn't referenced in
> the 'Webclient-Seaside' definition block.  I'll add an email in the regular
> forum for Bob and posterity.

Thank you
Philippe
_______________________________________________
seaside-dev mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev