mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
Adding changes to files for Gorm 0.3.0
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@17330 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7992efeb9c
commit
a28d99df15
9 changed files with 73 additions and 30 deletions
29
ANNOUNCE
29
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
ANNOUNCE
|
||||
********
|
||||
|
||||
This is version 0.2.6 of Gorm.
|
||||
This is version 0.3.0 of Gorm.
|
||||
|
||||
What is Gorm?
|
||||
=============
|
||||
|
@ -12,15 +12,30 @@ perhaps GNUstep Object Relationship Modeler).
|
|||
Gorm is a clone of the NeXTstep `Interface Builder' application for
|
||||
GNUstep.
|
||||
|
||||
Gorm is not `gormless' (a Yorkshire dialect word that my parents
|
||||
used when they spotted me staring, slack-jawed, at the TV).
|
||||
Noteworthy changes in version `0.3.0'
|
||||
=====================================
|
||||
|
||||
Noteworthy changes in version `0.2.6'.
|
||||
======================================
|
||||
* Preferences added.
|
||||
|
||||
Fix an incompatibility with the gui 0.8.4 release
|
||||
* User can now enable and disable guidlines for easier editing.
|
||||
|
||||
* Better combo box and tab view inspector
|
||||
* Refactored code into GormLib which is a clone of the
|
||||
InterfaceBuilder framework. This facilitates creating palettes
|
||||
and inspectors outside of Gorm.
|
||||
|
||||
* Added class inspector for easier editing of classes. This gives
|
||||
the user the option to use either the outline view or the
|
||||
inspector to edit new classes.
|
||||
|
||||
* Added inspectors for the following: NSScrollView,
|
||||
NSProgressIndicator, NSColorWell, GormImageInspector (for images
|
||||
added to .gorm files).
|
||||
|
||||
* Improved look of NSTabView inspector.
|
||||
|
||||
* Removed all warnings from the code.
|
||||
|
||||
* various bug fixes.
|
||||
|
||||
How can I get support for this software?
|
||||
========================================
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2003-07-23 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Version 0.3.0
|
||||
|
||||
2003-07-23 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/0Menu/GormNSMenu.m: Added category to access
|
||||
|
|
|
@ -13,9 +13,6 @@ GNUstep Object Relationship Modeler).
|
|||
|
||||
Gorm is a clone of the NeXTstep `Interface Builder' application for GNUstep.
|
||||
|
||||
Gorm is not `gormless' (a Yorkshire dialect word that my parents used when they
|
||||
spotted me staring, slack-jawed, at the TV).
|
||||
|
||||
@set ANNOUNCE-ONLY
|
||||
@include news.texi
|
||||
@clear ANNOUNCE-ONLY
|
||||
|
|
|
@ -4,6 +4,22 @@
|
|||
@include version.texi
|
||||
@end ifset
|
||||
|
||||
@section Noteworthy changes in version @samp{0.3.0}
|
||||
|
||||
@itemize @bullet
|
||||
@item Preferences added.
|
||||
@item User can now enable and disable guidlines for easier editing.
|
||||
@item Refactored code into GormLib which is a clone of the InterfaceBuilder framework. This facilitates creating palettes and inspectors outside of Gorm.
|
||||
@item Added class inspector for easier editing of classes. This gives the user the option to use either the outline view or the inspector to edit new classes.
|
||||
@item Added inspectors for the following: NSScrollView, NSProgressIndicator, NSColorWell, GormImageInspector (for images added to .gorm files).
|
||||
@item Improved look of NSTabView inspector.
|
||||
@item Removed all warnings from the code.
|
||||
@item various bug fixes.
|
||||
@end itemize
|
||||
@c ====================================================================
|
||||
@c Keep the next line just below the list of changes in most recent version.
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
|
||||
@section Noteworthy changes in version @samp{0.2.5}.
|
||||
|
||||
Many fixes and improvements to make the app work better.
|
||||
|
@ -14,10 +30,6 @@ Many fixes and improvements to make the app work better.
|
|||
@item Re-add multiple selection via mouse drag.
|
||||
@end itemize
|
||||
|
||||
@c ====================================================================
|
||||
@c Keep the next line just below the list of changes in most recent version.
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
|
||||
@section Noteworthy changes in version @samp{0.2.0} snapshot.
|
||||
|
||||
Gobs of improvements, mostly due to the hard work of
|
||||
|
|
|
@ -14,9 +14,6 @@ GNUstep Object Relationship Modeler).
|
|||
|
||||
Gorm is a clone of the NeXTstep `Interface Builder' application for GNUstep.
|
||||
|
||||
Gorm is not `gormless' (a Yorkshire dialect word that my parents used when they
|
||||
spotted me staring, slack-jawed, at the TV).
|
||||
|
||||
Gorm is part of the GNUstep project, and is copyrighted by the Free Software
|
||||
Foundation.
|
||||
|
||||
|
|
8
INSTALL
8
INSTALL
|
@ -16,14 +16,10 @@ compile and use Gorm. The core packages are, at a minimum:
|
|||
|
||||
Build and Install
|
||||
-----------------
|
||||
You need
|
||||
|
||||
To build Gorm, you need to install GormLib first.
|
||||
Steps to build:
|
||||
|
||||
cd GormLib; make; su -c "make install; cd -
|
||||
|
||||
To install Gorm itself :
|
||||
type 'make'. To install, type 'make install'
|
||||
* make && make install
|
||||
|
||||
Trouble
|
||||
-------
|
||||
|
|
27
NEWS
27
NEWS
|
@ -1,7 +1,32 @@
|
|||
Noteworthy changes in version `0.3.0'
|
||||
=====================================
|
||||
|
||||
* Preferences added.
|
||||
|
||||
* User can now enable and disable guidlines for easier editing.
|
||||
|
||||
* Refactored code into GormLib which is a clone of the
|
||||
InterfaceBuilder framework. This facilitates creating palettes
|
||||
and inspectors outside of Gorm.
|
||||
|
||||
* Added class inspector for easier editing of classes. This gives
|
||||
the user the option to use either the outline view or the
|
||||
inspector to edit new classes.
|
||||
|
||||
* Added inspectors for the following: NSScrollView,
|
||||
NSProgressIndicator, NSColorWell, GormImageInspector (for images
|
||||
added to .gorm files).
|
||||
|
||||
* Improved look of NSTabView inspector.
|
||||
|
||||
* Removed all warnings from the code.
|
||||
|
||||
* various bug fixes.
|
||||
|
||||
Noteworthy changes in version `0.2.5'.
|
||||
======================================
|
||||
|
||||
Many fixes and improvements to make the app work better.
|
||||
Many fixes and improvements to make the app work better.
|
||||
|
||||
* Better parsing of headers
|
||||
|
||||
|
|
3
README
3
README
|
@ -10,9 +10,6 @@ perhaps GNUstep Object Relationship Modeler).
|
|||
Gorm is a clone of the NeXTstep `Interface Builder' application for
|
||||
GNUstep.
|
||||
|
||||
Gorm is not `gormless' (a Yorkshire dialect word that my parents
|
||||
used when they spotted me staring, slack-jawed, at the TV).
|
||||
|
||||
Gorm is part of the GNUstep project, and is copyrighted by the Free
|
||||
Software Foundation.
|
||||
|
||||
|
|
6
Version
6
Version
|
@ -5,10 +5,10 @@
|
|||
GNUSTEP_GCC=2.8.0
|
||||
|
||||
# GNUstep version required
|
||||
GNUSTEP_CORE_VERSION=0.8.3
|
||||
GNUSTEP_CORE_VERSION=0.8.8
|
||||
|
||||
# The version number of this release.
|
||||
MAJOR_VERSION=0
|
||||
MINOR_VERSION=2
|
||||
SUBMINOR_VERSION=6
|
||||
MINOR_VERSION=3
|
||||
SUBMINOR_VERSION=0
|
||||
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
|
||||
|
|
Loading…
Reference in a new issue