Version 0.10.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@21514 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2005-07-22 15:49:45 +00:00
parent 3ed37a582e
commit 365394b949
6 changed files with 33 additions and 15 deletions

View file

@ -1,7 +1,7 @@
ANNOUNCE
********
This is version 0.9.5 of the GNUstep GUI Backend (`gnustep-back').
This is version 0.10.0 of the GNUstep GUI Backend (`gnustep-back').
What is the GNUstep GUI Backend?
================================
@ -20,20 +20,21 @@ 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.9.5'
=====================================
Noteworthy changes in version `0.10.0'
======================================
* Added support for window alpha on X servers.
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.
* Add support for old and new freetype libs.
* Some improvements to the Windows backend.
* Alpha blending was implemented for Windows, although it does not
seem to work on some machines.
Where can you get it? How can you compile it?
==============================================
The gstep-back-0.9.5.tar.gz distribution file has been placed on
`ftp.gnustep.org' in `pub/gnustep/core'.
The gstep-back-0.10.0.tar.gz distribution file has been placed at
<ftp://ftp.gnustep.org/pub/gnustep/core>.
Where do I send bug reports?
============================

View file

@ -1,3 +1,7 @@
2005-07-22 Adam Fedor <fedor@gnu.org>
* Version 0.10.0
2005-07-17 Adam Fedor <fedor@gnu.org>
* Version: Add interface version number

View file

@ -9,12 +9,15 @@
@section Noteworthy changes in version @samp{0.10.0}
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.
@itemize @bullet
@item Alpha blending was implemented for Windows, although it does not
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

10
NEWS
View file

@ -1,6 +1,16 @@
NEWS
****
Noteworthy changes in version `0.10.0'
======================================
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.
* Alpha blending was implemented for Windows, although it does not
seem to work on some machines.
Noteworthy changes in version `0.9.5'
=====================================

2
README
View file

@ -1,7 +1,7 @@
README
******
This is version 0.9.5 of the GNUstep GUI Backend (`gnustep-back').
This is version 0.10.0 of the GNUstep GUI Backend (`gnustep-back').
Here is some introductory info to get you started:

View file

@ -3,12 +3,12 @@
# The version number of this release.
GNUSTEP_BACK_MAJOR_VERSION=0
GNUSTEP_BACK_MINOR_VERSION=9
GNUSTEP_BACK_SUBMINOR_VERSION=5
GNUSTEP_BACK_MINOR_VERSION=10
GNUSTEP_BACK_SUBMINOR_VERSION=0
# This numeric value should match above
VERSION_NUMBER=009.5
VERSION_NUMBER=010.0
# This numeric value should match the compatible gui interface version
INTERFACE_VERSION_NUMBER=009
INTERFACE_VERSION_NUMBER=010
GNUSTEP_BACK_VERSION=${GNUSTEP_BACK_MAJOR_VERSION}.${GNUSTEP_BACK_MINOR_VERSION}.${GNUSTEP_BACK_SUBMINOR_VERSION}
VERSION=${GNUSTEP_BACK_VERSION}