[Ann] iliad version 0.9.1.1 released

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

[Ann] iliad version 0.9.1.1 released

sebastien audier
We are happy to announce the release of Iliad 0.9.1.1 for Pharo and Squeak.
This is a bug fix release.
The repository has been synced with the gnu-smalltalk version.

Download & installation instructions can be found at http://www.iliadproject.org/pages/Download.

Happy Iliad hacking,

--
Sébastien AUDIER

ObjectFusion S.A.R.L.
Applications web, consulting, design
http://www.objectfusion.fr
Reply | Threaded
Open this post in threaded view
|

Re: iliad version 0.9.1.1 released

thiago_sl
Hi Sebastien and Nicolas.
Great news!
Congratulations and thank you very much, i will test the new version
tonight.


On Mar 22, 6:54 am, sebastien audier <[hidden email]>
wrote:

> We are happy to announce the release of Iliad 0.9.1.1 for Pharo and Squeak.
> This is a bug fix release.
> The repository has been synced with the gnu-smalltalk version.
>
> Download & installation instructions can be found athttp://www.iliadproject.org/pages/Download.
>
> Happy Iliad hacking,
>
> --
> Sébastien AUDIER
>
> ObjectFusion S.A.R.L.
> Applications web, consulting, designhttp://www.objectfusion.fr
Reply | Threaded
Open this post in threaded view
|

Re: iliad version 0.9.1.1 released

thiago_sl
Sebastien, in another topic i report an issue and a 'patch' about
ILNumberInputField with lightbox (doesnt works).
I this version, the issue stills. If the number input is nil, the
lightbox freeze.

I change de ILNumberInputField #fieldContents to work, as above:

 fieldContents
        ^[:e |
                e input
                        value: (self value ifNil: [''] ifNotNil: [self
value greaseString]);
                        action: [:val |
                             (val isEmpty)
                                 ifTrue: [ self value: nil ]
                                 ifFalse: [ self value: val
asNumber ]]]
Reply | Threaded
Open this post in threaded view
|

Re: iliad version 0.9.1.1 released

Nicolas Petton
Thanks,

Looks like it's time for a 0.9.1.2 release already :)

Cheers,
Nico

Le mardi 22 mars 2011 à 12:54 -0700, Thiago SL a écrit :

> Sebastien, in another topic i report an issue and a 'patch' about
> ILNumberInputField with lightbox (doesnt works).
> I this version, the issue stills. If the number input is nil, the
> lightbox freeze.
>
> I change de ILNumberInputField #fieldContents to work, as above:
>
>  fieldContents
>         ^[:e |
>                 e input
>                         value: (self value ifNil: [''] ifNotNil: [self
> value greaseString]);
>                         action: [:val |
>                              (val isEmpty)
>                                  ifTrue: [ self value: nil ]
>                                  ifFalse: [ self value: val
> asNumber ]]]