diff --git a/ChangeLog b/ChangeLog index 1f853e6f..bd1d8eb6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-05-19 11:54 Gregory John Casamento + + * Version 0.9.10 + 2005-05-07 06:50 Gregory John Casamento * Gorm.m: In handleNotification: reset selection owner to diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile index 694a0f73..63c27210 100644 --- a/Documentation/GNUmakefile +++ b/Documentation/GNUmakefile @@ -1,5 +1,4 @@ GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) -GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles include $(GNUSTEP_MAKEFILES)/common.make diff --git a/Documentation/news.texi b/Documentation/news.texi index 5c822e17..ed2e92e0 100644 --- a/Documentation/news.texi +++ b/Documentation/news.texi @@ -4,6 +4,22 @@ @include version.texi @end ifset +@section Noteworthy changes in version @samp{0.9.10} + +@itemize @bullet +@item Gorm now has a full implementation of canSubstituteForClass: which is used to determine if a class can be substituted in the custom class inspector. This allows classes added in palettes to say whether or not they can be used as a subsitute for a kit class. +@item Better separation of Gorm into libraries. As well as the ability to compile on windows with a simple: "make install" +@item Implementation of IBResourceManager class. This class is used by palettes to register drag types to be considered by the top level editors in the document window: object, sound, image, class. +@item Gorm now is able to switch views in the document window when you drag a file into it. If it's an image it will switch to the image view, if it's a sound, the sound view, an object the object view etc or if it's a class (a .h file) it will switch to the classes view. +@item Drag and drop parsing of header files (if you hadn't gathered from the previous item). +@item Better support for standalone views. while the user cannot instantiate from the classes view (there were too many problems with this approach). They can now drag any view from the palette into the objects view and have it work. +@item A myriad of bug fixes. +@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.9.2} NOTE: This is mainly a bugfix release. @@ -18,10 +34,6 @@ NOTE: This is mainly a bugfix release. @item Various improvements in documentation @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.9.0} @itemize @bullet diff --git a/GormCore/GormFilePrefsManager.m b/GormCore/GormFilePrefsManager.m index 687192b6..d56d3f52 100644 --- a/GormCore/GormFilePrefsManager.m +++ b/GormCore/GormFilePrefsManager.m @@ -83,7 +83,7 @@ NSString *formatVersion(int version) + (int) currentVersion { - return appVersion(0,9,9); + return appVersion(0,9,10); } - (void) awakeFromNib diff --git a/GormInfo.plist b/GormInfo.plist index 17abb1e4..7bc08697 100644 --- a/GormInfo.plist +++ b/GormInfo.plist @@ -14,9 +14,9 @@ ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller"; ApplicationIcon = "Gorm.tiff"; ApplicationName = "Gorm"; - ApplicationRelease = "Gorm 0.9.9 (Alpha)"; + ApplicationRelease = "Gorm 0.9.10 (Alpha)"; Authors = ("Gregory John Casamento ","Richard Frith-Macdonald ","Pierre-Yves Rivaille "); Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 FSF"; CopyrightDescription = "Released under the GNU General Public License 2.0"; - NSBuildVersion = "0.9.9 Apr 17 2005"; + NSBuildVersion = "0.9.10 May 19 2005"; } diff --git a/Version b/Version index 07994420..fed5c6a0 100644 --- a/Version +++ b/Version @@ -5,10 +5,10 @@ GNUSTEP_GCC=2.95.0 # GNUstep version required -GNUSTEP_CORE_VERSION=0.9.4 +GNUSTEP_CORE_VERSION=0.9.6 # The version number of this release. MAJOR_VERSION=0 MINOR_VERSION=9 -SUBMINOR_VERSION=2 +SUBMINOR_VERSION=10 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}