Version 0.8.4

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@16066 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2003-02-25 03:30:15 +00:00
parent b3fcdcbb2f
commit 4fe72e287d
4 changed files with 16 additions and 8 deletions

View file

@ -1,3 +1,7 @@
2003-02-24 Adam Fedor <fedor@gnu.org>
* Version: 0.8.4
2003-02-20 Willem Rein Oudshoorn <woudshoo@xs4all.nl> 2003-02-20 Willem Rein Oudshoorn <woudshoo@xs4all.nl>
* Source/xlib/XGFont.m ([XGFontInfo -setupAttributes]): Use * Source/xlib/XGFont.m ([XGFontInfo -setupAttributes]): Use

View file

@ -34,10 +34,10 @@ specific options are at the end of this list (if any).
The backend comes with several different window server and graphics The backend comes with several different window server and graphics
drawing implementations. If you do nothing, the default ones will be drawing implementations. If you do nothing, the default ones will be
chosen. You can can change this using configure. For instance, chosen. You can can change this using configure. For instance,
to choose the gslib graphical drawing implementation, run to choose the art graphical drawing implementation, run
@example @example
configure --enable-gslib configure --enable-graphics=art
@end example @end example
Type @code{configure --help} for a list of graphical drawing Type @code{configure --help} for a list of graphical drawing
@ -45,22 +45,22 @@ implementations.
You can also change the name of the backend when configuring it. This is You can also change the name of the backend when configuring it. This is
convienient if you want to have a different backend with different convienient if you want to have a different backend with different
configurations. For instance, to create an xlib and and xdps backend, configurations. For instance, to create an xlib and and art backend,
you could do this: you could do this:
@example @example
configure --enable-xlib --with-name=xlib configure --enable-graphics=xlib --with-name=xlib
make install make install
make distclean make distclean
configure --enable-xdps --with-name=xdps configure --enable-graphics=art --with-name=art
make install make install
@end example @end example
Before running an application, choose one backend using the defaults program: Before running an application, choose one backend using the defaults program:
@example @example
defaults write NSGlobalDomain GSBackend libgnustep-xdps defaults write NSGlobalDomain GSBackend libgnustep-xlib
@end example @end example
@node Compilation, Installing, Configuration, Top @node Compilation, Installing, Configuration, Top

View file

@ -9,12 +9,16 @@
@section Noteworthy changes in version @samp{0.8.3} @section Noteworthy changes in version @samp{0.8.3}
See the gnustep-gui NEWS for changes. Text system improvements. See the gnustep-gui NEWS for changes.
@c ==================================================================== @c ====================================================================
@c Keep the next line just below the list of changes in most recent version. @c Keep the next line just below the list of changes in most recent version.
@ifclear ANNOUNCE-ONLY @ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{0.8.3}
See the gnustep-gui NEWS for changes.
@section Noteworthy changes in version @samp{0.8.2} @section Noteworthy changes in version @samp{0.8.2}
Improved font handling in art backend. Improved compositing with Improved font handling in art backend. Improved compositing with

View file

@ -4,7 +4,7 @@
# The version number of this release. # The version number of this release.
GNUSTEP_BACK_MAJOR_VERSION=0 GNUSTEP_BACK_MAJOR_VERSION=0
GNUSTEP_BACK_MINOR_VERSION=8 GNUSTEP_BACK_MINOR_VERSION=8
GNUSTEP_BACK_SUBMINOR_VERSION=3 GNUSTEP_BACK_SUBMINOR_VERSION=4
GNUSTEP_BACK_VERSION=${GNUSTEP_BACK_MAJOR_VERSION}.${GNUSTEP_BACK_MINOR_VERSION}.${GNUSTEP_BACK_SUBMINOR_VERSION} GNUSTEP_BACK_VERSION=${GNUSTEP_BACK_MAJOR_VERSION}.${GNUSTEP_BACK_MINOR_VERSION}.${GNUSTEP_BACK_SUBMINOR_VERSION}
VERSION=${GNUSTEP_BACK_VERSION} VERSION=${GNUSTEP_BACK_VERSION}