Releasing gnustep-gui 0.25.0.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@39865 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ivucica 2016-06-15 23:12:04 +00:00
parent 73f5720ba3
commit af4583a501
6 changed files with 133 additions and 74 deletions

View file

@ -1,19 +1,18 @@
1 ANNOUNCE 1 ANNOUNCE
********** **********
This is version 0.24.1 of the GNUstep GUI library (`gnustep-gui'). This is version 0.25.0 of the GNUstep GUI library (`gnustep-gui').
1.1 What is the GNUstep GUI Library? 1.1 What is the GNUstep GUI Library?
==================================== ====================================
It is a library of graphical user interface classes written completely It is a library of graphical user interface classes written completely
in the Objective-C language; the classes are based upon Apple's Cocoa in the Objective-C language; the classes are based upon Apple's Cocoa
framework (which came from the OpenStep specification as release by framework. The library has been enhanced in a number of ways to take
NeXT Software, Inc). The library has been enhanced in a number of ways advantage of the GNU system. These classes include graphical objects
to take advantage of the GNU system. These classes include graphical such as buttons, text fields, popup lists, browser lists, and windows;
objects such as buttons, text fields, popup lists, browser lists, and there are also many associated classes for handling events, colors,
windows; there are also many associated classes for handling events, fonts, pasteboards and images.
colors, fonts, pasteboards and images.
The GNUstep GUI Library is designed in two parts. The first part is The GNUstep GUI Library is designed in two parts. The first part is
the front-end component which is independent of platform and display the front-end component which is independent of platform and display
@ -25,24 +24,46 @@ the application, and the library can be easily ported to other display
systems. systems.
The GNUstep GUI Library requires the GNU Objective-C compiler, the The GNUstep GUI Library requires the GNU Objective-C compiler, the
GNUstep Base Library, the TIFF Graphics library, and a back-end GNUstep Base Library, the TIFF Graphics library, Independent JPEG
component like the GNUstep 'Back' Backend. Group's libjpeg library, and a back-end component from the GNUstep
'Back' library.
1.2 Noteworthy changes in version `0.24.1' Additional functionality may be enabled by installing additional
libraries. For example, to build the Cairo backend in the GNUstep Back
library, you will need to install Cairo.
1.2 Noteworthy changes in version `0.25.0'
========================================== ==========================================
From a look through ChangeLog, we can see a lot of bugfixes for this - Fixes for new GIF library versions
release, with the main focus on avoiding display glitches and improving - Theming of named images for spe$cific applications by the use of the
OSX compatibility. CFBundleIdentifier in the theme
- New icons and corresponding constants for special folders, recycler
and others
- Improvements in NSWorkspace icon lookup
- Improvements in removable media commands, imported and cleaned from
GWorkspace
- Numerous bug fixes and improvements in Cocoa compatibility
- Numerous theme tweaks
- Spanish locale
1.3 Where can you get it? How can you compile it? 1.3 Where can you get it? How can you compile it?
================================================== ==================================================
The gstep-gui-0.24.1.tar.gz distribution file has been placed at The gnustep-gui-0.25.0.tar.gz distribution file has been placed at
`ftp://ftp.gnustep.org/pub/gnustep/core'. `ftp://ftp.gnustep.org/pub/gnustep/core'.
It is accompanied by gnustep-gui-0.25.0.tar.gz.sig, a PGP signature
which you can validate by putting both files in the same directory
and using:
`gpg --verify gnustep-gui-0.25.0.tar.gz.sig'
Signature has been created using the key with the following
fingerprint:
`83AA E47C E829 A414 6EF8 3420 CA86 8D4C 9914 9679'
Read the INSTALL file or the GNUstep-HOWTO for installation Read the INSTALL file or the GNUstep-HOWTO for installation
instructions. Instructions.
1.4 Where do I send bug reports? 1.4 Where do I send bug reports?
================================ ================================

View file

@ -1,3 +1,12 @@
2016-06-16 Ivan Vucica <ivan@vucica.net>
* ANNOUNCE:
* Documentation/news.texi:
* INSTALL:
* NEWS:
* Version:
Releasing 0.25.0.
2016-06-04 Fred Kiefer <FredKiefer@gmx.de> 2016-06-04 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSBitmapImageRepPrivate.h, * Source/NSBitmapImageRepPrivate.h,

View file

@ -9,6 +9,20 @@
The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSION}}. The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSION}}.
@end ifclear @end ifclear
@section Noteworthy changes in version @samp{0.25.0}
- Fixes for new GIF library versions
- Theming of named images for specific applications by the use of the
CFBundleIdentifier in the theme
- New icons and corresponding constants for special folders, recycler
and others
- Improvements in NSWorkspace icon lookup
- Improvements in removable media commands, imported and cleaned from
GWorkspace
- Numerous bug fixes and improvements in Cocoa compatibility
- Numerous theme tweaks
- Spanish locale
@section Noteworthy changes in version @samp{0.24.1} @section Noteworthy changes in version @samp{0.24.1}
From a look through ChangeLog, we can see a lot of bugfixes for this release, From a look through ChangeLog, we can see a lot of bugfixes for this release,

