Version 0.7.5

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@12287 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-01-30 17:24:48 +00:00
parent 69a9e0dea5
commit b802d60821
9 changed files with 84 additions and 37 deletions

View file

@ -1,7 +1,7 @@
ANNOUNCE
********
This is version 0.7.0 of the GNUstep GUI library (`gnustep-gui').
This is version 0.7.5 of the GNUstep GUI library (`gnustep-gui').
What is the GNUstep GUI Library?
================================
@ -28,26 +28,36 @@ systems.
GNUstep Base Library, the TIFF Graphics library, and a back-end
component like the GNUstep X/DPS GUI Backend.
What's new in this release?
===========================
The currently released version of the library is `0.7.0'.
Noteworthy changes in version `0.7.0'
Noteworthy changes in version `0.7.5'
=====================================
* Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo
boxes.
* Drag and drop and image sliding much improved.
* NSTextAttachement implemented, many other text improvements.
* Better handling of remote startup/display.
* Fonts cached in the frontend.
* Some localization.
* Changes so that backend can be loaded as a bundle at runtime.
* Keybinding support.
* simpler, faster compilation and installation.
* Text handling improvements.
* NSColorWell works.
* New gopen command (like MacOSX open command).
* Implemented simple pagination and printing of views.
* Support for rulers.
* Spell checking support.
* Blinking insertion point.
* New NSStepper class.
* Implemented NSOutlineView, NSSelection, NSInputManager.
* Near rewrite of Menu handling code.
* Gmodel code compiled as a separate bundle.
How can I get support for this software?
========================================
@ -61,7 +71,7 @@ the GNUstep Web Pages for more information regarding GNUstep resources
Where can you get it? How can you compile it?
==============================================
The gstep-gui-0.7.0.tar.gz distribution file has been placed on
The gstep-gui-0.7.5.tar.gz distribution file has been placed on
`ftp.gnustep.org' in `pub/gnustep/core'.
The program requires gcc 2.8.0 or higher.
@ -70,14 +80,7 @@ Where can you get it? How can you compile it?
It also requires a FoundationKit library as specified by the OpenStep
specification. The FoundationKit libraries known to work are the
GNUstep Base Library version `1.0.2'.
The `.tar' file is compressed with GNU gzip. Gzip can be obtained by
anonymous ftp at any of the GNU archive sites.
For info about FTP via email, send email to <ftpmail@decwrl.dec.com>
with no subject line, and two-line body with line one `help' and line
two `quit'.
GNUstep Base Library.
Where do I send bug reports?
============================

14
BUGS
View file

@ -19,11 +19,17 @@ Bugs in the GUI library
The following classes are currently unimplemented or unfinished to
such a degree to be unusable.
* NSDataLink
* NSDataLink, NSDataLinkManager, NSDataLinkPanel
* NSHelpPanel
* NSHelpPanel, NSHelpManager
* NSPageLayout
Classses that need work (well every class needs work!)
* NSPrintPanel
* NSComboBox, NSComboBoxCell
* NSProgressIndicator
* All the Text classes
* NSColorPanel

View file

@ -1,3 +1,9 @@
2002-01-30 Adam Fedor <fedor@gnu.org>
* Version: 0.7.5
* Documentation/announce.texi: Update.
* Documentation/news.texi: Likewise.
2002-01-28 Willem Rein Oudshoorn <woudshoo@xs4all.nl>
* gui/Source/NSImage.m ([NSImage -initWithSize:]): round the size down

View file

@ -28,7 +28,6 @@ The GNUstep GUI Library requires the GNU Objective-C compiler, the
GNUstep Base Library, the TIFF Graphics library, and a back-end
component like the GNUstep X/DPS GUI Backend.
@section What's new in this release?
@set ANNOUNCE-ONLY
@include news.texi
@clear ANNOUNCE-ONLY

View file

@ -1,13 +1,13 @@
@c -*-texinfo-*-
@ifclear ANNOUNCE-ONLY
@chapter NEWS
@end ifclear
@ifset TEXT-ONLY
@include version.texi
@end ifset
@ifclear ANNOUNCE-ONLY
@chapter NEWS
The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSION}}.
@end ifclear
@section Noteworthy changes in version @samp{0.7.5}

View file

@ -8,9 +8,11 @@ Introduction
`gnustep-gui'. If you are installing this package as part of the
GNUstep core package, read the file GNUstep-HOWTO for more complete
instructions on how to install the entire GNUstep package (including
this library). GNUstep-HOWTO is located at <www.gnustep.org>
this library). GNUstep-HOWTO is located at <http://www.gnustep.org>
and in the gnustep-make package (which you should install first).
You must have installed gnustep-base before building this library.
You must have installed gnustep-base and gnustep-make before
building this library.
Configuration
=============

33
NEWS
View file

@ -1,7 +1,38 @@
NEWS
****
The currently released version of the library is `0.7.0'.
The currently released version of the library is `0.7.5'.
Noteworthy changes in version `0.7.5'
=====================================
* Drag and drop and image sliding much improved.
* Better handling of remote startup/display.
* Some localization.
* Keybinding support.
* Text handling improvements.
* New gopen command (like MacOSX open command).
* Implemented simple pagination and printing of views.
* Support for rulers.
* Spell checking support.
* Blinking insertion point.
* New NSStepper class.
* Implemented NSOutlineView, NSSelection, NSInputManager.
* Near rewrite of Menu handling code.
* Gmodel code compiled as a separate bundle.
Noteworthy changes in version `0.7.0'
=====================================

2
README
View file

@ -1,7 +1,7 @@
README
******
This is version 0.7.0 of the GNUstep GUI library (`gnustep-gui').
This is version 0.7.5 of the GNUstep GUI library (`gnustep-gui').
Here is some introductory info to get you started:

View file

@ -11,7 +11,7 @@ GNUSTEP_GUI_LIBTIFF=3.4
# The version number of this release.
GNUSTEP_GUI_MAJOR_VERSION=0
GNUSTEP_GUI_MINOR_VERSION=7
GNUSTEP_GUI_SUBMINOR_VERSION=0
GNUSTEP_GUI_SUBMINOR_VERSION=5
GNUSTEP_GUI_VERSION=${GNUSTEP_GUI_MAJOR_VERSION}.${GNUSTEP_GUI_MINOR_VERSION}.${GNUSTEP_GUI_SUBMINOR_VERSION}
VERSION=${GNUSTEP_GUI_VERSION}