mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-12 00:51:08 +00:00
Version 1.5.1
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15029 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d125f315c2
commit
5c7d014b55
6 changed files with 60 additions and 18 deletions
22
ANNOUNCE
22
ANNOUNCE
|
@ -1,7 +1,7 @@
|
||||||
Announcement
|
Announcement
|
||||||
************
|
************
|
||||||
|
|
||||||
The GNUstep Base Library, version 1.5.0, is now available.
|
The GNUstep Base Library, version 1.5.1, is now available.
|
||||||
|
|
||||||
What is the GNUstep Base Library?
|
What is the GNUstep Base Library?
|
||||||
=================================
|
=================================
|
||||||
|
@ -19,19 +19,29 @@ 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.5.0'
|
Noteworthy changes in version `1.5.1'
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
* New MacOSX methods implemented (NSString, NSArray, NSObject)
|
* Port NSThread to MingW
|
||||||
|
|
||||||
* Fixed bug that occationally deleted user defaults.
|
* Better framework support in NSBundle
|
||||||
|
|
||||||
* Tcp connections use runloop in NSConnectionReplyMode.
|
* Added Thai string encodings.
|
||||||
|
|
||||||
|
* New makeImmutableCopyOnFail: method.
|
||||||
|
|
||||||
|
* Lots of autogsdoc improvements, Updated gsdoc DTD to 1.0 version.
|
||||||
|
|
||||||
|
* Added GSPrintf for logging to stdout.
|
||||||
|
|
||||||
|
* Warning logs selectable at runtime.
|
||||||
|
|
||||||
|
* NSTimeZone code rewritten for speed.
|
||||||
|
|
||||||
Where can you get it? How can you compile it?
|
Where can you get it? How can you compile it?
|
||||||
==============================================
|
==============================================
|
||||||
|
|
||||||
The gnustep-base-1.5.0.tar.gz distribution file has been placed on
|
The gnustep-base-1.5.1.tar.gz distribution file has been placed on
|
||||||
`ftp.gnustep.org' in `pub/gnustep/core'.
|
`ftp.gnustep.org' in `pub/gnustep/core'.
|
||||||
|
|
||||||
The library requires gcc 2.8.0 or higher. See the `GNUstep-HOWTO'
|
The library requires gcc 2.8.0 or higher. See the `GNUstep-HOWTO'
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2002-11-19 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* Version: 1.5.1
|
||||||
|
* Documentation/news.texi: Updated.
|
||||||
|
|
||||||
2002-11-19 Adam Fedor <fedor@gnu.org>
|
2002-11-19 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* Headers/gnustep/base/NSBundle.h: More documentation. Add missing
|
* Headers/gnustep/base/NSBundle.h: More documentation. Add missing
|
||||||
|
|
|
@ -9,6 +9,21 @@ The currently released version of the library is
|
||||||
@samp{@value{GNUSTEP-BASE-VERSION}}.
|
@samp{@value{GNUSTEP-BASE-VERSION}}.
|
||||||
@end ifclear
|
@end ifclear
|
||||||
|
|
||||||
|
@section Noteworthy changes in version @samp{1.5.1}
|
||||||
|
|
||||||
|
@itemize @bullet
|
||||||
|
@item Port NSThread to MingW
|
||||||
|
@item Better framework support in NSBundle
|
||||||
|
@item Added Thai string encodings.
|
||||||
|
@item New makeImmutableCopyOnFail: method.
|
||||||
|
@item Lots of autogsdoc improvements, Updated gsdoc DTD to 1.0 version.
|
||||||
|
@item Added GSPrintf for logging to stdout.
|
||||||
|
@item Warning logs selectable at runtime.
|
||||||
|
@item NSTimeZone code rewritten for speed.
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
@ifclear ANNOUNCE-ONLY
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{1.5.0}
|
@section Noteworthy changes in version @samp{1.5.0}
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
@ -17,10 +32,6 @@ The currently released version of the library is
|
||||||
@item Tcp connections use runloop in NSConnectionReplyMode.
|
@item Tcp connections use runloop in NSConnectionReplyMode.
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
@c ====================================================================
|
|
||||||
@c Keep the next line just below the list of changes in most recent version.
|
|
||||||
@ifclear ANNOUNCE-ONLY
|
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{1.4.0}
|
@section Noteworthy changes in version @samp{1.4.0}
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
|
|
@ -43,7 +43,7 @@ GS_EXPORT NSString* NSLoadedClasses;
|
||||||
<p>
|
<p>
|
||||||
NSBundle provides methods for locating and handling application (and tool)
|
NSBundle provides methods for locating and handling application (and tool)
|
||||||
resources at runtime. Resources includes any time of file that the
|
resources at runtime. Resources includes any time of file that the
|
||||||
application might need, such as images, nim (gorm or gmodel) files,
|
application might need, such as images, nib (gorm or gmodel) files,
|
||||||
localization files, and any other type of file that an application
|
localization files, and any other type of file that an application
|
||||||
might need to use to function. Resources also include executable
|
might need to use to function. Resources also include executable
|
||||||
code, which can be dynamically linked into the application at
|
code, which can be dynamically linked into the application at
|
||||||
|
@ -58,8 +58,9 @@ GS_EXPORT NSString* NSLoadedClasses;
|
||||||
basically a bundle that contains a library archive. The
|
basically a bundle that contains a library archive. The
|
||||||
organization of a framework is a little difference, but in most
|
organization of a framework is a little difference, but in most
|
||||||
respects there is no difference between a bundle and a framework.
|
respects there is no difference between a bundle and a framework.
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
These is one special bundle, called the mainBundle, which is
|
There is one special bundle, called the mainBundle, which is
|
||||||
basically the application itself. The mainBundle is always loaded
|
basically the application itself. The mainBundle is always loaded
|
||||||
(of course), but you can still perform other operations on the
|
(of course), but you can still perform other operations on the
|
||||||
mainBundle, such as searching for files, just as with any other
|
mainBundle, such as searching for files, just as with any other
|
||||||
|
@ -205,10 +206,6 @@ GS_EXPORT NSString* NSLoadedClasses;
|
||||||
If ext is nil or empty, then the first file with name and any
|
If ext is nil or empty, then the first file with name and any
|
||||||
extension is returned.
|
extension is returned.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
|
||||||
Use of the version argument is depreciated. Specifiying a version
|
|
||||||
doesn't do anything useful.
|
|
||||||
</p>
|
|
||||||
*/
|
*/
|
||||||
- (NSString*) pathForResource: (NSString*)name
|
- (NSString*) pathForResource: (NSString*)name
|
||||||
ofType: (NSString*)ext
|
ofType: (NSString*)ext
|
||||||
|
|
21
NEWS
21
NEWS
|
@ -1,7 +1,26 @@
|
||||||
News
|
News
|
||||||
****
|
****
|
||||||
|
|
||||||
The currently released version of the library is `1.5.0'.
|
The currently released version of the library is `1.5.1'.
|
||||||
|
|
||||||
|
Noteworthy changes in version `1.5.1'
|
||||||
|
=====================================
|
||||||
|
|
||||||
|
* Port NSThread to MingW
|
||||||
|
|
||||||
|
* Better framework support in NSBundle
|
||||||
|
|
||||||
|
* Added Thai string encodings.
|
||||||
|
|
||||||
|
* New makeImmutableCopyOnFail: method.
|
||||||
|
|
||||||
|
* Lots of autogsdoc improvements, Updated gsdoc DTD to 1.0 version.
|
||||||
|
|
||||||
|
* Added GSPrintf for logging to stdout.
|
||||||
|
|
||||||
|
* Warning logs selectable at runtime.
|
||||||
|
|
||||||
|
* NSTimeZone code rewritten for speed.
|
||||||
|
|
||||||
Noteworthy changes in version `1.5.0'
|
Noteworthy changes in version `1.5.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=5
|
MINOR_VERSION=5
|
||||||
SUBMINOR_VERSION=0
|
SUBMINOR_VERSION=1
|
||||||
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||||
VERSION=${GNUSTEP_BASE_VERSION}
|
VERSION=${GNUSTEP_BASE_VERSION}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue