mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 20:00:48 +00:00
Versino 0.10.3
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22662 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
91d50a97af
commit
0906950564
5 changed files with 37 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2006-03-13 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* Version 0.10.3
|
||||||
|
|
||||||
2006-03-12 Fred Kiefer <FredKiefer@gmx.de>
|
2006-03-12 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/GNUmakefile:
|
* Source/GNUmakefile:
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<email address="fedor@gnu.org"/>
|
<email address="fedor@gnu.org"/>
|
||||||
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
|
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
|
||||||
</author>
|
</author>
|
||||||
<version>$Revision$</version>
|
<version>$Revision: 22201 $</version>
|
||||||
<date>$Date$</date>
|
<date>$Date$</date>
|
||||||
<copy>2005 Free Software Foundation, Inc.</copy>
|
<copy>2005 Free Software Foundation, Inc.</copy>
|
||||||
</head>
|
</head>
|
||||||
|
@ -19,6 +19,24 @@
|
||||||
changes and other information that might help developers and users
|
changes and other information that might help developers and users
|
||||||
migrate to using a newer version of the library.
|
migrate to using a newer version of the library.
|
||||||
</p>
|
</p>
|
||||||
|
<section>
|
||||||
|
<heading>Version 0.10.3</heading>
|
||||||
|
<deflist>
|
||||||
|
<term>Horizontal menus</term>
|
||||||
|
<desc>
|
||||||
|
Horizontal (mac)-style menus should now work. Horizontal
|
||||||
|
menus are activated by setting the 'NSMenuInterfaceStyle' user
|
||||||
|
default to 'NSMacintoshInterfaceStyle'.
|
||||||
|
</desc>
|
||||||
|
<term>Active applications</term>
|
||||||
|
<desc>
|
||||||
|
Better support for tracking active applications was
|
||||||
|
added. Normally a workspace manager should handle this,
|
||||||
|
but the GUI library can handle it on its own if it is not
|
||||||
|
handled any other way.
|
||||||
|
</desc>
|
||||||
|
</deflist>
|
||||||
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<heading>Version 0.10.2</heading>
|
<heading>Version 0.10.2</heading>
|
||||||
<deflist>
|
<deflist>
|
||||||
|
|
|
@ -9,12 +9,19 @@
|
||||||
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.10.3}
|
||||||
|
|
||||||
|
@itemize @bullet
|
||||||
|
@item Horizontal menus now work
|
||||||
|
@item Better support for tracking active applications.
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
@ifclear ANNOUNCE-ONLY
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{0.10.2}
|
@section Noteworthy changes in version @samp{0.10.2}
|
||||||
|
|
||||||
Mostly bug fixes.
|
Mostly bug fixes.
|
||||||
|
|
||||||
@ifclear ANNOUNCE-ONLY
|
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{0.10.1}
|
@section Noteworthy changes in version @samp{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
|
||||||
|
|
|
@ -32,6 +32,9 @@ RPM_DISABLE_RELOCATABLE=YES
|
||||||
PACKAGE_NEEDS_CONFIGURE = YES
|
PACKAGE_NEEDS_CONFIGURE = YES
|
||||||
|
|
||||||
CVS_MODULE_NAME = gui
|
CVS_MODULE_NAME = gui
|
||||||
|
SVN_MODULE_NAME = gui
|
||||||
|
SVN_BASE_URL = svn+ssh://svn.gna.org/svn/gnustep/libs
|
||||||
|
|
||||||
|
|
||||||
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=gui.make
|
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=gui.make
|
||||||
include $(GNUSTEP_MAKEFILES)/common.make
|
include $(GNUSTEP_MAKEFILES)/common.make
|
||||||
|
|
4
Version
4
Version
|
@ -11,9 +11,9 @@ 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=10
|
GNUSTEP_GUI_MINOR_VERSION=10
|
||||||
GNUSTEP_GUI_SUBMINOR_VERSION=2
|
GNUSTEP_GUI_SUBMINOR_VERSION=3
|
||||||
# numeric value should match above
|
# numeric value should match above
|
||||||
VERSION_NUMBER=010.2
|
VERSION_NUMBER=010.3
|
||||||
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}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue