mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* Version: 1.2.16
* GormInfo.plist * Documentation/news.texi: Update version and documentation. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@34723 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
59039e100d
commit
cda5a97ccc
8 changed files with 33 additions and 12 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2012-02-06 02:02-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Version: 1.2.16
|
||||
* GormInfo.plist
|
||||
* Documentation/news.texi: Update version and documentation.
|
||||
|
||||
2012-02-06 02:02-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* GormCore/GormClassInspector.m
|
||||
* GormCore/GormCustomClassInspector.h
|
||||
* GormCore/GormFilesOwner.m
|
||||
* GormCore/GormOutlineView.m
|
||||
|
||||
2012-01-15 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* English.lproj/GormClassInspector.gorm: Re-save with the
|
||||
|
|
|
@ -4,6 +4,18 @@
|
|||
@include version.texi
|
||||
@end ifset
|
||||
|
||||
@section Noteworthy changes in version @samp{1.2.16}
|
||||
|
||||
@itemize @bullet
|
||||
@item XIB reading.
|
||||
@item Bug fixes for standalone views.
|
||||
@item Stability changes.
|
||||
@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.12}
|
||||
|
||||
Requires: gnustep-base-1.20.0, gnustep-gui-0.18.0.
|
||||
|
@ -16,10 +28,6 @@ Reason: Parts of the runtime which Gorm used were refactored and it was necessar
|
|||
@item Opens default document when using NSWindows95InterfaceStyle.
|
||||
@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
|
||||
|
|
|
@ -312,7 +312,7 @@ objectValueForTableColumn: (NSTableColumn *)tc
|
|||
|
||||
NSArray *list = [classManager allClassNames];
|
||||
NSString *superClass = [classManager parentOfClass: [self _currentClass]];
|
||||
int index = [list indexOfObject: superClass];
|
||||
NSUInteger index = [list indexOfObject: superClass];
|
||||
|
||||
[classField setStringValue: [self _currentClass]];
|
||||
[outletTable reloadData];
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
GormClassManager *_classManager;
|
||||
NSString *_currentSelectionClassName;
|
||||
NSString *_parentClassName;
|
||||
int _rowToSelect;
|
||||
NSUInteger _rowToSelect;
|
||||
}
|
||||
- (void) select: (id)sender;
|
||||
@end
|
||||
|
|
|
@ -202,8 +202,8 @@
|
|||
|
||||
if (anObject != nil)
|
||||
{
|
||||
NSArray *array;
|
||||
unsigned pos;
|
||||
NSArray *array;
|
||||
NSUInteger pos;
|
||||
|
||||
ASSIGN(object, anObject);
|
||||
hasConnections = NO;
|
||||
|
|
|
@ -181,7 +181,7 @@ static NSColor *darkGreyBlueColor = nil;
|
|||
|
||||
- (void) _addNewActionToObject: (id)item
|
||||
{
|
||||
int insertionPoint = 0;
|
||||
NSUInteger insertionPoint = 0;
|
||||
NSString *name = nil;
|
||||
|
||||
GormOutletActionHolder *holder = [[GormOutletActionHolder alloc] init];
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
|
||||
ApplicationIcon = "Gorm.tiff";
|
||||
ApplicationName = "Gorm";
|
||||
ApplicationRelease = "Gorm 1.2.15 (SVN, Release Candidate)";
|
||||
ApplicationRelease = "Gorm 1.2.16 (Release)";
|
||||
Authors = ("Gregory John Casamento <greg.casamento@gmail.com>",
|
||||
"Adam Fedor <fedor@gnu.org>",
|
||||
"Richard Frith-Macdonald <rfm@gnu.org>",
|
||||
|
@ -50,6 +50,6 @@
|
|||
"Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
|
||||
Copyright = "Copyright (C) 1999-2010 FSF";
|
||||
CopyrightDescription = "Released under the GNU General Public License 3.0";
|
||||
NSBuildVersion = "1.2.15 Oct 29 2011";
|
||||
NSBuildVersion = "1.2.16 February 6 2012";
|
||||
GSDesktopInstallationDomain=SYSTEM;
|
||||
}
|
||||
|
|
2
Version
2
Version
|
@ -6,7 +6,7 @@
|
|||
GNUSTEP_GCC=2.95.0
|
||||
|
||||
# GNUstep GUI version required
|
||||
GNUSTEP_CORE_VERSION=0.18.0
|
||||
GNUSTEP_CORE_VERSION=0.23.0
|
||||
|
||||
# The version number of this release.
|
||||
MAJOR_VERSION=1
|
||||
|
|
Loading…
Reference in a new issue