Version 0.2.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15252 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-12-05 05:13:41 +00:00
parent 6b09ae9892
commit 244f75ced7
10 changed files with 32 additions and 27 deletions

View file

@ -1,7 +1,7 @@
ANNOUNCE
********
This is version 0.1.9 of Gorm.
This is version 0.2.0 of Gorm.
What is Gorm?
=============
@ -32,6 +32,14 @@ Casamento and Pierre-Yves Rivaille. Thanks guys!
* Intelligent placement hints.
* Read gmodel files.
* More inspectors.
* Sound and Image support.
* gorm files were changed to directory wrappers for more flexibility.
How can I get support for this software?
========================================

View file

@ -1,3 +1,8 @@
2002-12-04 Adam Fedor <fedor@gnu.org>
* Version: 0.2.0
* Gorm.m: Change font panel shortcut to t
2002-12-02 Adam Fedor <fedor@gnu.org>
* GModelDecoder.m ([GormDocument -connectionObjectForObject:]):

View file

@ -13,7 +13,7 @@ and use Gorm. The core packages are, at a minimum:
@item gnustep-make
@item gnustep-base
@item gnustep-gui
@item gnustep-xgps or gnustep-xdps
@item gnustep-back
@end itemize
See @url{http://www.gnustep.org/} for further information.

View file

@ -15,6 +15,10 @@ Gregory John Casamento and Pierre-Yves Rivaille. Thanks guys!
@item Improved test mode support.
@item Improved drag n' drop support on many items.
@item Intelligent placement hints.
@item Read gmodel files.
@item More inspectors.
@item Sound and Image support.
@item gorm files were changed to directory wrappers for more flexibility.
@end itemize
@c ====================================================================

View file

@ -38,17 +38,6 @@ Known problems (things to do) -
@enumerate
@item Documentation - only a tiny start has been made on this!
@item Editors and inspectors need writing for most gui elements -
scrollviews
splitviews
etc etc
@item Support for color and images on buttons etc.
This requires improved image and color support in the gui library
@item Support for fonts etc
This requires improved font management support in the gui library
@end enumerate
@section Acknowledgements

2
Gorm.m
View file

@ -1089,7 +1089,7 @@ static NSButtonType _buttonTypeForObject( id button )
keyEquivalent: @""];
[[aMenu addItemWithTitle: @"Font Panel"
action: @selector(orderFrontFontPanel:)
keyEquivalent: @"f"] setTarget: [NSFontManager sharedFontManager]];
keyEquivalent: @"t"] setTarget: [NSFontManager sharedFontManager]];
menuItem = [mainMenu addItemWithTitle: @"Edit"
action: NULL
keyEquivalent: @""];

View file

@ -10,7 +10,7 @@ compile and use Gorm. The core packages are, at a minimum:
* gnustep-gui
* gnustep-xgps or gnustep-xdps
* gnustep-back
See <http://www.gnustep.org/> for further information.

8
NEWS
View file

@ -15,6 +15,14 @@ Casamento and Pierre-Yves Rivaille. Thanks guys!
* Intelligent placement hints.
* Read gmodel files.
* More inspectors.
* Sound and Image support.
* gorm files were changed to directory wrappers for more flexibility.
Noteworthy changes in version `0.1.0'
=====================================

9
README
View file

@ -34,15 +34,6 @@ nicely - you really can see things working.
1. Documentation - only a tiny start has been made on this!
2. Editors and inspectors need writing for most gui elements -
scrollviews splitviews etc etc
3. Support for color and images on buttons etc. This requires
improved image and color support in the gui library
4. Support for fonts etc This requires improved font management
support in the gui library
Acknowledgements
================

View file

@ -5,10 +5,10 @@
GNUSTEP_GCC=2.8.0
# GNUstep version required
GNUSTEP_CORE_VERSION=0.7.5
GNUSTEP_CORE_VERSION=0.8.3
# The version number of this release.
MAJOR_VERSION=0
MINOR_VERSION=1
SUBMINOR_VERSION=9
MINOR_VERSION=2
SUBMINOR_VERSION=0
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}