View file

@ -13,7 +13,7 @@ and in the gnustep-make package (which you should install first).
You must have installed gnustep-base and gnustep-make before You must have installed gnustep-base and gnustep-make before
building this library. GNUstep Make version 2.0.0 or greater is building this library. GNUstep Make version 2.0.0 or greater is
required. GNUstep Base version 1.15.0 or greater is required. required. GNUstep Base version 1.24.9 or greater is required.
Other external libraries that you should have installed include: Other external libraries that you should have installed include:

123
NEWS
View file

@ -1,16 +1,31 @@
1 NEWS 1 NEWS
****** ******
The currently released version of the library is `0.24.1'. The currently released version of the library is `0.25.0'.
1.1 Noteworthy changes in version `0.24.1' 1.1 Noteworthy changes in version `0.25.0`
==========================================
- Fixes for new GIF library versions
- Theming of named images for spe$cific applications by the use of the
CFBundleIdentifier in the theme
- New icons and corresponding constants for special folders, recycler
and others
- Improvements in NSWorkspace icon lookup
- Improvements in removable media commands, imported and cleaned from
GWorkspace
- Numerous bug fixes and improvements in Cocoa compatibility
- Numerous theme tweaks
- Spanish locale
1.2 Noteworthy changes in version `0.24.1'
========================================== ==========================================
From a look through ChangeLog, we can see a lot of bugfixes for this From a look through ChangeLog, we can see a lot of bugfixes for this
release, with the main focus on avoiding display glitches and improving release, with the main focus on avoiding display glitches and improving
OSX compatibility. OSX compatibility.
1.2 Noteworthy changes in version `0.24.0' 1.3 Noteworthy changes in version `0.24.0'
========================================== ==========================================
New features include: New features include:
@ -25,13 +40,13 @@ New features include:
Many bugfixes. Many bugfixes.
1.3 Noteworthy changes in version `0.23.1' 1.4 Noteworthy changes in version `0.23.1'
========================================== ==========================================
This is a bugfix release, primarily to deal with coding/archiving This is a bugfix release, primarily to deal with coding/archiving
issues. issues.
1.4 Noteworthy changes in version `0.22.0' 1.5 Noteworthy changes in version `0.22.0'
========================================== ==========================================
New features include: New features include:
@ -50,19 +65,19 @@ New features include:
selection of image reps, better support for icons). Many bugfixes, selection of image reps, better support for icons). Many bugfixes,
including in Xib loading, printing, and NSView geometry. including in Xib loading, printing, and NSView geometry.
1.5 Noteworthy changes in version `0.20.0' 1.6 Noteworthy changes in version `0.20.0'
========================================== ==========================================
A new stable release. Many improvments with Nib loading, documents and A new stable release. Many improvments with Nib loading, documents and
document controllers. Fixed many drawing issues, particularly ones document controllers. Fixed many drawing issues, particularly ones
related to flipping. Much improved theming. related to flipping. Much improved theming.
1.6 Noteworthy changes in version `0.19.0' 1.7 Noteworthy changes in version `0.19.0'
========================================== ==========================================
This is an (unstable) copy of the 0.18.0 release This is an (unstable) copy of the 0.18.0 release
1.7 Noteworthy changes in version `0.18.0' 1.8 Noteworthy changes in version `0.18.0'
========================================== ==========================================
A new stable release that has had many improvements. Many new Mac OS X A new stable release that has had many improvements. Many new Mac OS X
@ -71,15 +86,15 @@ were made (particularly with the use of the Windows theme). There is
also better compatibility with Mac OS X in terms of usage of NSInteger also better compatibility with Mac OS X in terms of usage of NSInteger
and other definitions. and other definitions.
1.8 Noteworthy changes in version `0.17.1' 1.9 Noteworthy changes in version `0.17.1'
========================================== ==========================================
* New Mac OS X 10.5 methods in NSFont * New Mac OS X 10.5 methods in NSFont
* Add live resize in NSSplitView * Add live resize in NSSplitView
1.9 Noteworthy changes in version `0.17.0' 1.10 Noteworthy changes in version `0.17.0'
========================================== ===========================================
* New Mac OS X 10.5 methods in many classes * New Mac OS X 10.5 methods in many classes
@ -87,7 +102,7 @@ and other definitions.
* Several improvements for Garbage Collection * Several improvements for Garbage Collection
1.10 Noteworthy changes in version `0.16.0' 1.11 Noteworthy changes in version `0.16.0'
=========================================== ===========================================
* Nib loading refractored and improved. * Nib loading refractored and improved.
@ -98,7 +113,7 @@ and other definitions.
* NSTokenField and netokenFiledCell classes added. * NSTokenField and netokenFiledCell classes added.
1.11 Noteworthy changes in version `0.14.0' 1.12 Noteworthy changes in version `0.14.0'
=========================================== ===========================================
* New class NSGlyphGenerator for glyph generation * New class NSGlyphGenerator for glyph generation
@ -109,7 +124,7 @@ and other definitions.
* Manu bug fixes. * Manu bug fixes.
1.12 Noteworthy changes in version `0.13.2' 1.13 Noteworthy changes in version `0.13.2'
=========================================== ===========================================
* Printing works a little better now. * Printing works a little better now.
@ -125,7 +140,7 @@ and other definitions.
* NSDrawer was implemented. * NSDrawer was implemented.
1.13 Noteworthy changes in version `0.13.1' 1.14 Noteworthy changes in version `0.13.1'
=========================================== ===========================================
* NSMenu - Added more MacOS X methods and an ivar. * NSMenu - Added more MacOS X methods and an ivar.
@ -139,7 +154,7 @@ and other definitions.
* Changed the NSCursor hot point to 0,0 for MacOS X compatibility. * Changed the NSCursor hot point to 0,0 for MacOS X compatibility.
1.14 Noteworthy changes in version `0.13.0' 1.15 Noteworthy changes in version `0.13.0'
=========================================== ===========================================
This is an unstable release. There may be backward compatibility issues This is an unstable release. There may be backward compatibility issues
@ -176,7 +191,7 @@ with previous releases of the gui library.
* Base library version 1.15.1 is required for this release * Base library version 1.15.1 is required for this release
1.15 Noteworthy changes in version `0.12.0' 1.16 Noteworthy changes in version `0.12.0'
=========================================== ===========================================
It has been a long time since the last release and many things have been It has been a long time since the last release and many things have been
@ -201,7 +216,7 @@ added and changed, including new classes, new ivars, and new methods.
* NSSpellServer and NSAffineTransform was moved to GNUstep base for * NSSpellServer and NSAffineTransform was moved to GNUstep base for
Mac OS X compatibility. Mac OS X compatibility.
1.16 Noteworthy changes in version `0.11.0' 1.17 Noteworthy changes in version `0.11.0'
=========================================== ===========================================
* Added support for keyed encoding in all gui classes. * Added support for keyed encoding in all gui classes.
@ -212,26 +227,26 @@ added and changed, including new classes, new ivars, and new methods.
* Implemented glue code in GSNibCompatibility for classes such as * Implemented glue code in GSNibCompatibility for classes such as
NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading. NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading.
1.17 Noteworthy changes in version `0.10.3' 1.18 Noteworthy changes in version `0.10.3'
=========================================== ===========================================
* Horizontal menus now work * Horizontal menus now work
* Better support for tracking active applications. * Better support for tracking active applications.
1.18 Noteworthy changes in version `0.10.2' 1.19 Noteworthy changes in version `0.10.2'
=========================================== ===========================================
Mostly bug fixes. Mostly bug fixes.
1.19 Noteworthy changes in version `0.10.1' 1.20 Noteworthy changes in version `0.10.1'
=========================================== ===========================================
GNUstep now uses v19 of portaudio for the sound daemon. Version v19 GNUstep now uses v19 of portaudio for the sound daemon. Version v19
hasn't been officially released, but it is still used in several hasn't been officially released, but it is still used in several
distributions (SuSE, etc) as v18 is very old. distributions (SuSE, etc) as v18 is very old.
1.20 Noteworthy changes in version `0.10.0' 1.21 Noteworthy changes in version `0.10.0'
=========================================== ===========================================
This release is binary incompatible with previous releases. The This release is binary incompatible with previous releases. The
@ -243,7 +258,7 @@ new version.
* Keyed encoding is supported in many classes. * Keyed encoding is supported in many classes.
1.21 Noteworthy changes in version `0.9.5' 1.22 Noteworthy changes in version `0.9.5'
========================================== ==========================================
* Beginnings of CUPS interface were added. * Beginnings of CUPS interface were added.
@ -256,7 +271,7 @@ new version.
* You can find the GUI library's version using the Info.plist * You can find the GUI library's version using the Info.plist
1.22 Noteworthy changes in version `0.9.4' 1.23 Noteworthy changes in version `0.9.4'
========================================== ==========================================
* The printing classes have been completely reorganized to * The printing classes have been completely reorganized to
@ -271,7 +286,7 @@ new version.
* Some improvement of NSDataLink classes. * Some improvement of NSDataLink classes.
1.23 Noteworthy changes in version `0.9.3' 1.24 Noteworthy changes in version `0.9.3'
========================================== ==========================================
* Spell checker reimplemented using libaspell * Spell checker reimplemented using libaspell
@ -283,7 +298,7 @@ new version.
* Binary incompatibilites from ivar additions in NSView and * Binary incompatibilites from ivar additions in NSView and
subclasses. subclasses.
1.24 Noteworthy changes in version `0.9.2' 1.25 Noteworthy changes in version `0.9.2'
========================================== ==========================================
* Working NSToolbar implementation * Working NSToolbar implementation
@ -302,7 +317,7 @@ new version.
* Much improved loading of gorm files * Much improved loading of gorm files
1.25 Noteworthy changes in version `0.9.1' 1.26 Noteworthy changes in version `0.9.1'
========================================== ==========================================
* NSWindow - DnD works on whole window and events are propogated up * NSWindow - DnD works on whole window and events are propogated up
@ -310,14 +325,14 @@ new version.
* Absolute paths and DnD works in OpenPanels. * Absolute paths and DnD works in OpenPanels.
1.26 Noteworthy changes in version `0.9.0' 1.27 Noteworthy changes in version `0.9.0'
========================================== ==========================================
Improvements in various classes, include NSPopUpButton, Improvements in various classes, include NSPopUpButton,
NSBitmapImageRep, NSMenu, NSToolbar. Added support for thumbnail images NSBitmapImageRep, NSMenu, NSToolbar. Added support for thumbnail images
in NSWorkspace. in NSWorkspace.
1.27 Noteworthy changes in version `0.8.9' 1.28 Noteworthy changes in version `0.8.9'
========================================== ==========================================
Note that many headers have moved to new locations (both in the package Note that many headers have moved to new locations (both in the package
@ -326,14 +341,14 @@ applications may not compile because they cannot find the right header.
* New Language Setup documentation. * New Language Setup documentation.
1.28 Noteworthy changes in version `0.8.8' 1.29 Noteworthy changes in version `0.8.8'
========================================== ==========================================
* Updated LanguageSetup documentation * Updated LanguageSetup documentation
* Improved RTF reader (unicode support, etc). * Improved RTF reader (unicode support, etc).
1.29 Noteworthy changes in version `0.8.7' 1.30 Noteworthy changes in version `0.8.7'
========================================== ==========================================
* NSBezierPath glyph methods implemented (depends on backend). * NSBezierPath glyph methods implemented (depends on backend).
@ -343,7 +358,7 @@ applications may not compile because they cannot find the right header.
* Added default to load user-defined bundles (GSAppKitUserBundles * Added default to load user-defined bundles (GSAppKitUserBundles
default). default).
1.30 Noteworthy changes in version `0.8.6' 1.31 Noteworthy changes in version `0.8.6'
========================================== ==========================================
Updated to install in new locations based on changes in gnustep-make Updated to install in new locations based on changes in gnustep-make
@ -355,12 +370,12 @@ Updated to install in new locations based on changes in gnustep-make
* Lots of menu improvements. * Lots of menu improvements.
1.31 Noteworthy changes in version `0.8.5' 1.32 Noteworthy changes in version `0.8.5'
========================================== ==========================================
Bug fixes. NSStringDrawing now uses text system implementation. Bug fixes. NSStringDrawing now uses text system implementation.
1.32 Noteworthy changes in version `0.8.4' 1.33 Noteworthy changes in version `0.8.4'
========================================== ==========================================
This release features a brand new text and layout system thanks to This release features a brand new text and layout system thanks to
@ -374,7 +389,7 @@ Alexander Malmberg. Other improvements include:
* NSToolbar partially implemented. * NSToolbar partially implemented.
1.33 Noteworthy changes in version `0.8.3' 1.34 Noteworthy changes in version `0.8.3'
========================================== ==========================================
* Additions for Gorm support. * Additions for Gorm support.
@ -391,7 +406,7 @@ Alexander Malmberg. Other improvements include:
* Key view handling rewritten. * Key view handling rewritten.
1.34 Noteworthy changes in version `0.8.2' 1.35 Noteworthy changes in version `0.8.2'
========================================== ==========================================
* Handle fonts that aren't found better. * Handle fonts that aren't found better.
@ -408,7 +423,7 @@ Alexander Malmberg. Other improvements include:
* Fix firstResponder status in text fields. * Fix firstResponder status in text fields.
1.35 Noteworthy changes in version `0.8.1' 1.36 Noteworthy changes in version `0.8.1'
========================================== ==========================================
* Handle scaled curves correctly. * Handle scaled curves correctly.
@ -421,10 +436,10 @@ Alexander Malmberg. Other improvements include:
* Spell checker starts correctly now. * Spell checker starts correctly now.
1.36 Noteworthy changes in version `0.8.0' 1.37 Noteworthy changes in version `0.8.0'
========================================== ==========================================
1.37 Noteworthy changes in version `0.7.9' 1.38 Noteworthy changes in version `0.7.9'
========================================== ==========================================
* NSTableView, NSOutlineView improvements. * NSTableView, NSOutlineView improvements.
@ -433,14 +448,14 @@ Alexander Malmberg. Other improvements include:
* Skeleton implementation of NSToolBar * Skeleton implementation of NSToolBar
1.38 Noteworthy changes in version `0.7.8' 1.39 Noteworthy changes in version `0.7.8'
========================================== ==========================================
* Wheel color picker, standard color picker (bundles) added. * Wheel color picker, standard color picker (bundles) added.
* System colors now use named colors. Easier configuration * System colors now use named colors. Easier configuration
1.39 Noteworthy changes in version `0.7.7' 1.40 Noteworthy changes in version `0.7.7'
========================================== ==========================================
The graphics/window interface was completely revamped. Window functions The graphics/window interface was completely revamped. Window functions
@ -464,7 +479,7 @@ computers, although it is in a very alpha state.
* NSOutlineView much improved. * NSOutlineView much improved.
1.40 Noteworthy changes in version `0.7.6' 1.41 Noteworthy changes in version `0.7.6'
========================================== ==========================================
* NSOutlineView implemented. * NSOutlineView implemented.
@ -477,7 +492,7 @@ computers, although it is in a very alpha state.
* Memory panel available from Info Panel. * Memory panel available from Info Panel.
1.41 Noteworthy changes in version `0.7.5' 1.42 Noteworthy changes in version `0.7.5'
========================================== ==========================================
* Drag and drop and image sliding much improved. * Drag and drop and image sliding much improved.
@ -508,7 +523,7 @@ computers, although it is in a very alpha state.
* Gmodel code compiled as a separate bundle. * Gmodel code compiled as a separate bundle.
1.42 Noteworthy changes in version `0.7.0' 1.43 Noteworthy changes in version `0.7.0'
========================================== ==========================================
* Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo * Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo
@ -524,7 +539,7 @@ computers, although it is in a very alpha state.
* NSColorWell works. * NSColorWell works.
1.43 Noteworthy changes in version `0.6.7' 1.44 Noteworthy changes in version `0.6.7'
========================================== ==========================================
* App Icons can support documents dropped using DnD. * App Icons can support documents dropped using DnD.
@ -551,7 +566,7 @@ computers, although it is in a very alpha state.
* Support middle mouse button. * Support middle mouse button.
1.44 Noteworthy changes in version `0.6.6' 1.45 Noteworthy changes in version `0.6.6'
========================================== ==========================================
* Window hints for motif and generic window managers. * Window hints for motif and generic window managers.
@ -588,7 +603,7 @@ however, that the xdps backend is still considered experimental and you
may have to deal with many problems in order to get it working. We may have to deal with many problems in order to get it working. We
recommend sticking with the xgps backend (the default) for now. recommend sticking with the xgps backend (the default) for now.
1.45 Noteworthy changes in version `0.6.5' 1.46 Noteworthy changes in version `0.6.5'
========================================== ==========================================
Many of the basic GUI classes have been vastly improved or rewritten, Many of the basic GUI classes have been vastly improved or rewritten,
@ -622,7 +637,7 @@ thanks to Nicola Pero <n.pero@mi.flashnet.it> and many others.
been written, thanks to Richard Frith-Macdonald been written, thanks to Richard Frith-Macdonald
<richard@brainstorm.co.uk> <richard@brainstorm.co.uk>
1.46 Noteworthy changes in version `0.6.0' 1.47 Noteworthy changes in version `0.6.0'
========================================== ==========================================
A Huge amount of progress, although a lot still needs to be done. It's A Huge amount of progress, although a lot still needs to be done. It's
@ -653,7 +668,7 @@ apps and libraries have been ported with little changes.
* Several fixes that at least double the speed of the gui. * Several fixes that at least double the speed of the gui.
1.47 Noteworthy changes in version `0.5.5' 1.48 Noteworthy changes in version `0.5.5'
========================================== ==========================================
Too extensive to list. Too extensive to list.
@ -662,7 +677,7 @@ Too extensive to list.
cleanup of coordinate conversion code, etc. cleanup of coordinate conversion code, etc.
1.48 Noteworthy changes in version `0.5.0' 1.49 Noteworthy changes in version `0.5.0'
========================================== ==========================================
* NSBrowser and NSBrowserCell have been implemented. There is one * NSBrowser and NSBrowserCell have been implemented. There is one
@ -712,7 +727,7 @@ Too extensive to list.
* Several cleanups and as usual, many bug fixes. * Several cleanups and as usual, many bug fixes.
1.49 Noteworthy changes in version `0.3.0' 1.50 Noteworthy changes in version `0.3.0'
========================================== ==========================================
* Completely reworked the menu class. The NSMenu class is now * Completely reworked the menu class. The NSMenu class is now
@ -744,7 +759,7 @@ Too extensive to list.
implement the NSCopying protocol and many others. implement the NSCopying protocol and many others.
1.50 Noteworthy changes in version `0.2.0' 1.51 Noteworthy changes in version `0.2.0'
========================================== ==========================================
* Additional NSImage and NSImageRep class work. Incorporated common * Additional NSImage and NSImageRep class work. Incorporated common
@ -779,7 +794,7 @@ Too extensive to list.
* Many bug fixes and minor enhancements. * Many bug fixes and minor enhancements.
1.51 Noteworthy changes in version `0.1.1' 1.52 Noteworthy changes in version `0.1.1'
========================================== ==========================================
* Almost complete implementation of the PXKMenu and PXKMenuCell * Almost complete implementation of the PXKMenu and PXKMenuCell
@ -803,7 +818,7 @@ Too extensive to list.
manipulating tiff files and images. manipulating tiff files and images.
1.52 Noteworthy changes in version `0.1.0' 1.53 Noteworthy changes in version `0.1.0'
========================================== ==========================================
* Integration of the GNUstep X/DPS GUI Backend. This has finally * Integration of the GNUstep X/DPS GUI Backend. This has finally

View file

@ -5,15 +5,15 @@
GNUSTEP_GUI_GCC=4.0.0 GNUSTEP_GUI_GCC=4.0.0
# Versions for libraries that gnustep-gui is dependent upon # Versions for libraries that gnustep-gui is dependent upon
GNUSTEP_GUI_BASE=1.24.6 GNUSTEP_GUI_BASE=1.25.9
GNUSTEP_GUI_LIBTIFF=3.4 GNUSTEP_GUI_LIBTIFF=3.4
# The version number of this release. # The version number of this release.
GNUSTEP_GUI_MAJOR_VERSION=0 GNUSTEP_GUI_MAJOR_VERSION=0
GNUSTEP_GUI_MINOR_VERSION=24 GNUSTEP_GUI_MINOR_VERSION=25
GNUSTEP_GUI_SUBMINOR_VERSION=1 GNUSTEP_GUI_SUBMINOR_VERSION=0
# numeric value should match above # numeric value should match above
VERSION_NUMBER=024.1 VERSION_NUMBER=025.0
GNUSTEP_GUI_VERSION=${GNUSTEP_GUI_MAJOR_VERSION}.${GNUSTEP_GUI_MINOR_VERSION}.${GNUSTEP_GUI_SUBMINOR_VERSION} GNUSTEP_GUI_VERSION=${GNUSTEP_GUI_MAJOR_VERSION}.${GNUSTEP_GUI_MINOR_VERSION}.${GNUSTEP_GUI_SUBMINOR_VERSION}
VERSION=${GNUSTEP_GUI_VERSION} VERSION=${GNUSTEP_GUI_VERSION}