Version 0.7.5

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19094 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-04-14 02:04:38 +00:00
parent 2d45fa3a29
commit 6a8650818a
5 changed files with 57 additions and 13 deletions

View file

@ -1,7 +1,7 @@
ANNOUNCE
********
This is version 0.6.0 of Gorm.
This is version 0.7.5 of Gorm.
What is Gorm?
=============
@ -12,16 +12,26 @@ perhaps GNUstep Object Relationship Modeler).
Gorm is a clone of the NeXTstep `Interface Builder' application for
GNUstep.
Noteworthy changes in version `0.6.0'
Noteworthy changes in version `0.7.5'
=====================================
* Several major bugs corrected.
* The 'reparent' feature in the class inspector. This allows the
user to change the class hierarchy from within Gorm.
* Clarified some of the inspectors
* Some important bugfixes
* Menu items are now properly enabled/disabled when appropriate
* a property 'GormRepairFileOnLoad' (untested) which should repaire
old .gorm files... It is HIGHLY recommended that Gorm not be run
with this on constantly and that you back up any files which you
want to repair before opening them with this option turned on.
* More descriptive title displayed when a class is being edited.
* A shelf inspector in prefs that lets you expand the size of the
names in the object view..
* Support for NSFontManager
* A way to restore a complete NSMenu if it's deleted (a new palette
entry for NSMenu, not just an item)
How can I get support for this software?
========================================

View file

@ -1,3 +1,7 @@
2004-04-13 20:57 Gregory John Casamento <greg_casamento@yahoo.com>
* Version 0.7.5
2004-04-11 21:26 Gregory John Casamento <greg_casamento@yahoo.com>
* GormBoxEditor.m: Cleaned up warnings.
@ -12,7 +16,8 @@
* Palettes/4Data/inspectors.m: same..
* Palettes/4Data/main.m: same..
* GormViewKnobs.m: Added reference to new header...
* GormViewKnobs.h: New header which declares the knob related functions.
* GormViewKnobs.h: New header which declares the knob
related functions.
2004-04-06 20:16 Gregory John Casamento <greg_casamento@yahoo.com>

View file

@ -3,7 +3,18 @@
@ifset TEXT-ONLY
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{0.7.5}
@itemize @bullet
@item The 'reparent' feature in the class inspector. This allows the user to change the class hierarchy from within Gorm.
@item Some important bugfixes
@item a property 'GormRepairFileOnLoad' (untested) which should repaire old .gorm files... It is HIGHLY recommended that Gorm not be run with this on constantly and that you back up any files which you want to repair before opening them with this option turned on.
@item A shelf inspector in prefs that lets you expand the size of the names in the object view..
@item Support for NSFontManager
@item A way to restore a complete NSMenu if it's deleted (a new palette entry for NSMenu, not just an item)
@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{0.6.0}
@itemize @bullet
@ -12,9 +23,6 @@
@item Menu items are now properly enabled/disabled when appropriate
@item More descriptive title displayed when a class is being edited.
@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{0.5.0}

21
NEWS
View file

@ -1,3 +1,24 @@
Noteworthy changes in version `0.7.5'
=====================================
* The 'reparent' feature in the class inspector. This allows the
user to change the class hierarchy from within Gorm.
* Some important bugfixes
* a property 'GormRepairFileOnLoad' (untested) which should repaire
old .gorm files... It is HIGHLY recommended that Gorm not be run
with this on constantly and that you back up any files which you
want to repair before opening them with this option turned on.
* A shelf inspector in prefs that lets you expand the size of the
names in the object view..
* Support for NSFontManager
* A way to restore a complete NSMenu if it's deleted (a new palette
entry for NSMenu, not just an item)
Noteworthy changes in version `0.6.0'
=====================================

View file

@ -9,6 +9,6 @@ GNUSTEP_CORE_VERSION=0.9.1
# The version number of this release.
MAJOR_VERSION=0
MINOR_VERSION=6
SUBMINOR_VERSION=0
MINOR_VERSION=7
SUBMINOR_VERSION=5
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}