Version 1.0.1

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10033 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2001-05-29 19:42:39 +00:00
parent addfee023b
commit 9fd514e6d4
8 changed files with 69 additions and 6 deletions

View file

@ -1,7 +1,7 @@
Announcement
************
The GNUstep Base Library, version 1.0.0, is now available.
The GNUstep Base Library, version 1.0.1, is now available.
What is the GNUstep Base Library?
=================================
@ -22,7 +22,7 @@ portion of the OpenStep standard (the Foundation library).
Where can you get it? How can you compile it?
==============================================
The gstepbase-1.0.0.tar.gz distribution file has been placed on
The gnustep-base-1.0.1.tar.gz distribution file has been placed on
`ftp.gnustep.org' in `pub/gnustep/core'.
The library requires gcc 2.8.0 or higher. See the `GNUstep-HOWTO'

View file

@ -1,3 +1,10 @@
2001-05-29 Adam Fedor <fedor@gnu.org>
* Version: 1.0.1
* Resources/Languages/Dutch: New file (from Dennis Leeuw
<dleeuw@made-it.com>).
2001-05-28 Adam Fedor <fedor@gnu.org>
* Headers/gnustep/base/objc-gnu2next.h (class_is_class): New.

View file

@ -29,7 +29,7 @@ distribution.
@section Where can you get it? How can you compile it?
@ifset GNUSTEP-BASE-FTP-MACHINE
The gstepbase-@value{GNUSTEP-BASE-VERSION}.tar.gz distribution file has
The gnustep-base-@value{GNUSTEP-BASE-VERSION}.tar.gz distribution file has
been placed on @samp{@value{GNUSTEP-BASE-FTP-MACHINE}} in
@samp{@value{GNUSTEP-BASE-FTP-DIRECTORY}}.
@end ifset

View file

@ -9,7 +9,11 @@ GNUstep-HOWTO is located in the gnustep-make package or at
If you are installing the GNUstep libraries individually, make sure
you have installed the GNUstep Makefile package (gnustep-make) already.
When you configure this library, make sure you use the same
In addition you should probably install an Objective-C library
(gnustep-objc), as well some other libraries (notable ffcall). See the
GNUstep-HOWTO for more information.
When you configure this library, make sure you use the same
configuration options as with gstep-make. Some additional options to
configure are described below.

18
NEWS
View file

@ -1,7 +1,23 @@
News
****
The currently released version of the library is `1.0.0'.
The currently released version of the library is `1.0.1'.
Noteworthy changes in version `1.0.1'
=====================================
* Many fixes to work better with Darwin (still not there).
* Fixes to work with BSD Unix
* Added some missing methods, better conformance to MacOSX Docs.
* Added support for invoking super implementation (mostly for
writting bridges from other languages).
* Works better with gcc 3.x, newer kernels.
* More memory debugging support.
Noteworthy changes in version `1.0.0'
=====================================

View file

@ -32,6 +32,7 @@ resourcedir = $(GNUSTEP_RESOURCES)
languagedir = $(GNUSTEP_RESOURCES)/Languages
LANGUAGES = \
Languages/Dutch \
Languages/English \
Languages/French \
Languages/German \

35
Resources/Languages/Dutch Normal file
View file

@ -0,0 +1,35 @@
/* Dutch */
{
NSLanguageName = "Dutch";
NSLanguageCode = NL;
NSFormalName = "Dutch";
NSCurrencySymbol = "fl";
NSPositiveCurrencyFormatString = "fl9.999,00";
NSNegativeCurrencyFormatString = "fl-9.999,00";
NSInternationalCurrencyString = "NFL";
NSDecimalDigits = ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9");
NSDecimalSeparator = ",";
NSThousandsSeparator = ".";
NSAMPMDesignation = (AM, PM);
NSDateFormatString = "%A, %B %d, %Y";
NSDateTimeOrdering = DMYH;
NSEarlierTimeDesignations = (voor, vorig, over, geleden);
NSHourNameDesignations = ((0, middernacht), (12, middag), (10, ochtend), (14, middag), (19, avond));
NSLaterTimeDesignations = (later);
NSMonthNameArray = (januari, februari, maart, april, mei, juni, juli, augustus, september, oktober, november, december);
NSNextDayDesignations = (morgen);
NSNextNextDayDesignations = ("volgende dag");
NSPriorDayDesignations = (gisteren);
NSShortDateFormatString = "%d-%m-%Y";
NSShortMonthNameArray = (jan, feb, mar, apr, mei, jun, jul, aug, sept, oct, nov, dec);
NSShortTimeDateFormatString = "%d %b %Y %H:%M";
NSShortWeekDayNameArray = (zo, ma, di, wo, do, vrij, zat);
NSThisDayDesignations = (vandaag);
NSTimeDateFormatString = "%a %d %b %Y %H:%M:%S %Z";
NSTimeFormatString = "%H:%M:%S";
NSWeekDayNameArray = (zondag, maandag, dinsdag, woensdag, donderdag, vrijdag, zaterdag);
NSYearMonthWeekDesignations = (jaar, maand, week);
}

View file

@ -7,7 +7,7 @@ GCC_VERSION=2.8.0
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=0
SUBMINOR_VERSION=0
SUBMINOR_VERSION=1
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}