Version 1.2.18

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@35215 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2012-06-19 04:47:30 +00:00
parent d49d1fd71a
commit 272e9c73ca
11 changed files with 92 additions and 50 deletions

View file

@ -1,7 +1,7 @@
1 ANNOUNCE
**********
This is version 1.2.16 of Gorm.
This is version 1.2.18 of Gorm.
1.1 What is Gorm?
=================
@ -12,14 +12,15 @@ GNUstep Object Relationship Modeler).
Gorm is a clone of the Cocoa (OpenStep/NeXTSTEP) `Interface Builder'
application for GNUstep.
1.2 Noteworthy changes in version `1.2.16'
1.2 Noteworthy changes in version `1.2.18'
==========================================
* XIB reading.
* Code cleanup, removal of warnings when building with clang.
* Bug fixes for standalone views.
* Removal of use of call to objc_poseAs(..) which was preventing
building with newer runtimes.
* Stability changes.
* Stability improvements.
1.3 How can I get support for this software?
============================================

View file

@ -1,3 +1,16 @@
2012-06-19 00:44-EDT Gregory John Casamento <greg.casamento@gmail.com>
* ANNOUNCE
* Documentation/news.texi
* GormCore/GormDocument.m
* GormCore/GormFilePrefsManager.m
* GormCore/GormObjectEditor.m
* GormCore/GormViewEditor.m
* GormCore/GormViewWindow.m
* GormInfo.plist
* NEWS
* Version: 1.2.18
2012-05-01 23:25-EDT Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormDocument.m

View file

@ -4,6 +4,18 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{1.2.18}
@itemize @bullet
@item Code cleanup, removal of warnings when building with clang.
@item Removal of use of call to objc_poseAs(..) which was preventing building with newer runtimes.
@item Stability 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.16}
@itemize @bullet
@ -12,10 +24,6 @@
@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.

View file

@ -1915,6 +1915,13 @@ static void _real_close(GormDocument *self,
{
[[self openEditorForObject: obj] activate];
}
else if([obj isKindOfClass: [NSView class]])
{
if([obj superview] == nil)
{
[[self openEditorForObject: obj] activate];
}
}
}
}

View file

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

View file

@ -358,7 +358,7 @@ static NSMapTable *docMap = 0;
NSColor *color = [NSColor colorWithCalibratedRed: 0.850980
green: 0.737255
blue: 0.576471
alpha: 1.0 ];
alpha: 0.0 ];
document = aDocument;

View file

@ -313,6 +313,9 @@ static BOOL currently_displaying = NO;
if([anObject window] == nil && [anObject superview] == nil)
{
NSDebugLog(@"#### Stand alone view: %@",_editedObject);
[document attachObject: _editedObject
toParent: nil];
// [document openEditorForObject: _editedObject];
viewWindow = [[GormViewWindow alloc] initWithView: _editedObject];
}
}

View file

@ -140,7 +140,7 @@
{
NSString *className = NSStringFromClass([view class]);
NSString *objectName = [[(id<IB>)NSApp activeDocument] nameForObject: view];
NSString *title = [NSString stringWithFormat: @"View Window: (%@, %@)",
NSString *title = [NSString stringWithFormat: @"Standalone View Window: (%@, %@)",
className, objectName];
NSColor *color = [NSColor lightGrayColor];

View file

@ -42,7 +42,7 @@
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
ApplicationIcon = "Gorm.tiff";
ApplicationName = "Gorm";
ApplicationRelease = "Gorm 1.2.17 (SVN)";
ApplicationRelease = "Gorm 1.2.17 (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-2012 FSF";
CopyrightDescription = "Released under the GNU General Public License 3.0";
NSBuildVersion = "1.2.16 February 6 2012";
NSBuildVersion = "1.2.18 February 6 2012";
GSDesktopInstallationDomain=SYSTEM;
}

80
NEWS
View file

@ -1,4 +1,14 @@
0.1 Noteworthy changes in version `1.2.16'
0.1 Noteworthy changes in version `1.2.18'
==========================================
* Code cleanup, removal of warnings when building with clang.
* Removal of use of call to objc_poseAs(..) which was preventing
building with newer runtimes.
* Stability improvements.
0.2 Noteworthy changes in version `1.2.16'
==========================================
* XIB reading.
@ -7,7 +17,7 @@
* Stability changes.
0.2 Noteworthy changes in version `1.2.12'
0.3 Noteworthy changes in version `1.2.12'
==========================================
Requires: gnustep-base-1.20.0, gnustep-gui-0.18.0. Reason: Parts of
@ -24,7 +34,7 @@ make corresponding changes in Gorm to use it.
* Opens default document when using NSWindows95InterfaceStyle.
0.3 Noteworthy changes in version `1.2.10'
0.4 Noteworthy changes in version `1.2.10'
==========================================
* Correction for bug #25401
@ -35,7 +45,7 @@ make corresponding changes in Gorm to use it.
* Fixes for various bugs.
0.4 Noteworthy changes in version `1.2.8'
0.5 Noteworthy changes in version `1.2.8'
=========================================
Requires: gnustep-gui-0.16.0. It will not compile without this version
@ -50,7 +60,7 @@ sensible file structure. Additionally, Nib loading was refactored.
* Changes to use new headers.
0.5 Noteworthy changes in version `1.2.6'
0.6 Noteworthy changes in version `1.2.6'
=========================================
* Corrections to allow Gorm to build and run properly on the Darwin
@ -68,7 +78,7 @@ sensible file structure. Additionally, Nib loading was refactored.
* Correction for bug#24146, bug#23889.
0.6 Noteworthy changes in version `1.2.4'
0.7 Noteworthy changes in version `1.2.4'
=========================================
Requires: gnustep-gui-0.13.2. Reason: Due to changes in popupbutton
@ -85,7 +95,7 @@ controller logic.
* Added ruler switch to scroll view inspector.
0.7 Noteworthy changes in version `1.2.2'
0.8 Noteworthy changes in version `1.2.2'
=========================================
Requires: gnustep-gui-0.13.0.
@ -106,13 +116,13 @@ Requires: gnustep-gui-0.13.0.
* Other miscellaneous bug corrections.
0.8 Noteworthy changes in version `1.2.1'
0.9 Noteworthy changes in version `1.2.1'
=========================================
* Minor corrections to previous release.
0.9 Noteworthy changes in version `1.2.0'
=========================================
0.10 Noteworthy changes in version `1.2.0'
==========================================
* Corrections to some editors to not change selection if connection
is in progress.
@ -123,7 +133,7 @@ Requires: gnustep-gui-0.13.0.
* Minor bug fixes.
0.10 Noteworthy changes in version `1.1.0'
0.11 Noteworthy changes in version `1.1.0'
==========================================
* Changed Gorm architecture to use NSDocument classes.
@ -145,7 +155,7 @@ Requires: gnustep-gui-0.13.0.
* A number of bugs have been addressed in this release.
0.11 Noteworthy changes in version `1.0.8'
0.12 Noteworthy changes in version `1.0.8'
==========================================
This is a bugfix release.
@ -154,7 +164,7 @@ This is a bugfix release.
* Correction for handling non-string identifiers in tableviews.
0.12 Noteworthy changes in version `1.0.6'
0.13 Noteworthy changes in version `1.0.6'
==========================================
This is a bugfix release.
@ -171,7 +181,7 @@ This is a bugfix release.
* Changed formatting in some of the inspectors so that they are
easier to navigate.
0.13 Noteworthy changes in version `1.0.4'
0.14 Noteworthy changes in version `1.0.4'
==========================================
This is a bugfix release.
@ -186,7 +196,7 @@ This is a bugfix release.
* Corrected problem with standalone views
0.14 Noteworthy changes in version `1.0.2'
0.15 Noteworthy changes in version `1.0.2'
==========================================
This is a bugfix release.
@ -195,7 +205,7 @@ This is a bugfix release.
* Corrected a minor problem in the custom class inspector.
0.15 Noteworthy changes in version `1.0.0'
0.16 Noteworthy changes in version `1.0.0'
==========================================
PLEASE NOTE: This version of Gorm requires base 1.11.1 and
@ -214,7 +224,7 @@ gui 0.10.1 to be installed (gnustep-startup-0.13.0).
* Added documentation to GormCore
0.16 Noteworthy changes in version `0.11.0'
0.17 Noteworthy changes in version `0.11.0'
===========================================
* Improved implementation of canSubstituteForClass: the default
@ -251,7 +261,7 @@ gui 0.10.1 to be installed (gnustep-startup-0.13.0).
* Lots of bugfixes and usability changes are also included in this
release.
0.17 Noteworthy changes in version `0.9.10'
0.18 Noteworthy changes in version `0.9.10'
===========================================
* Gorm now has a full implementation of canSubstituteForClass: which
@ -282,7 +292,7 @@ gui 0.10.1 to be installed (gnustep-startup-0.13.0).
* A myriad of bug fixes.
0.18 Noteworthy changes in version `0.9.2'
0.19 Noteworthy changes in version `0.9.2'
==========================================
NOTE: This is mainly a bugfix release.
@ -303,7 +313,7 @@ NOTE: This is mainly a bugfix release.
* Various improvements in documentation
0.19 Noteworthy changes in version `0.9.0'
0.20 Noteworthy changes in version `0.9.0'
==========================================
* Images/Sounds can now be dragged into a matrix cell.
@ -342,7 +352,7 @@ NOTE: This is mainly a bugfix release.
* Fixed a number of bugs.
0.20 Noteworthy changes in version `0.8.0'
0.21 Noteworthy changes in version `0.8.0'
==========================================
PLEASE NOTE: It is important for this release that you upgrade to Gorm
@ -390,7 +400,7 @@ that it is known beyond a reasonable doubt.
amount of time the user needs to spend fiddling with the font
panel.
0.21 Noteworthy changes in version `0.7.7'
0.22 Noteworthy changes in version `0.7.7'
==========================================
* Important bugfixes in editor classes.
@ -414,7 +424,7 @@ that it is known beyond a reasonable doubt.
* Gorm will now show an alert panel when a model fails to load or
test properly.
0.22 Noteworthy changes in version `0.7.6'
0.23 Noteworthy changes in version `0.7.6'
==========================================
This release is mainly a bugfix release for 0.7.5.
@ -427,7 +437,7 @@ This release is mainly a bugfix release for 0.7.5.
* Important bugfixes for class inspector.
0.23 Noteworthy changes in version `0.7.5'
0.24 Noteworthy changes in version `0.7.5'
==========================================
* The 'reparent' feature in the class inspector. This allows the
@ -448,7 +458,7 @@ This release is mainly a bugfix release for 0.7.5.
* A way to restore a complete NSMenu if it's deleted (a new palette
entry for NSMenu, not just an item)
0.24 Noteworthy changes in version `0.6.0'
0.25 Noteworthy changes in version `0.6.0'
==========================================
* Several major bugs corrected.
@ -459,7 +469,7 @@ This release is mainly a bugfix release for 0.7.5.
* More descriptive title displayed when a class is being edited.
0.25 Noteworthy changes in version `0.5.0'
0.26 Noteworthy changes in version `0.5.0'
==========================================
* Enabled defer in NSWindow inspector.
@ -478,7 +488,7 @@ This release is mainly a bugfix release for 0.7.5.
* Bug fixes, eliminated memory leak, code cleanup, etc.
0.26 Noteworthy changes in version `0.4.0'
0.27 Noteworthy changes in version `0.4.0'
==========================================
* New Menu and Menu Item inspectors.
@ -500,7 +510,7 @@ This release is mainly a bugfix release for 0.7.5.
* Windows and Services menus now function correctly.
0.27 Noteworthy changes in version `0.3.1'
0.28 Noteworthy changes in version `0.3.1'
==========================================
* New custom class system.
@ -511,7 +521,7 @@ This release is mainly a bugfix release for 0.7.5.
* Various bugfixes
0.28 Noteworthy changes in version `0.3.0'
0.29 Noteworthy changes in version `0.3.0'
==========================================
* Preferences added.
@ -536,7 +546,7 @@ This release is mainly a bugfix release for 0.7.5.
* various bug fixes.
0.29 Noteworthy changes in version `0.2.5'.
0.30 Noteworthy changes in version `0.2.5'.
===========================================
Many fixes and improvements to make the app work better.
@ -547,7 +557,7 @@ Many fixes and improvements to make the app work better.
* Re-add multiple selection via mouse drag.
0.30 Noteworthy changes in version `0.2.0' snapshot.
0.31 Noteworthy changes in version `0.2.0' snapshot.
====================================================
Gobs of improvements, mostly due to the hard work of Gregory John
@ -572,7 +582,7 @@ Casamento and Pierre-Yves Rivaille. Thanks guys!
* gorm files were changed to directory wrappers for more flexibility.
0.31 Noteworthy changes in version `0.1.0'
0.32 Noteworthy changes in version `0.1.0'
==========================================
* load/parses class files for entry into class list.
@ -591,7 +601,7 @@ Casamento and Pierre-Yves Rivaille. Thanks guys!
* Ability to change the font of some objects.
0.32 Noteworthy changes in version `0.0.3'
0.33 Noteworthy changes in version `0.0.3'
==========================================
* Create stub .m and .h files from new classes
@ -607,7 +617,7 @@ Casamento and Pierre-Yves Rivaille. Thanks guys!
* Support for custom objects.
0.33 Noteworthy changes in version `0.0.2'
0.34 Noteworthy changes in version `0.0.2'
==========================================
* Add popup and pulldown menu controls
@ -620,7 +630,7 @@ Casamento and Pierre-Yves Rivaille. Thanks guys!
* Much more fleshed out - too numerous to mention.
0.34 Noteworthy changes in version `0.0.1'
0.35 Noteworthy changes in version `0.0.1'
==========================================
* 8th December 1999

View file

@ -11,5 +11,5 @@ GNUSTEP_CORE_VERSION=0.23.0
# The version number of this release.
MAJOR_VERSION=1
MINOR_VERSION=2
SUBMINOR_VERSION=17
SUBMINOR_VERSION=18
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}