mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 13:50:37 +00:00
Version 0.12.0
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25037 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3f9af34a0f
commit
c63cdce5c1
6 changed files with 186 additions and 53 deletions
30
ANNOUNCE
30
ANNOUNCE
|
@ -1,7 +1,7 @@
|
||||||
1 ANNOUNCE
|
1 ANNOUNCE
|
||||||
**********
|
**********
|
||||||
|
|
||||||
This is version 0.11.0 of the GNUstep GUI library (`gnustep-gui').
|
This is version 0.12.0 of the GNUstep GUI library (`gnustep-gui').
|
||||||
|
|
||||||
1.1 What is the GNUstep GUI Library?
|
1.1 What is the GNUstep GUI Library?
|
||||||
====================================
|
====================================
|
||||||
|
@ -27,21 +27,35 @@ systems.
|
||||||
GNUstep Base Library, the TIFF Graphics library, and a back-end
|
GNUstep Base Library, the TIFF Graphics library, and a back-end
|
||||||
component like the GNUstep 'Back' Backend.
|
component like the GNUstep 'Back' Backend.
|
||||||
|
|
||||||
1.2 Noteworthy changes in version `0.11.0'
|
1.2 Noteworthy changes in version `0.12.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Added support for keyed encoding in all gui classes.
|
It has been a long time since the last release and many things have been
|
||||||
|
added and changed, including new classes, new ivars, and new methods.
|
||||||
|
|
||||||
* Added mechanism to allow for dynamic extension of model loading
|
* Lots of improvements to the NSBitmapImage subclasses thanks to
|
||||||
mechanism
|
Mark Tracy
|
||||||
|
|
||||||
* Implemented glue code in GSNibCompatibility for classes such as
|
* GSTheme and other classes were added to improve support of theming.
|
||||||
NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading.
|
|
||||||
|
* Added new methods from Mac OS X 10.4 for NSControl, NSResponder,
|
||||||
|
NSDocument, NSPrintOperation, NSWindowController, NSCell,
|
||||||
|
NSMenuItem, NSView. Some ivar names were changed also.
|
||||||
|
|
||||||
|
* Added new ivars for NSMenuItem, NSPrintOperation, NSTableView,
|
||||||
|
NSDrawer, NSScrollView.
|
||||||
|
|
||||||
|
* New classes from Mac OS X 10.4 and earlier were added including
|
||||||
|
NSLevelIndicator, NSObjectController, NSUserDefaultsController,
|
||||||
|
NSKeyValueBinding, NSArrayController, NSController.
|
||||||
|
|
||||||
|
* NSSpellServer and NSAffineTransform was moved to GNUstep base for
|
||||||
|
Mac OS X compatibility.
|
||||||
|
|
||||||
1.3 Where can you get it? How can you compile it?
|
1.3 Where can you get it? How can you compile it?
|
||||||
==================================================
|
==================================================
|
||||||
|
|
||||||
The gstep-gui-0.11.0.tar.gz distribution file has been placed at
|
The gstep-gui-0.12.0.tar.gz distribution file has been placed at
|
||||||
`ftp://ftp.gnustep.org/pub/gnustep/core'.
|
`ftp://ftp.gnustep.org/pub/gnustep/core'.
|
||||||
|
|
||||||
Read the INSTALL file or the GNUstep-HOWTO for installation
|
Read the INSTALL file or the GNUstep-HOWTO for installation
|
||||||
|
|
11
ChangeLog
11
ChangeLog
|
@ -1,7 +1,12 @@
|
||||||
2007-04-12 Xavier Glattard <xavier.glattard@online.fr>
|
2007-04-13 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* Version 0.12.0
|
||||||
|
* Source/NSAnimation.m: Remove unused and incorrect include.
|
||||||
|
|
||||||
|
2007-04-12 Xavier Glattard <xavier.glattard@online.fr>
|
||||||
|
|
||||||
* Headers/AppKit/NSAnimation.h
|
* Headers/AppKit/NSAnimation.h
|
||||||
* Source/NSAnimation.m
|
* Source/NSAnimation.m
|
||||||
* Headers/Additions/GNUstepGUI/GSAnimator.h
|
* Headers/Additions/GNUstepGUI/GSAnimator.h
|
||||||
* Source/GSAnimator.m
|
* Source/GSAnimator.m
|
||||||
- attempt to follow GNU coding standards
|
- attempt to follow GNU coding standards
|
||||||
|
|
|
@ -19,6 +19,76 @@
|
||||||
changes and other information that might help developers and users
|
changes and other information that might help developers and users
|
||||||
migrate to using a newer version of the library.
|
migrate to using a newer version of the library.
|
||||||
</p>
|
</p>
|
||||||
|
<section>
|
||||||
|
<heading>Version 0.12.0</heading>
|
||||||
|
<p>
|
||||||
|
It has been a long time since the last release and many things
|
||||||
|
have been added and changed, including new classes, new ivars,
|
||||||
|
and new methods.
|
||||||
|
</p>
|
||||||
|
<deflist>
|
||||||
|
<term>Tooltips</term>
|
||||||
|
<desc>
|
||||||
|
A Tooltip implementation was added.
|
||||||
|
</desc>
|
||||||
|
<term>NSBitmapImage Improvements</term>
|
||||||
|
<desc>
|
||||||
|
Lots of improvements to the NSBitmapImage subclasses.
|
||||||
|
</desc>
|
||||||
|
<term>Theming Improvements</term>
|
||||||
|
<desc>
|
||||||
|
GSTheme and other classes were added to improve support
|
||||||
|
of theming.
|
||||||
|
</desc>
|
||||||
|
<term>New Methods added</term>
|
||||||
|
<desc>
|
||||||
|
Added new methods from Mac OS X 10.4 for NSControl, NSResponder,
|
||||||
|
NSDocument, NSPrintOperation, NSWindowController, NSCell,
|
||||||
|
NSMenuItem, NSView. Some ivar names were changed also.
|
||||||
|
</desc>
|
||||||
|
<term>New ivars added</term>
|
||||||
|
<desc>
|
||||||
|
Added new ivars for NSMenuItem, NSPrintOperation, NSTableView,
|
||||||
|
NSDrawer, NSScrollView, NSAlert, NSTextView.
|
||||||
|
</desc>
|
||||||
|
<term>New Classes Added</term>
|
||||||
|
<desc>
|
||||||
|
New classes from Mac OS X 10.4 and earlier were added including
|
||||||
|
NSLevelIndicator, NSObjectController, NSUserDefaultsController,
|
||||||
|
NSKeyValueBinding, NSArrayController, NSController.
|
||||||
|
</desc>
|
||||||
|
<term>NSSpellServer moved to base</term>
|
||||||
|
<desc>
|
||||||
|
NSSpellServer was moved to GNUstep base for Mac OS X
|
||||||
|
compatibility.
|
||||||
|
</desc>
|
||||||
|
<term>NSTabViewType enumerations</term>
|
||||||
|
<desc>
|
||||||
|
Enumerations were changed to match values from Mac OS X.
|
||||||
|
</desc>
|
||||||
|
<term>GNUstep GUI updated for Make 2.0</term>
|
||||||
|
<desc>
|
||||||
|
GNUstep GUI was updated to work with GNUstep Make 2.0. This
|
||||||
|
includes versioned resources.
|
||||||
|
</desc>
|
||||||
|
<term>NSAffineTransform moved to base</term>
|
||||||
|
<desc>
|
||||||
|
Much of NSAffineTransform was moved to gnustep-base to match
|
||||||
|
with Mac OS X. Many older methods were marked as deprecated
|
||||||
|
in favor of the more recent Mac OS X methods.
|
||||||
|
</desc>
|
||||||
|
<term>NSAlert in alternate threads</term>
|
||||||
|
<desc>
|
||||||
|
NSAlerts are performed in the main thread even if called
|
||||||
|
from another thread.
|
||||||
|
</desc>
|
||||||
|
<term>NSAnimation Class Added</term>
|
||||||
|
<desc>
|
||||||
|
Preliminary code for the NSAnimation class has been added.
|
||||||
|
Only NSAnimationNonBlocking mode implemented.
|
||||||
|
</desc>
|
||||||
|
</deflist>
|
||||||
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<heading>Version 0.11.0</heading>
|
<heading>Version 0.11.0</heading>
|
||||||
<deflist>
|
<deflist>
|
||||||
|
|
|
@ -9,6 +9,28 @@
|
||||||
The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSION}}.
|
The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSION}}.
|
||||||
@end ifclear
|
@end ifclear
|
||||||
|
|
||||||
|
@section Noteworthy changes in version @samp{0.12.0}
|
||||||
|
|
||||||
|
It has been a long time since the last release and many things have been
|
||||||
|
added and changed, including new classes, new ivars, and new methods.
|
||||||
|
|
||||||
|
@itemize @bullet
|
||||||
|
@item Lots of improvements to the NSBitmapImage subclasses thanks to Mark Tracy
|
||||||
|
@item GSTheme and other classes were added to improve support of theming.
|
||||||
|
@item Added new methods from Mac OS X 10.4 for NSControl, NSResponder,
|
||||||
|
NSDocument, NSPrintOperation, NSWindowController, NSCell,
|
||||||
|
NSMenuItem, NSView. Some ivar names were changed also.
|
||||||
|
@item Added new ivars for NSMenuItem, NSPrintOperation, NSTableView,
|
||||||
|
NSDrawer, NSScrollView.
|
||||||
|
@item New classes from Mac OS X 10.4 and earlier were added including
|
||||||
|
NSLevelIndicator, NSObjectController, NSUserDefaultsController,
|
||||||
|
NSKeyValueBinding, NSArrayController, NSController.
|
||||||
|
@item NSSpellServer and NSAffineTransform was moved to GNUstep base
|
||||||
|
for Mac OS X compatibility.
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
@ifclear ANNOUNCE-ONLY
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{0.11.0}
|
@section Noteworthy changes in version @samp{0.11.0}
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
@ -20,8 +42,6 @@ classes such as NSIBObjectData, NSClassSwapper, etc. to
|
||||||
facilitate nib loading.
|
facilitate nib loading.
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
@ifclear ANNOUNCE-ONLY
|
|
||||||
|
|
||||||
@section Noteworthy changes in version @samp{0.10.3}
|
@section Noteworthy changes in version @samp{0.10.3}
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
|
103
NEWS
103
NEWS
|
@ -1,9 +1,34 @@
|
||||||
1 NEWS
|
1 NEWS
|
||||||
******
|
******
|
||||||
|
|
||||||
The currently released version of the library is `0.11.0'.
|
The currently released version of the library is `0.12.0'.
|
||||||
|
|
||||||
1.1 Noteworthy changes in version `0.11.0'
|
1.1 Noteworthy changes in version `0.12.0'
|
||||||
|
==========================================
|
||||||
|
|
||||||
|
It has been a long time since the last release and many things have been
|
||||||
|
added and changed, including new classes, new ivars, and new methods.
|
||||||
|
|
||||||
|
* Lots of improvements to the NSBitmapImage subclasses thanks to
|
||||||
|
Mark Tracy
|
||||||
|
|
||||||
|
* GSTheme and other classes were added to improve support of theming.
|
||||||
|
|
||||||
|
* Added new methods from Mac OS X 10.4 for NSControl, NSResponder,
|
||||||
|
NSDocument, NSPrintOperation, NSWindowController, NSCell,
|
||||||
|
NSMenuItem, NSView. Some ivar names were changed also.
|
||||||
|
|
||||||
|
* Added new ivars for NSMenuItem, NSPrintOperation, NSTableView,
|
||||||
|
NSDrawer, NSScrollView.
|
||||||
|
|
||||||
|
* New classes from Mac OS X 10.4 and earlier were added including
|
||||||
|
NSLevelIndicator, NSObjectController, NSUserDefaultsController,
|
||||||
|
NSKeyValueBinding, NSArrayController, NSController.
|
||||||
|
|
||||||
|
* NSSpellServer and NSAffineTransform was moved to GNUstep base for
|
||||||
|
Mac OS X compatibility.
|
||||||
|
|
||||||
|
1.2 Noteworthy changes in version `0.11.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Added support for keyed encoding in all gui classes.
|
* Added support for keyed encoding in all gui classes.
|
||||||
|
@ -14,26 +39,26 @@ The currently released version of the library is `0.11.0'.
|
||||||
* Implemented glue code in GSNibCompatibility for classes such as
|
* Implemented glue code in GSNibCompatibility for classes such as
|
||||||
NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading.
|
NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading.
|
||||||
|
|
||||||
1.2 Noteworthy changes in version `0.10.3'
|
1.3 Noteworthy changes in version `0.10.3'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Horizontal menus now work
|
* Horizontal menus now work
|
||||||
|
|
||||||
* Better support for tracking active applications.
|
* Better support for tracking active applications.
|
||||||
|
|
||||||
1.3 Noteworthy changes in version `0.10.2'
|
1.4 Noteworthy changes in version `0.10.2'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Mostly bug fixes.
|
Mostly bug fixes.
|
||||||
|
|
||||||
1.4 Noteworthy changes in version `0.10.1'
|
1.5 Noteworthy changes in version `0.10.1'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
GNUstep now uses v19 of portaudio for the sound daemon. Version v19
|
GNUstep now uses v19 of portaudio for the sound daemon. Version v19
|
||||||
hasn't been officially released, but it is still used in several
|
hasn't been officially released, but it is still used in several
|
||||||
distributions (SuSE, etc) as v18 is very old.
|
distributions (SuSE, etc) as v18 is very old.
|
||||||
|
|
||||||
1.5 Noteworthy changes in version `0.10.0'
|
1.6 Noteworthy changes in version `0.10.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
This release is binary incompatible with previous releases. The
|
This release is binary incompatible with previous releases. The
|
||||||
|
@ -45,7 +70,7 @@ new version.
|
||||||
|
|
||||||
* Keyed encoding is supported in many classes.
|
* Keyed encoding is supported in many classes.
|
||||||
|
|
||||||
1.6 Noteworthy changes in version `0.9.5'
|
1.7 Noteworthy changes in version `0.9.5'
|
||||||
=========================================
|
=========================================
|
||||||
|
|
||||||
* Beginnings of CUPS interface were added.
|
* Beginnings of CUPS interface were added.
|
||||||
|
@ -58,7 +83,7 @@ new version.
|
||||||
|
|
||||||
* You can find the GUI library's version using the Info.plist
|
* You can find the GUI library's version using the Info.plist
|
||||||
|
|
||||||
1.7 Noteworthy changes in version `0.9.4'
|
1.8 Noteworthy changes in version `0.9.4'
|
||||||
=========================================
|
=========================================
|
||||||
|
|
||||||
* The printing classes have been completely reorganized to
|
* The printing classes have been completely reorganized to
|
||||||
|
@ -73,7 +98,7 @@ new version.
|
||||||
|
|
||||||
* Some improvement of NSDataLink classes.
|
* Some improvement of NSDataLink classes.
|
||||||
|
|
||||||
1.8 Noteworthy changes in version `0.9.3'
|
1.9 Noteworthy changes in version `0.9.3'
|
||||||
=========================================
|
=========================================
|
||||||
|
|
||||||
* Spell checker reimplemented using libaspell
|
* Spell checker reimplemented using libaspell
|
||||||
|
@ -85,8 +110,8 @@ new version.
|
||||||
* Binary incompatibilites from ivar additions in NSView and
|
* Binary incompatibilites from ivar additions in NSView and
|
||||||
subclasses.
|
subclasses.
|
||||||
|
|
||||||
1.9 Noteworthy changes in version `0.9.2'
|
1.10 Noteworthy changes in version `0.9.2'
|
||||||
=========================================
|
==========================================
|
||||||
|
|
||||||
* Working NSToolbar implementation
|
* Working NSToolbar implementation
|
||||||
|
|
||||||
|
@ -104,7 +129,7 @@ new version.
|
||||||
|
|
||||||
* Much improved loading of gorm files
|
* Much improved loading of gorm files
|
||||||
|
|
||||||
1.10 Noteworthy changes in version `0.9.1'
|
1.11 Noteworthy changes in version `0.9.1'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* NSWindow - DnD works on whole window and events are propogated up
|
* NSWindow - DnD works on whole window and events are propogated up
|
||||||
|
@ -112,14 +137,14 @@ new version.
|
||||||
|
|
||||||
* Absolute paths and DnD works in OpenPanels.
|
* Absolute paths and DnD works in OpenPanels.
|
||||||
|
|
||||||
1.11 Noteworthy changes in version `0.9.0'
|
1.12 Noteworthy changes in version `0.9.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Improvements in various classes, include NSPopUpButton,
|
Improvements in various classes, include NSPopUpButton,
|
||||||
NSBitmapImageRep, NSMenu, NSToolbar. Added support for thumbnail images
|
NSBitmapImageRep, NSMenu, NSToolbar. Added support for thumbnail images
|
||||||
in NSWorkspace.
|
in NSWorkspace.
|
||||||
|
|
||||||
1.12 Noteworthy changes in version `0.8.9'
|
1.13 Noteworthy changes in version `0.8.9'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Note that many headers have moved to new locations (both in the package
|
Note that many headers have moved to new locations (both in the package
|
||||||
|
@ -128,14 +153,14 @@ applications may not compile because they cannot find the right header.
|
||||||
|
|
||||||
* New Language Setup documentation.
|
* New Language Setup documentation.
|
||||||
|
|
||||||
1.13 Noteworthy changes in version `0.8.8'
|
1.14 Noteworthy changes in version `0.8.8'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Updated LanguageSetup documentation
|
* Updated LanguageSetup documentation
|
||||||
|
|
||||||
* Improved RTF reader (unicode support, etc).
|
* Improved RTF reader (unicode support, etc).
|
||||||
|
|
||||||
1.14 Noteworthy changes in version `0.8.7'
|
1.15 Noteworthy changes in version `0.8.7'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* NSBezierPath glyph methods implemented (depends on backend).
|
* NSBezierPath glyph methods implemented (depends on backend).
|
||||||
|
@ -145,7 +170,7 @@ applications may not compile because they cannot find the right header.
|
||||||
* Added default to load user-defined bundles (GSAppKitUserBundles
|
* Added default to load user-defined bundles (GSAppKitUserBundles
|
||||||
default).
|
default).
|
||||||
|
|
||||||
1.15 Noteworthy changes in version `0.8.6'
|
1.16 Noteworthy changes in version `0.8.6'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Updated to install in new locations based on changes in gnustep-make
|
Updated to install in new locations based on changes in gnustep-make
|
||||||
|
@ -157,12 +182,12 @@ Updated to install in new locations based on changes in gnustep-make
|
||||||
|
|
||||||
* Lots of menu improvements.
|
* Lots of menu improvements.
|
||||||
|
|
||||||
1.16 Noteworthy changes in version `0.8.5'
|
1.17 Noteworthy changes in version `0.8.5'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Bug fixes. NSStringDrawing now uses text system implementation.
|
Bug fixes. NSStringDrawing now uses text system implementation.
|
||||||
|
|
||||||
1.17 Noteworthy changes in version `0.8.4'
|
1.18 Noteworthy changes in version `0.8.4'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
This release features a brand new text and layout system thanks to
|
This release features a brand new text and layout system thanks to
|
||||||
|
@ -176,7 +201,7 @@ Alexander Malmberg. Other improvements include:
|
||||||
|
|
||||||
* NSToolbar partially implemented.
|
* NSToolbar partially implemented.
|
||||||
|
|
||||||
1.18 Noteworthy changes in version `0.8.3'
|
1.19 Noteworthy changes in version `0.8.3'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Additions for Gorm support.
|
* Additions for Gorm support.
|
||||||
|
@ -193,7 +218,7 @@ Alexander Malmberg. Other improvements include:
|
||||||
|
|
||||||
* Key view handling rewritten.
|
* Key view handling rewritten.
|
||||||
|
|
||||||
1.19 Noteworthy changes in version `0.8.2'
|
1.20 Noteworthy changes in version `0.8.2'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Handle fonts that aren't found better.
|
* Handle fonts that aren't found better.
|
||||||
|
@ -210,7 +235,7 @@ Alexander Malmberg. Other improvements include:
|
||||||
|
|
||||||
* Fix firstResponder status in text fields.
|
* Fix firstResponder status in text fields.
|
||||||
|
|
||||||
1.20 Noteworthy changes in version `0.8.1'
|
1.21 Noteworthy changes in version `0.8.1'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Handle scaled curves correctly.
|
* Handle scaled curves correctly.
|
||||||
|
@ -223,10 +248,10 @@ Alexander Malmberg. Other improvements include:
|
||||||
|
|
||||||
* Spell checker starts correctly now.
|
* Spell checker starts correctly now.
|
||||||
|
|
||||||
1.21 Noteworthy changes in version `0.8.0'
|
1.22 Noteworthy changes in version `0.8.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
1.22 Noteworthy changes in version `0.7.9'
|
1.23 Noteworthy changes in version `0.7.9'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* NSTableView, NSOutlineView improvements.
|
* NSTableView, NSOutlineView improvements.
|
||||||
|
@ -235,14 +260,14 @@ Alexander Malmberg. Other improvements include:
|
||||||
|
|
||||||
* Skeleton implementation of NSToolBar
|
* Skeleton implementation of NSToolBar
|
||||||
|
|
||||||
1.23 Noteworthy changes in version `0.7.8'
|
1.24 Noteworthy changes in version `0.7.8'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Wheel color picker, standard color picker (bundles) added.
|
* Wheel color picker, standard color picker (bundles) added.
|
||||||
|
|
||||||
* System colors now use named colors. Easier configuration
|
* System colors now use named colors. Easier configuration
|
||||||
|
|
||||||
1.24 Noteworthy changes in version `0.7.7'
|
1.25 Noteworthy changes in version `0.7.7'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
The graphics/window interface was completely revamped. Window functions
|
The graphics/window interface was completely revamped. Window functions
|
||||||
|
@ -266,7 +291,7 @@ computers, although it is in a very alpha state.
|
||||||
|
|
||||||
* NSOutlineView much improved.
|
* NSOutlineView much improved.
|
||||||
|
|
||||||
1.25 Noteworthy changes in version `0.7.6'
|
1.26 Noteworthy changes in version `0.7.6'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* NSOutlineView implemented.
|
* NSOutlineView implemented.
|
||||||
|
@ -279,7 +304,7 @@ computers, although it is in a very alpha state.
|
||||||
|
|
||||||
* Memory panel available from Info Panel.
|
* Memory panel available from Info Panel.
|
||||||
|
|
||||||
1.26 Noteworthy changes in version `0.7.5'
|
1.27 Noteworthy changes in version `0.7.5'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Drag and drop and image sliding much improved.
|
* Drag and drop and image sliding much improved.
|
||||||
|
@ -310,7 +335,7 @@ computers, although it is in a very alpha state.
|
||||||
|
|
||||||
* Gmodel code compiled as a separate bundle.
|
* Gmodel code compiled as a separate bundle.
|
||||||
|
|
||||||
1.27 Noteworthy changes in version `0.7.0'
|
1.28 Noteworthy changes in version `0.7.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo
|
* Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo
|
||||||
|
@ -326,7 +351,7 @@ computers, although it is in a very alpha state.
|
||||||
|
|
||||||
* NSColorWell works.
|
* NSColorWell works.
|
||||||
|
|
||||||
1.28 Noteworthy changes in version `0.6.7'
|
1.29 Noteworthy changes in version `0.6.7'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* App Icons can support documents dropped using DnD.
|
* App Icons can support documents dropped using DnD.
|
||||||
|
@ -353,7 +378,7 @@ computers, although it is in a very alpha state.
|
||||||
|
|
||||||
* Support middle mouse button.
|
* Support middle mouse button.
|
||||||
|
|
||||||
1.29 Noteworthy changes in version `0.6.6'
|
1.30 Noteworthy changes in version `0.6.6'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Window hints for motif and generic window managers.
|
* Window hints for motif and generic window managers.
|
||||||
|
@ -390,7 +415,7 @@ however, that the xdps backend is still considered experimental and you
|
||||||
may have to deal with many problems in order to get it working. We
|
may have to deal with many problems in order to get it working. We
|
||||||
recommend sticking with the xgps backend (the default) for now.
|
recommend sticking with the xgps backend (the default) for now.
|
||||||
|
|
||||||
1.30 Noteworthy changes in version `0.6.5'
|
1.31 Noteworthy changes in version `0.6.5'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Many of the basic GUI classes have been vastly improved or rewritten,
|
Many of the basic GUI classes have been vastly improved or rewritten,
|
||||||
|
@ -424,7 +449,7 @@ thanks to Nicola Pero <n.pero@mi.flashnet.it> and many others.
|
||||||
been written, thanks to Richard Frith-Macdonald
|
been written, thanks to Richard Frith-Macdonald
|
||||||
<richard@brainstorm.co.uk>
|
<richard@brainstorm.co.uk>
|
||||||
|
|
||||||
1.31 Noteworthy changes in version `0.6.0'
|
1.32 Noteworthy changes in version `0.6.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
A Huge amount of progress, although a lot still needs to be done. It's
|
A Huge amount of progress, although a lot still needs to be done. It's
|
||||||
|
@ -455,7 +480,7 @@ apps and libraries have been ported with little changes.
|
||||||
|
|
||||||
* Several fixes that at least double the speed of the gui.
|
* Several fixes that at least double the speed of the gui.
|
||||||
|
|
||||||
1.32 Noteworthy changes in version `0.5.5'
|
1.33 Noteworthy changes in version `0.5.5'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
Too extensive to list.
|
Too extensive to list.
|
||||||
|
@ -464,7 +489,7 @@ Too extensive to list.
|
||||||
cleanup of coordinate conversion code, etc.
|
cleanup of coordinate conversion code, etc.
|
||||||
|
|
||||||
|
|
||||||
1.33 Noteworthy changes in version `0.5.0'
|
1.34 Noteworthy changes in version `0.5.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* NSBrowser and NSBrowserCell have been implemented. There is one
|
* NSBrowser and NSBrowserCell have been implemented. There is one
|
||||||
|
@ -514,7 +539,7 @@ Too extensive to list.
|
||||||
* Several cleanups and as usual, many bug fixes.
|
* Several cleanups and as usual, many bug fixes.
|
||||||
|
|
||||||
|
|
||||||
1.34 Noteworthy changes in version `0.3.0'
|
1.35 Noteworthy changes in version `0.3.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Completely reworked the menu class. The NSMenu class is now
|
* Completely reworked the menu class. The NSMenu class is now
|
||||||
|
@ -546,7 +571,7 @@ Too extensive to list.
|
||||||
implement the NSCopying protocol and many others.
|
implement the NSCopying protocol and many others.
|
||||||
|
|
||||||
|
|
||||||
1.35 Noteworthy changes in version `0.2.0'
|
1.36 Noteworthy changes in version `0.2.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Additional NSImage and NSImageRep class work. Incorporated common
|
* Additional NSImage and NSImageRep class work. Incorporated common
|
||||||
|
@ -581,7 +606,7 @@ Too extensive to list.
|
||||||
* Many bug fixes and minor enhancements.
|
* Many bug fixes and minor enhancements.
|
||||||
|
|
||||||
|
|
||||||
1.36 Noteworthy changes in version `0.1.1'
|
1.37 Noteworthy changes in version `0.1.1'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Almost complete implementation of the PXKMenu and PXKMenuCell
|
* Almost complete implementation of the PXKMenu and PXKMenuCell
|
||||||
|
@ -605,7 +630,7 @@ Too extensive to list.
|
||||||
manipulating tiff files and images.
|
manipulating tiff files and images.
|
||||||
|
|
||||||
|
|
||||||
1.37 Noteworthy changes in version `0.1.0'
|
1.38 Noteworthy changes in version `0.1.0'
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
* Integration of the GNUstep X/DPS GUI Backend. This has finally
|
* Integration of the GNUstep X/DPS GUI Backend. This has finally
|
||||||
|
|
|
@ -34,7 +34,6 @@
|
||||||
#include <Foundation/NSThread.h>
|
#include <Foundation/NSThread.h>
|
||||||
#include <Foundation/NSLock.h>
|
#include <Foundation/NSLock.h>
|
||||||
#include <Foundation/NSDate.h>
|
#include <Foundation/NSDate.h>
|
||||||
#include <Foundation/NSAutoReleasePool.h>
|
|
||||||
#include <AppKit/NSApplication.h>
|
#include <AppKit/NSApplication.h>
|
||||||
|
|
||||||
// needed by NSViewAnimation
|
// needed by NSViewAnimation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue