Version 0.5.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@18132 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-11-24 04:08:41 +00:00
parent 77ef994fcb
commit b8bac8c77a
6 changed files with 53 additions and 22 deletions

View file

@ -1,7 +1,7 @@
ANNOUNCE
********
This is version 0.4.0 of Gorm.
This is version 0.5.0 of Gorm.
What is Gorm?
=============
@ -12,27 +12,24 @@ perhaps GNUstep Object Relationship Modeler).
Gorm is a clone of the NeXTstep `Interface Builder' application for
GNUstep.
Noteworthy changes in version `0.4.0'
Noteworthy changes in version `0.5.0'
=====================================
* New Menu and Menu Item inspectors.
* Enabled defer in NSWindow inspector.
* User can now specify the Services and Windows menus in the menu
inspector.
* Added code to the connection inspector to prevent erroneous
connections.
* User can specify a non-custom subclass as well as a custom one to
replace the class when the .gorm is unarchived. This can be used
to turn a NSTextField into NSSecureTextField and etc.
* Added support for upgrading of old .gorm files using the older
template mechanism
* New set name panel.
* Grouping with an NSSplitView now operates using the relative
positions of the views in the window.
* New switch control on the font panel to allow the user to specify
if a font is encoded with its default size or not.
* Custom Class inspector now shows all subclasses, not just direct
custom subclasses.
* Added NSStepper and NSStepperCell to the class list to allow
creation of custom subclasses.
* Windows and Services menus now function correctly.
* Bug fixes, eliminated memory leak, code cleanup, etc.
How can I get support for this software?
========================================

View file

@ -1,3 +1,7 @@
2003-11-23 23:00 Gregory John Casamento <greg_casamento@yahoo.com>
* Version 0.5.0
2003-11-23 15:28 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassManager.[hm]: Added method allSubclassesOf: to get all

View file

@ -4,6 +4,19 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{0.5.0}
@itemize @bullet
@item Enabled defer in NSWindow inspector.
@item Added code to the connection inspector to prevent erroneous connections.
@item Added support for upgrading of old .gorm files using the older template mechanism
@item Grouping with an NSSplitView now operates using the relative positions of the views in the window.
@item Custom Class inspector now shows all subclasses, not just direct custom subclasses.
@item Bug fixes, eliminated memory leak, code cleanup, etc.
@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.4.0}
@itemize @bullet
@ -15,9 +28,7 @@
@item Added NSStepper and NSStepperCell to the class list to allow creation of custom subclasses.
@item Windows and Services menus now function correctly.
@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.3.1}
@itemize @bullet

4
Gorm.m
View file

@ -519,9 +519,9 @@ NSString *GormWillDetachObjectFromDocumentNotification = @"GormWillDetachObjectF
forKey: @"ApplicationName"];
[dict setObject: @"[GNUstep | Graphical] Object Relationship Modeller"
forKey: @"ApplicationDescription"];
[dict setObject: @"Gorm 0.4.10 (Beta)"
[dict setObject: @"Gorm 0.5.0 (Beta)"
forKey: @"ApplicationRelease"];
[dict setObject: @"0.4.10 Nov 23 2003"
[dict setObject: @"0.5.0 Nov 23 2003"
forKey: @"FullVersionID"];
[dict setObject: [NSArray arrayWithObjects: @"Gregory John Casamento <greg_casamento@yahoo.com>",
@"Richard Frith-Macdonald <rfm@gnu.org>",

19
NEWS
View file

@ -1,3 +1,22 @@
Noteworthy changes in version `0.5.0'
=====================================
* Enabled defer in NSWindow inspector.
* Added code to the connection inspector to prevent erroneous
connections.
* Added support for upgrading of old .gorm files using the older
template mechanism
* Grouping with an NSSplitView now operates using the relative
positions of the views in the window.
* Custom Class inspector now shows all subclasses, not just direct
custom subclasses.
* Bug fixes, eliminated memory leak, code cleanup, etc.
Noteworthy changes in version `0.4.0'
=====================================

View file

@ -5,10 +5,10 @@
GNUSTEP_GCC=2.95.0
# GNUstep version required
GNUSTEP_CORE_VERSION=0.9.0
GNUSTEP_CORE_VERSION=0.9.1
# The version number of this release.
MAJOR_VERSION=0
MINOR_VERSION=4
MINOR_VERSION=5
SUBMINOR_VERSION=0
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}