mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 11:41:05 +00:00
Committing release information.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21234 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7c7e2deac1
commit
b38e36d071
6 changed files with 25 additions and 10 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-05-19 11:54 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Version 0.9.10
|
||||
|
||||
2005-05-07 06:50 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Gorm.m: In handleNotification: reset selection owner to
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -83,7 +83,7 @@ NSString *formatVersion(int version)
|
|||
|
||||
+ (int) currentVersion
|
||||
{
|
||||
return appVersion(0,9,9);
|
||||
return appVersion(0,9,10);
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
|
|
|
@ -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 <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 = "0.9.9 Apr 17 2005";
|
||||
NSBuildVersion = "0.9.10 May 19 2005";
|
||||
}
|
||||
|
|
4
Version
4
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}
|
||||
|
|
Loading…
Reference in a new issue