mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
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:
parent
6b09ae9892
commit
244f75ced7
10 changed files with 32 additions and 27 deletions
10
ANNOUNCE
10
ANNOUNCE
|
@ -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?
|
||||
========================================
|
||||
|
||||
|
|
|
@ -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:]):
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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 ====================================================================
|
||||
|
|
|
@ -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
2
Gorm.m
|
@ -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: @""];
|
||||
|
|
2
INSTALL
2
INSTALL
|
@ -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
8
NEWS
|
@ -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
9
README
|
@ -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
|
||||
================
|
||||
|
||||
|
|
6
Version
6
Version
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue