1. wxEuphoria v0.12.0 beta
- Posted by Matt Lewis <matthewwalkerlewis at g?ai?.com>
Dec 29, 2007
-
Last edited Dec 30, 2007
I've released the beta for v0.12.0:
http://sourceforge.net/project/showfiles.php?group_id=73684&package_id=73795&release_id=564768
v0.12.0 - wxBookCtrl: wxChoiceBook, wxListBook, wxToolBook, wxTreeBook
- wxPlatformInfo
- Added w_sprintf, from_utf8, to_utf8 to properly format unicode
strings.
- Fixed wx_printf to use w_sprintf instead of built-in sprintf
- Fixed set_event_handler() for wxGTK and wxMenu event handling to not
require the parent window of the menu to be passed
- Added enable_tooltips, set_tooltip_delay
- Added wrappers for Sizers
2. Re: wxEuphoria v0.12.0 beta
- Posted by Jerry Story <story.jerry at gm?il.co?>
Dec 29, 2007
-
Last edited Dec 30, 2007
Matt Lewis wrote:
>
>
> I've released the beta for v0.12.0:
>
> <a
> href="http://sourceforge.net/project/showfiles.php?group_id=73684&package_id=73795&release_id=564768">http://sourceforge.net/project/showfiles.php?group_id=73684&package_id=73795&release_id=564768</a>
>
> v0.12.0 - wxBookCtrl: wxChoiceBook, wxListBook, wxToolBook, wxTreeBook
> - wxPlatformInfo
> - Added w_sprintf, from_utf8, to_utf8 to properly format unicode
> strings.
> - Fixed wx_printf to use w_sprintf instead of built-in sprintf
> - Fixed set_event_handler() for wxGTK and wxMenu event handling to
> not
> require the parent window of the menu to be passed
> - Added enable_tooltips, set_tooltip_delay
> - Added wrappers for Sizers
Does wxPlatformInfo include the version of wxEuphoria? If not, could this be
included? Otherwise someone will download a program based on wxEuphoria and it
will require the latest version of wxEuphoria (0.13 or 0.14 or etc.) and it won't
work because the person has 0.11. With the version info, a message would be
possible saying you need this newer version of wxEuphoria.
3. Re: wxEuphoria v0.12.0 beta
- Posted by Matt Lewis <matthewwalkerlewis at gm?il?com>
Dec 29, 2007
-
Last edited Dec 30, 2007
Jerry Story wrote:
>
> Matt Lewis wrote:
> >
> >
> > I've released the beta for v0.12.0:
> >
> > <a
> > href="http://sourceforge.net/project/showfiles.php?group_id=73684&package_id=73795&release_id=564768">http://sourceforge.net/project/showfiles.php?group_id=73684&package_id=73795&release_id=564768</a>
> >
> > v0.12.0 - wxBookCtrl: wxChoiceBook, wxListBook, wxToolBook, wxTreeBook
> > - wxPlatformInfo
> > - Added w_sprintf, from_utf8, to_utf8 to properly format unicode
> > strings.
> > - Fixed wx_printf to use w_sprintf instead of built-in sprintf
> > - Fixed set_event_handler() for wxGTK and wxMenu event handling to
> > not
> > require the parent window of the menu to be passed
> > - Added enable_tooltips, set_tooltip_delay
> > - Added wrappers for Sizers
>
> Does wxPlatformInfo include the version of wxEuphoria? If not, could this be
> included? Otherwise someone will download a program based on wxEuphoria and
> it will require the latest version of wxEuphoria (0.13 or 0.14 or etc.) and
> it won't work because the person has 0.11. With the version info, a message
> would be possible saying you need this newer version of wxEuphoria.
No, it mainly deals with OS, toolkit (i.e., GTK) and wxWidgets. There is a
global constant called wxEuphoria_Version, which you can check. It's
currently defined (near the top of wxeud.e) as:
global constant
wxEuphoria_Version = {0,12,0},
wxEuphoria_Platform = platform(),
wxNEED_BUILD = 12
Matt