mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Correction for bug #28643
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@30416 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e8e2904494
commit
3846644d89
6 changed files with 30 additions and 12 deletions
|
@ -1,3 +1,11 @@
|
|||
2010-05-18 19:42-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Documentation/Gorm.texi
|
||||
* Documentation/news.texi
|
||||
* Documentation/readme.texi
|
||||
* GormCore/GormDocument.m: Correction for bug #28643.
|
||||
* Version
|
||||
|
||||
2010-05-05 20:55-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* GormCore/GormClassManager.m: Correct bug#29795: Unable to change
|
||||
|
|
|
@ -21,7 +21,7 @@ END-INFO-DIR-ENTRY
|
|||
This file documents the features and implementation of the Gorm
|
||||
application.
|
||||
|
||||
Copyright (C) 1999,2000 Free Software Foundation, Inc.
|
||||
Copyright (C) 1999,2000,2009,2010 Free Software Foundation, Inc.
|
||||
|
||||
Permission is granted to make and distribute verbatim copies of
|
||||
this manual provided the copyright notice and this permission notice
|
||||
|
|
|
@ -4,6 +4,19 @@
|
|||
@include version.texi
|
||||
@end ifset
|
||||
|
||||
@section Noteworthy changes in version @samp{1.2.8}
|
||||
|
||||
Requires: gnustep-base-1.20.0, gnustep-gui-0.18.0.
|
||||
Reason: Parts of the runtime which Gorm used were refactored and it was necessary to make corresponding changes in Gorm to use it.
|
||||
|
||||
@itemize @bullet
|
||||
@item Correction for bug #27295,
|
||||
@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.2.10}
|
||||
|
||||
@itemize @bullet
|
||||
|
@ -13,10 +26,6 @@
|
|||
@item Fixes for various bugs.
|
||||
@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.2.8}
|
||||
|
||||
Requires: gnustep-gui-0.16.0. It will not compile without this version of the library.
|
||||
|
|
|
@ -12,7 +12,7 @@ file for installation instructions.
|
|||
Gorm is an acronym for Graphic Object Relationship modeler (or perhaps
|
||||
GNUstep Object Relationship Modeler).
|
||||
|
||||
Gorm is a clone of the NeXTstep `Interface Builder' application for GNUstep.
|
||||
Gorm is a clone of the Cocoa (OpenStep/NeXTSTEP) `Interface Builder' application for GNUstep.
|
||||
|
||||
Gorm is part of the GNUstep project, and is copyrighted by the Free Software
|
||||
Foundation.
|
||||
|
@ -35,9 +35,6 @@ Known problems (things to do) -
|
|||
|
||||
@section Acknowledgements
|
||||
|
||||
Icons - Mostly by Andrew Lindsay.
|
||||
Icons - Mostly by Andrew Lindsay. Gorm application icon by Jesse Ross.
|
||||
|
||||
Code - GormViewKnobs.m adapted from code by Gerrit van Dyk.
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -564,6 +564,9 @@ static NSImage *fileImage = nil;
|
|||
NSArray *old;
|
||||
BOOL newObject = NO;
|
||||
|
||||
// Modify the document whenever something is added...
|
||||
[self touch];
|
||||
|
||||
/*
|
||||
* Create a connector that links this object to its parent.
|
||||
* A nil parent is the root of the hierarchy so we use a dummy object for it.
|
||||
|
@ -1391,6 +1394,7 @@ static NSImage *fileImage = nil;
|
|||
|
||||
[self setSelectionFromEditor: nil]; // clear the selection.
|
||||
RELEASE(name); // retained at beginning of method...
|
||||
[self touch]; // set the document as modified
|
||||
}
|
||||
}
|
||||
|
||||
|
|
4
Version
4
Version
|
@ -6,10 +6,10 @@
|
|||
GNUSTEP_GCC=2.95.0
|
||||
|
||||
# GNUstep GUI version required
|
||||
GNUSTEP_CORE_VERSION=0.16.0
|
||||
GNUSTEP_CORE_VERSION=0.18.0
|
||||
|
||||
# The version number of this release.
|
||||
MAJOR_VERSION=1
|
||||
MINOR_VERSION=2
|
||||
SUBMINOR_VERSION=11
|
||||
SUBMINOR_VERSION=12
|
||||
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
|
|
Loading…
Reference in a new issue