Release 1.0.4 of Gorm.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22352 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-01-25 10:23:23 +00:00
parent 54062ff098
commit eac86292e0
5 changed files with 23 additions and 8 deletions

View file

@ -1,3 +1,7 @@
2006-01-25 05:21 Gregory John Casamento <greg_casamento@yahoo.com>
* Version 1.0.4
2006-01-21 00:19 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormViewEditor.m: [GormViewEditor activate] do not send

View file

@ -4,6 +4,21 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{1.0.4}
This is a bugfix release.
@itemize @bullet
@item Corrected some bug#15236 with window style mask settings.
@item Corrected bug#15236, which caused window fields in the inspector not to update when the field was being edited and a new window is selected.
@item Corrected bug #15178.
@item Corrected problem with standalone views
@end itemize
@ifclear ANNOUNCE-ONLY
@c ====================================================================
@c Keep the next line just below the list of changes in most recent version.
@section Noteworthy changes in version @samp{1.0.0}
This is a bugfix release.
@ -13,10 +28,6 @@ This is a bugfix release.
@item Corrected a minor problem in the custom class inspector.
@end itemize
@ifclear ANNOUNCE-ONLY
@c ====================================================================
@c Keep the next line just below the list of changes in most recent version.
@section Noteworthy changes in version @samp{1.0.0}
PLEASE NOTE: This version of Gorm requires base 1.11.1 and

View file

@ -83,7 +83,7 @@ NSString *formatVersion(int version)
+ (int) currentVersion
{
return appVersion(1,0,2);
return appVersion(1,0,4);
}
- (void) awakeFromNib

View file

@ -14,9 +14,9 @@
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
ApplicationIcon = "Gorm.tiff";
ApplicationName = "Gorm";
ApplicationRelease = "Gorm 1.0.2 (CVS)";
ApplicationRelease = "Gorm 1.0.4 (Release)";
Authors = ("Gregory John Casamento <greg_casamento@yahoo.com>","Richard Frith-Macdonald <rfm@gnu.org>","Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 FSF";
CopyrightDescription = "Released under the GNU General Public License 2.0";
NSBuildVersion = "1.0.2 Nov 20 2005";
NSBuildVersion = "1.0.4 Jan 25 2006";
}

View file

@ -11,5 +11,5 @@ GNUSTEP_CORE_VERSION=0.10.0
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=0
SUBMINOR_VERSION=2
SUBMINOR_VERSION=4
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}