diff --git a/ANNOUNCE b/ANNOUNCE index 4890f06..2b5630b 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,7 +1,7 @@ ANNOUNCE ******** -This is version 0.10.0 of the GNUstep GUI Backend (`gnustep-back'). +This is version 0.10.1 of the GNUstep GUI Backend (`gnustep-back'). What is the GNUstep GUI Backend? ================================ @@ -20,20 +20,26 @@ easily ported to other display systems. Window's Systems. It works via a DPS emulation engine to emulate the DPS functions required by the front-end system. -Noteworthy changes in version `0.10.0' +Noteworthy changes in version `0.10.1' ====================================== -The installed name of the backend now includes an interface version -number. This avoids the potential version mismatch between the -frontend (GUI) library and the backend. +The art graphics module is the default now. As was previously the case, +if the proper libraries are not found, the configuration will +automatically switch to xlib on winlib (whichever is appropriate). - * Alpha blending was implemented for Windows, although it does not - seem to work on some machines. + There was a great deal of work by Tom MacSween on the windows module +to get windows and taskbars working together, closing, opening, hiding, +and just general good window management. + + The Cairo module has been significantly updated and now works with +Cariro version 1.0, although you need to make some minor changes to the +Cairo library before it will work with GNUstep. Due to this, this module +is still considered beta. Ask on the mailing lists for help with this. Where can you get it? How can you compile it? ============================================== -The gstep-back-0.10.0.tar.gz distribution file has been placed at +The gstep-back-0.10.1.tar.gz distribution file has been placed at . Where do I send bug reports? diff --git a/ChangeLog b/ChangeLog index 74e56a4..3695458 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-09-19 Adam Fedor + + * Version 0.10.1 + + * configure.ac: Make art the default graphics module. + 2005-09-14 Tom MacSween * Restructuring of the windows server to handle various diff --git a/Documentation/news.texi b/Documentation/news.texi index 76f4044..81df66d 100644 --- a/Documentation/news.texi +++ b/Documentation/news.texi @@ -7,6 +7,25 @@ @include version.texi @end ifset +@section Noteworthy changes in version @samp{0.10.1} + +The art graphics module is the default now. As was previously the +case, if the proper libraries are not found, the configuration will +automatically switch to xlib on winlib (whichever is appropriate). + +There was a great deal of work by Tom MacSween on the windows module to +get windows and taskbars working together, closing, opening, hiding, and just +general good window management. + +The Cairo module has been significantly updated and now works with +Cariro version 1.0, although you need to make some minor changes to the +Cairo library before it will work with GNUstep. Due to this, this module +is still considered beta. Ask on the mailing lists for help with this. + +@c ==================================================================== +@c Keep the next line just below the list of changes in most recent version. +@ifclear ANNOUNCE-ONLY + @section Noteworthy changes in version @samp{0.10.0} The installed name of the backend now includes an interface version number. @@ -18,10 +37,6 @@ and the backend. seem to work on some machines. @end itemize -@c ==================================================================== -@c Keep the next line just below the list of changes in most recent version. -@ifclear ANNOUNCE-ONLY - @section Noteworthy changes in version @samp{0.9.5} @itemize @bullet diff --git a/NEWS b/NEWS index b1f2bf4..6b6307e 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,22 @@ NEWS **** +Noteworthy changes in version `0.10.1' +====================================== + +The art graphics module is the default now. As was previously the case, +if the proper libraries are not found, the configuration will +automatically switch to xlib on winlib (whichever is appropriate). + +There was a great deal of work by Tom MacSween on the windows module to +get windows and taskbars working together, closing, opening, hiding, +and just general good window management. + + The Cairo module has been significantly updated and now works with +Cariro version 1.0, although you need to make some minor changes to the +Cairo library before it will work with GNUstep. Due to this, this module +is still considered beta. Ask on the mailing lists for help with this. + Noteworthy changes in version `0.10.0' ====================================== diff --git a/README b/README index bf84139..fd85dea 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ README ****** -This is version 0.10.0 of the GNUstep GUI Backend (`gnustep-back'). +This is version 0.10.1 of the GNUstep GUI Backend (`gnustep-back'). Here is some introductory info to get you started: diff --git a/Version b/Version index 82357b7..29755d2 100644 --- a/Version +++ b/Version @@ -4,9 +4,9 @@ # The version number of this release. GNUSTEP_BACK_MAJOR_VERSION=0 GNUSTEP_BACK_MINOR_VERSION=10 -GNUSTEP_BACK_SUBMINOR_VERSION=0 +GNUSTEP_BACK_SUBMINOR_VERSION=1 # This numeric value should match above -VERSION_NUMBER=010.0 +VERSION_NUMBER=010.1 # This numeric value should match the compatible gui interface version INTERFACE_VERSION_NUMBER=010 diff --git a/configure b/configure index 54165ef..3686afe 100755 --- a/configure +++ b/configure @@ -6834,7 +6834,7 @@ LDFLAGS=${GRAPHIC_LFLAGS} # Which projects should we build? #-------------------------------------------------------------------- BUILD_SERVER=x11 -BUILD_GRAPHICS=xlib +BUILD_GRAPHICS=art case $target_os in *mingw32* ) BUILD_SERVER=win32 BUILD_GRAPHICS=winlib;; diff --git a/configure.ac b/configure.ac index 83a26af..0fa4175 100644 --- a/configure.ac +++ b/configure.ac @@ -335,7 +335,7 @@ LDFLAGS=${GRAPHIC_LFLAGS} # Which projects should we build? #-------------------------------------------------------------------- BUILD_SERVER=x11 -BUILD_GRAPHICS=xlib +BUILD_GRAPHICS=art case $target_os in *mingw32* ) BUILD_SERVER=win32 BUILD_GRAPHICS=winlib;;