Version 1.11.2

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22198 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2005-12-21 18:57:22 +00:00
parent 6ad1e1ba6e
commit 2eab009ff9
6 changed files with 87 additions and 18 deletions

View file

@ -1,7 +1,7 @@
Announcement
************
The GNUstep Base Library, version 1.11.1, is now available.
The GNUstep Base Library, version 1.11.2, is now available.
What is the GNUstep Base Library?
=================================
@ -18,22 +18,27 @@ portion of the OpenStep standard (the Foundation library).
There is more information available at the GNUstep homepage at
`http://www.gnustep.org'.
Noteworthy changes in version `1.11.1'
Noteworthy changes in version `1.11.2'
======================================
* New Cocoa class NSSortDescriptor
* Support for GNUstep.conf and relocation of the filesystem is much
improved in this release.
* NSStringFrom... functions now output strings that can be read by
old OpenStep implementations (but can also still be read by
GNUstep and MacOSX).
* The WM_QUIT message is now intercepted to allow an application to
terminate cleanly.
* More support for debugging on mingw, including writing logs to
debugger and event viewer.
* NSMessagePort was implemented on Windows platforms.
* Deprecated support for system-wide GNUsteprc files has been
removed.
* Some support for keeping user defaults in the Windows registry
implemented.
Where can you get it? How can you compile it?
==============================================
The gnustep-base-1.11.1.tar.gz distribution file has been placed at
The gnustep-base-1.11.2.tar.gz distribution file has been placed at
<ftp://ftp.gnustep.org/pub/gnustep/core>.
Please log bug reports on the GNUstep project page

View file

@ -1,3 +1,7 @@
2005-12-21 Adam Fedor <fedor@gnu.org>
* Version 1.11.2
2005-12-21 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/AGSHtml.m: Partial update for use of CSS ... as provided by
@ -153,7 +157,7 @@
if the NSApplication class is not linked). Should allow ms-windows
to get a mingw32-based GNUstep app to shut down cleanly.
* Source/NSDistributedNotificationCenter.m: Rewrite code for connecting
to and starting up daemon to ahndle the process more quickly and
to and starting up daemon to handle the process more quickly and
smoothly. Only complain if we can't to connect to it even after
launching it and retrying the connection for five seconds.
@ -161,7 +165,7 @@
* Source/NSProcessInfo.m:
* Source/NSUserDefaults.m:
Restore revertyed changes for code where class initialisation order
Restore reverted changes for code where class initialisation order
is not a factor.
* Source/NSUser.m: Delete unused file
* GNUmakefile: Don't try to build NSUser.m
@ -689,7 +693,7 @@
2005-09-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSMime.m: (-convertToBinary, -convertToBase64)
new convenience methods for making documents comapct or 7bit safe.
new convenience methods for making documents compact or 7bit safe.
2005-09-25 David Ayers <d.ayers@inode.at>

View file

@ -24,6 +24,36 @@ notice and this notice are preserved.
changes and other information that might help developers and users
migrate to using a newer version of the library.
</p>
<section>
<heading>Version 1.11.2</heading>
<deflist>
<term>GNUstep.conf and relocation</term>
<desc>
Support for GNUstep.conf and relocation of the filesystem is
much improved in this release.
</desc>
<term>Windows platform</term>
<desc>
The WM_QUIT message is now intercepted to allow an application to
terminate cleanly.
</desc>
<term>NSMessagePort - Windows platform</term>
<desc>
NSMessagePort was implemented on Windows platforms.
</desc>
<term>NSOpenStepRootDirectory</term>
<desc>
This function has been un-deprecated, and the documentation
clarified so it is easier to understand what it does and does
not do.
</desc>
<term>GNUsteprc</term>
<desc>
Deprecated support for system-wide GNUsteprc files has
been removed.
</desc>
</deflist>
</section>
<section>
<heading>Version 1.11.1</heading>
<deflist>

View file

@ -11,6 +11,21 @@ The currently released version of the library is
See the @url{ReleaseNotes.html} document for more information.
@end ifclear
@section Noteworthy changes in version @samp{1.11.2}
@itemize @bullet
@item Support for GNUstep.conf and relocation of the filesystem is
much improved in this release.
@item The WM_QUIT message is now intercepted to allow an application to
terminate cleanly.
@item NSMessagePort was implemented on Windows platforms.
@item Deprecated support for system-wide GNUsteprc files has been removed.
@item Some support for keeping user defaults in the Windows registry
implemented.
@end itemize
@ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{1.11.1}
@itemize @bullet
@ -22,8 +37,6 @@ by GNUstep and MacOSX).
debugger and event viewer.
@end itemize
@ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{1.11.0}
This release is binary incompatible with previous releases.

19
NEWS
View file

@ -1,10 +1,27 @@
News
****
The currently released version of the library is `1.11.1'.
The currently released version of the library is `1.11.2'.
See the <ReleaseNotes.html> document for more information.
Noteworthy changes in version `1.11.2'
======================================
* Support for GNUstep.conf and relocation of the filesystem is much
improved in this release.
* The WM_QUIT message is now intercepted to allow an application to
terminate cleanly.
* NSMessagePort was implemented on Windows platforms.
* Deprecated support for system-wide GNUsteprc files has been
removed.
* Some support for keeping user defaults in the Windows registry
implemented.
Noteworthy changes in version `1.11.1'
======================================

View file

@ -2,14 +2,14 @@
# Compatible with Bourne shell syntax, so it can included there too.
# The gcc version required to compile the library.
GCC_VERSION=2.8.0
GCC_VERSION=2.9.5
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=11
SUBMINOR_VERSION=1
SUBMINOR_VERSION=2
# numeric value should match above
VERSION_NUMBER=111.1
VERSION_NUMBER=111.2
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}