mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-12 09:01:05 +00:00
Version 1.11.1
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21724 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1c3d59ee22
commit
b7f14d9d72
6 changed files with 59 additions and 19 deletions
25
ANNOUNCE
25
ANNOUNCE
|
@ -1,7 +1,7 @@
|
||||||
Announcement
|
Announcement
|
||||||
************
|
************
|
||||||
|
|
||||||
The GNUstep Base Library, version 1.11.0, is now available.
|
The GNUstep Base Library, version 1.11.1, is now available.
|
||||||
|
|
||||||
What is the GNUstep Base Library?
|
What is the GNUstep Base Library?
|
||||||
=================================
|
=================================
|
||||||
|
@ -18,29 +18,22 @@ portion of the OpenStep standard (the Foundation library).
|
||||||
There is more information available at the GNUstep homepage at
|
There is more information available at the GNUstep homepage at
|
||||||
`http://www.gnustep.org'.
|
`http://www.gnustep.org'.
|
||||||
|
|
||||||
Noteworthy changes in version `1.11.0'
|
Noteworthy changes in version `1.11.1'
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
This release is binary incompatible with previous releases. The
|
* New Cocoa class NSSortDescriptor
|
||||||
interface version of the library has changed so that apps, tools and
|
|
||||||
libraries that use the base library need to be recompiled to use this
|
|
||||||
new version.
|
|
||||||
|
|
||||||
* Window's path handling has changed to use native paths throughout.
|
* NSStringFrom... functions now output strings that can be read by
|
||||||
|
old OpenStep implementations (but can also still be read by
|
||||||
|
GNUstep and MacOSX).
|
||||||
|
|
||||||
* Startup/configuration of the libraries no longer requires
|
* More support for debugging on mingw, including writing logs to
|
||||||
environement variables.
|
debugger and event viewer.
|
||||||
|
|
||||||
* Character sets are included in the library rather than being read
|
|
||||||
from data files.
|
|
||||||
|
|
||||||
* NSRunLoop and related classes use natvie win32 event handling on
|
|
||||||
Windows machines.
|
|
||||||
|
|
||||||
Where can you get it? How can you compile it?
|
Where can you get it? How can you compile it?
|
||||||
==============================================
|
==============================================
|
||||||
|
|
||||||
The gnustep-base-1.11.0.tar.gz distribution file has been placed at
|
The gnustep-base-1.11.1.tar.gz distribution file has been placed at
|
||||||
<ftp://ftp.gnustep.org/pub/gnustep/core>.
|
<ftp://ftp.gnustep.org/pub/gnustep/core>.
|
||||||
|
|
||||||
Please log bug reports on the GNUstep project page
|
Please log bug reports on the GNUstep project page
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2005-09-18 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* Version 1.11.1
|
||||||
|
|
||||||
2005-09-17 Saso Kiselkov <diablos@manga.sk>
|
2005-09-17 Saso Kiselkov <diablos@manga.sk>
|
||||||
|
|
||||||
* Headers/Foundation/NSInvocation.h:
|
* Headers/Foundation/NSInvocation.h:
|
||||||
|
|
|
@ -24,6 +24,25 @@ notice and this notice are preserved.
|
||||||
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 1.11.1</heading>
|
||||||
|
<deflist>
|
||||||
|
<term>NSSortDescriptor</term>
|
||||||
|
<desc>
|
||||||
|
New class.
|
||||||
|
<term>NSStringFromPoint, NSStringFromRect, NSStringFromSize</term>
|
||||||
|
<desc>
|
||||||
|
Functions now output strings that can be read by old
|
||||||
|
OpenStep implementations (but can also still be read by GNUstep and
|
||||||
|
MacOSX).
|
||||||
|
</desc>
|
||||||
|
<term>Debugging support</term>
|
||||||
|
<desc>
|
||||||
|
More support for debugging on mingw, including writing logs to
|
||||||
|
debugger and event viewer.
|
||||||
|
</desc>
|
||||||
|
</deflist>
|
||||||
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<heading>Version 1.11.0</heading>
|
<heading>Version 1.11.0</heading>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -11,6 +11,19 @@ The currently released version of the library is
|
||||||
See the @url{ReleaseNotes.html} document for more information.
|
See the @url{ReleaseNotes.html} document for more information.
|
||||||
@end ifclear
|
@end ifclear
|
||||||
|
|
||||||
|
@section Noteworthy changes in version @samp{1.11.1}
|
||||||
|
|
||||||
|
@itemize @bullet
|
||||||
|
@item New Cocoa class NSSortDescriptor
|
||||||
|
@item NSStringFrom... functions now output strings that can
|
||||||
|
be read by old OpenStep implementations (but can also still be read
|
||||||
|
by GNUstep and MacOSX).
|
||||||
|
@item More support for debugging on mingw, including writing logs to
|
||||||
|
debugger and event viewer.
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
@ifclear ANNOUNCE-ONLY
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{1.11.0}
|
@section Noteworthy changes in version @samp{1.11.0}
|
||||||
|
|
||||||
This release is binary incompatible with previous releases.
|
This release is binary incompatible with previous releases.
|
||||||
|
@ -27,7 +40,6 @@ data files.
|
||||||
@item NSRunLoop and related classes use natvie win32 event handling on
|
@item NSRunLoop and related classes use natvie win32 event handling on
|
||||||
Windows machines.
|
Windows machines.
|
||||||
@end itemize
|
@end itemize
|
||||||
@ifclear ANNOUNCE-ONLY
|
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{1.10.3}
|
@section Noteworthy changes in version @samp{1.10.3}
|
||||||
|
|
||||||
|
|
14
NEWS
14
NEWS
|
@ -1,10 +1,22 @@
|
||||||
News
|
News
|
||||||
****
|
****
|
||||||
|
|
||||||
The currently released version of the library is `1.11.0'.
|
The currently released version of the library is `1.11.1'.
|
||||||
|
|
||||||
See the <ReleaseNotes.html> document for more information.
|
See the <ReleaseNotes.html> document for more information.
|
||||||
|
|
||||||
|
Noteworthy changes in version `1.11.1'
|
||||||
|
======================================
|
||||||
|
|
||||||
|
* New Cocoa class NSSortDescriptor
|
||||||
|
|
||||||
|
* NSStringFrom... functions now output strings that can be read by
|
||||||
|
old OpenStep implementations (but can also still be read by
|
||||||
|
GNUstep and MacOSX).
|
||||||
|
|
||||||
|
* More support for debugging on mingw, including writing logs to
|
||||||
|
debugger and event viewer.
|
||||||
|
|
||||||
Noteworthy changes in version `1.11.0'
|
Noteworthy changes in version `1.11.0'
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
|
|
2
Version
2
Version
|
@ -7,7 +7,7 @@ GCC_VERSION=2.8.0
|
||||||
# The version number of this release.
|
# The version number of this release.
|
||||||
MAJOR_VERSION=1
|
MAJOR_VERSION=1
|
||||||
MINOR_VERSION=11
|
MINOR_VERSION=11
|
||||||
SUBMINOR_VERSION=0
|
SUBMINOR_VERSION=1
|
||||||
# numeric value should match above
|
# numeric value should match above
|
||||||
VERSION_NUMBER=111.0
|
VERSION_NUMBER=111.0
|
||||||
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||||
|
|
Loading…
Reference in a new issue