Disabling repairFile: pending further development. Update version files.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@38513 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2015-05-20 10:18:40 +00:00
parent 0420732766
commit 122fa03d06
9 changed files with 38 additions and 14 deletions

View file

@ -1,3 +1,16 @@
2015-05-20 06:16-EDT Gregory John Casamento <greg.casamento@gmail.com>
* ChangeLog
* Documentation/news.texi
* English.lproj/GormPrefGeneral.gorm
* GormCore/GormFilePrefsManager.m
* GormInfo.plist
* GormPrefs/GormGeneralPref.m
* Plugins/Gorm/GormGormWrapperLoader.m: Remove calls to repairFile:
as some of the logic in it is outdated and could cause issues with
perfectly good gorm files. Disabling pending further development.
* Version
2015-05-11 Gregory John Casamento <greg.casamento@gmail.com
* GormLib/IBObjectAdditions.m: Removed canSubstituteForClass:
@ -123,7 +136,7 @@
2014-01-19 Fred Kiefer <FredKiefer@gmx.de>
* GormInfo.plist: Don't clain to be able to write XIB files.
* GormInfo.plist: Don't claim to be able to write XIB files.
2013-12-31 Fred Kiefer <FredKiefer@gmx.de>
@ -225,6 +238,7 @@
* GormCore/GormClassEditor.m
some int -> NSInteger and float -> CGFloat transitions
spotted by libobjc2 runtime in debug mode
2013-04-14 13:19-EDT Gregory John Casamento <greg.casamento@gmail.com>
* ANNOUNCE

View file

@ -4,6 +4,19 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{1.2.22}
@itemize @bullet
@item Fix for bug#45040: Fix allows Gorm custom class functionality to work normally on OpenBSD/NetBSD/FreeBSD.
@item Fixes for Solaris
@item Memory leak fixes.
@item Objective-C parser improvements.
@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.20}
@itemize @bullet
@ -13,10 +26,6 @@
@item Changes to prevent recursive frame change notifications.
@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.18}
@itemize @bullet

View file

@ -85,7 +85,7 @@ NSString *formatVersion(NSInteger version)
+ (int) currentVersion
{
return appVersion(1,2,20);
return appVersion(1,2,22);
}
- (void) awakeFromNib

View file

@ -42,14 +42,14 @@
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
ApplicationIcon = "Gorm.tiff";
ApplicationName = "Gorm";
ApplicationRelease = "Gorm 1.2.18 (Release)";
ApplicationRelease = "Gorm 1.2.22 (Release)";
Authors = ("Gregory John Casamento <greg.casamento@gmail.com>",
"Adam Fedor <fedor@gnu.org>",
"Richard Frith-Macdonald <rfm@gnu.org>",
"Wolfgang Lux <wolfgang.lux@gmail.com>",
"Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
Copyright = "Copyright (C) 1999-2012 FSF";
Copyright = "Copyright (C) 1999-2015 FSF";
CopyrightDescription = "Released under the GNU General Public License 3.0";
NSBuildVersion = "1.2.18 February 6 2012";
NSBuildVersion = "1.2.22 May 20 2015";
GSDesktopInstallationDomain=SYSTEM;
}

View file

@ -60,7 +60,7 @@ static NSString *REPAIRFILE=@"GormRepairFileOnLoad";
NSString *intType = [defaults stringForKey: INTTYPE];
[backupButton setState: [defaults integerForKey: BACKUPFILE]];
[checkConsistency setState: ([defaults boolForKey: REPAIRFILE]?NSOnState:NSOffState)];
// [checkConsistency setState: ([defaults boolForKey: REPAIRFILE]?NSOnState:NSOffState)];
// set the interface matrix...
if([intType isEqual: @"Outline"])

View file

@ -584,11 +584,12 @@
/*
* Repair the .gorm file, if needed.
*/
/*
if(repairFile)
{
[self _repairFile];
}
*/
NSDebugLog(@"nameTable = %@",[container nameTable]);
// awaken all elements after the load is completed.

View file

@ -3,13 +3,13 @@
# Compatible with Bourne shell syntax, so it can included there too.
# The minimum gcc version required to compile the library.
GNUSTEP_GCC=2.95.0
GNUSTEP_GCC=3.3.0
# GNUstep GUI version required
GNUSTEP_CORE_VERSION=0.23.1
GNUSTEP_CORE_VERSION=0.24.2
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=2
SUBMINOR_VERSION=20
SUBMINOR_VERSION=22
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}