mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* GormCore/GormDocument.m: Change to apply labels in the document
to cells in a matrix. * GormCore/GormFilePrefsManager.m: Update version to 1.2.7 * GormInfo.plist: Same * Version: Same git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@27043 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b4f90a407d
commit
248a59ef7c
5 changed files with 26 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-11-13 23:36-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormDocument.m: Change to apply labels in the document
|
||||
to cells in a matrix.
|
||||
* GormCore/GormFilePrefsManager.m: Update version to 1.2.7
|
||||
* GormInfo.plist: Same
|
||||
* Version: Same
|
||||
|
||||
2008-10-25 18:40-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Version: 1.2.6
|
||||
|
|
|
@ -780,6 +780,20 @@ static NSImage *fileImage = nil;
|
|||
id v = [ti view];
|
||||
[self attachObject: v toParent: ti];
|
||||
}
|
||||
/*
|
||||
* If it's a matrix, add the elements of the matrix.
|
||||
*/
|
||||
else if ([anObject isKindOfClass: [NSMatrix class]])
|
||||
{
|
||||
NSCell *cell = nil;
|
||||
NSEnumerator *en = [[anObject cells] objectEnumerator];
|
||||
|
||||
// add all of the cells....
|
||||
while((cell = [en nextObject]) != nil)
|
||||
{
|
||||
[self attachObject: cell toParent: anObject];
|
||||
}
|
||||
}
|
||||
/*
|
||||
* If it's a simple NSView, add it and all of it's subviews.
|
||||
*/
|
||||
|
|
|
@ -85,7 +85,7 @@ NSString *formatVersion(int version)
|
|||
|
||||
+ (int) currentVersion
|
||||
{
|
||||
return appVersion(1,2,6);
|
||||
return appVersion(1,2,7);
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
|
||||
ApplicationIcon = "Gorm.tiff";
|
||||
ApplicationName = "Gorm";
|
||||
ApplicationRelease = "Gorm 1.2.6 (Release)";
|
||||
ApplicationRelease = "Gorm 1.2.7 (SVN)";
|
||||
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, 2006, 2007, 2008 FSF";
|
||||
CopyrightDescription = "Released under the GNU General Public License 3.0";
|
||||
NSBuildVersion = "1.2.6 Oct 25 2008";
|
||||
NSBuildVersion = "1.2.7 Nov 13 2008";
|
||||
}
|
||||
|
|
2
Version
2
Version
|
@ -11,5 +11,5 @@ GNUSTEP_CORE_VERSION=0.13.0
|
|||
# The version number of this release.
|
||||
MAJOR_VERSION=1
|
||||
MINOR_VERSION=2
|
||||
SUBMINOR_VERSION=6
|
||||
SUBMINOR_VERSION=7
|
||||
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
|
|
Loading…
Reference in a new issue