mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 12:00:45 +00:00
release-chore: Updating for 0.26.1 which now requires -base 1.25.1.
This commit is contained in:
parent
d6a1c119f5
commit
58c7ef1dfe
6 changed files with 184 additions and 91 deletions
56
ANNOUNCE
56
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
1 ANNOUNCE
|
||||
**********
|
||||
|
||||
This is version 0.26.0 of the GNUstep GUI library ('gnustep-gui').
|
||||
This is version 0.26.1 of the GNUstep GUI library ('gnustep-gui').
|
||||
|
||||
1.1 What is the GNUstep GUI Library?
|
||||
====================================
|
||||
|
@ -32,48 +32,44 @@ Group's libjpeg library, and a back-end component from the GNUstep
|
|||
libraries. For example, to build the Cairo backend in the GNUstep Back
|
||||
library, you will need to install Cairo.
|
||||
|
||||
1.2 Noteworthy changes in version '0.26.0'
|
||||
1.2 Noteworthy changes in version '0.26.1'
|
||||
==========================================
|
||||
|
||||
This version was bumped due to previous binary incompatibilities between
|
||||
0.25.0 and 0.25.1. This version also includes numerous compatibility
|
||||
improvements from the Summer of Code project, and a wide variety of
|
||||
other fixes. Notably, it fixes the use of cupsGetPPD() in the printing
|
||||
system.
|
||||
This version is released to conincide with version 1.25.1 of
|
||||
gnustep-base, which contains changes required for this version of
|
||||
gnustep-gui and gnustep-back.
|
||||
|
||||
* printing: Add an include to get deprecated function cupsGetPPD() on
|
||||
newer CUPS systems.
|
||||
* chore: Bump required base version.
|
||||
* tiff: Support for writing resolution.
|
||||
* jpeg: Save resolution information if it is different from 72 dpi.
|
||||
* save panel: Fix return type of sorting function.
|
||||
* events: Add some newer Cocoa enums and one method with dummy
|
||||
implementation.
|
||||
* speech synthesis: NSSpeechSynthesizerDelegate is now a @protocol on
|
||||
runtimes that support it.
|
||||
* pasteboard: New type identifiers.
|
||||
* translations: Some work on Polish, Russian and German translations
|
||||
* cell: Improvements to mouse tracking logic on NSCell.
|
||||
* image: If an unknown named image is unarchived with a coder or
|
||||
keyed coder, keep the name.
|
||||
* screen: Add -backingScaleFactor and return 1.0.
|
||||
* window: Return 1.0 from -backingScaleFactor.
|
||||
It includes an important workaround for users of GNUstep Objective-C
|
||||
Runtime (libobjc2) and non-fragile ABI to avoid a bug in interaction
|
||||
between the clang compiler and the runtime when non-fragile ABI is in
|
||||
use. Specifically, Clang and the runtime may disagree on what is the
|
||||
offset of an ivar in a class's RAM. This manifested in a crash at
|
||||
application startup due to misalignment of _gcontext inside NSThread.
|
||||
See the mailing list discussion
|
||||
(http://lists.gnu.org/archive/html/discuss-gnustep/2017-12/msg00129.html)
|
||||
for more information.
|
||||
|
||||
* compatibility: Numerous stub implementations of constants, classes
|
||||
and methods to improve source-level compatibility.
|
||||
* other bugfixes
|
||||
It also contains the following changes:
|
||||
|
||||
* tests: Cleanup of warnings.
|
||||
* tests: Fix text system deallocation test.
|
||||
* printing: Undefine __BLOCKS__ before including cups.h, as some
|
||||
versions of the header expect that libdispatch is present and used
|
||||
if __BLOCKS__ is defined.
|
||||
* graphics context: Workaround for Clang+libobjc2+nonfragile ABI
|
||||
issue.
|
||||
|
||||
1.3 Where can you get it? How can you compile it?
|
||||
=================================================
|
||||
|
||||
The gnustep-gui-0.26.0.tar.gz distribution file has been placed at
|
||||
The gnustep-gui-0.26.1.tar.gz distribution file has been placed at
|
||||
<ftp://ftp.gnustep.org/pub/gnustep/core>.
|
||||
|
||||
It is accompanied by gnustep-back-0.26.0.tar.gz.sig, a PGP signature
|
||||
It is accompanied by gnustep-back-0.26.1.tar.gz.sig, a PGP signature
|
||||
which you can validate by putting both files in the same directory and
|
||||
using:
|
||||
|
||||
gpg --verify gnustep-gui-0.26.0.tar.gz.sig
|
||||
gpg --verify gnustep-gui-0.26.1.tar.gz.sig
|
||||
|
||||
Signature has been created using the key with the following
|
||||
fingerprint:
|
||||
|
|
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2017-12-31 Ivan Vucica <ivan@vucica.net>
|
||||
|
||||
* Documentation/announce.texi
|
||||
* Documentation/news.texi
|
||||
* Documentation/ReleaseNotes.gsdoc
|
||||
* ANNOUNCE
|
||||
* NEWS
|
||||
* Version: Cut a new release of gnustep-gui which requires
|
||||
gnustep-base 1.25.1.
|
||||
|
||||
2017-12-28 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Tests/gui/NSBezierPath/windingCountAtPoint.m
|
||||
|
|
|
@ -20,6 +20,39 @@
|
|||
migrate to using a newer version of the library.
|
||||
</p>
|
||||
|
||||
<section>
|
||||
<heading>0.26.1</heading>
|
||||
<p>
|
||||
This version is released to conincide with version 1.25.1 of
|
||||
gnustep-base, which contains changes required for this version of
|
||||
gnustep-gui and gnustep-back.
|
||||
</p>
|
||||
<p>
|
||||
It includes an important workaround for users of GNUstep
|
||||
Objective-C Runtime (libobjc2) and non-fragile ABI to avoid a bug
|
||||
in interaction between the clang compiler and the runtime
|
||||
when non-fragile ABI is in use. Specifically, Clang and the
|
||||
runtime may disagree on what is the offset of an ivar
|
||||
in a class's RAM. This manifested in a crash at application
|
||||
startup due to misalignment of _gcontext inside NSThread. See
|
||||
the
|
||||
<uref url="http://lists.gnu.org/archive/html/discuss-gnustep/2017-12/msg00129.html">mailing list discussion</uref>
|
||||
for more information.
|
||||
</p>
|
||||
<p>
|
||||
It also contains the following changes:
|
||||
</p>
|
||||
<deflist>
|
||||
<term>tests</term>
|
||||
<desc>Cleanup of warnings.</desc>
|
||||
<term>tests</term>
|
||||
<desc>Fix text system deallocation test.</desc>
|
||||
<term>printing</term>
|
||||
<desc>Undefine __BLOCKS__ before including cups.h, as some versions of the header expect that libdispatch is present and used if __BLOCKS__ is defined.</desc>
|
||||
<term>graphics context</term>
|
||||
<desc>Workaround for Clang+libobjc2+nonfragile ABI issue.</desc>
|
||||
</deflist>
|
||||
</section>
|
||||
<section>
|
||||
<heading>0.26.0</heading>
|
||||
<p>
|
||||
|
@ -111,6 +144,7 @@
|
|||
<term>Other</term>
|
||||
<desc>Numerous bug fixes and improvements in Cocoa compatibility.
|
||||
Spanish locale.</desc>
|
||||
</deflist>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
|
|
|
@ -9,6 +9,33 @@
|
|||
The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSION}}.
|
||||
@end ifclear
|
||||
|
||||
@section Noteworthy changes in version @samp{0.26.1}
|
||||
|
||||
This version is released to conincide with version 1.25.1 of
|
||||
gnustep-base, which contains changes required for this version of
|
||||
gnustep-gui and gnustep-back.
|
||||
|
||||
It includes an important workaround for users of GNUstep
|
||||
Objective-C Runtime (libobjc2) and non-fragile ABI to avoid a bug
|
||||
in interaction between the clang compiler and the runtime
|
||||
when non-fragile ABI is in use. Specifically, Clang and the
|
||||
runtime may disagree on what is the offset of an ivar
|
||||
in a class's RAM. This manifested in a crash at application
|
||||
startup due to misalignment of _gcontext inside NSThread. See
|
||||
the
|
||||
@uref{http://lists.gnu.org/archive/html/discuss-gnustep/2017-12/msg00129.html, mailing list discussion}
|
||||
for more information.
|
||||
|
||||
It also contains the following changes:
|
||||
|
||||
@itemize @bullet
|
||||
@item tests: Cleanup of warnings.
|
||||
@item tests: Fix text system deallocation test.
|
||||
@item printing: Undefine __BLOCKS__ before including cups.h, as some versions of the header expect that libdispatch is present and used if __BLOCKS__ is defined.
|
||||
@item graphics context: Workaround for Clang+libobjc2+nonfragile ABI issue.
|
||||
@end itemize
|
||||
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
@section Noteworthy changes in version @samp{0.26.0}
|
||||
|
||||
This version was bumped due to previous binary incompatibilities
|
||||
|
@ -36,7 +63,6 @@ use of cupsGetPPD() in the printing system.
|
|||
@item other bugfixes
|
||||
@end itemize
|
||||
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
@section Noteworthy changes in version @samp{0.25.1}
|
||||
|
||||
@itemize @bullet
|
||||
|
|
141
NEWS
141
NEWS
|
@ -1,9 +1,36 @@
|
|||
1 NEWS
|
||||
******
|
||||
|
||||
The currently released version of the library is '0.26.0'.
|
||||
The currently released version of the library is '0.26.1'.
|
||||
|
||||
1.1 Noteworthy changes in version '0.26.0'
|
||||
1.1 Noteworthy changes in version '0.26.1'
|
||||
==========================================
|
||||
|
||||
This version is released to conincide with version 1.25.1 of
|
||||
gnustep-base, which contains changes required for this version of
|
||||
gnustep-gui and gnustep-back.
|
||||
|
||||
It includes an important workaround for users of GNUstep Objective-C
|
||||
Runtime (libobjc2) and non-fragile ABI to avoid a bug in interaction
|
||||
between the clang compiler and the runtime when non-fragile ABI is in
|
||||
use. Specifically, Clang and the runtime may disagree on what is the
|
||||
offset of an ivar in a class's RAM. This manifested in a crash at
|
||||
application startup due to misalignment of _gcontext inside NSThread.
|
||||
See the mailing list discussion
|
||||
(http://lists.gnu.org/archive/html/discuss-gnustep/2017-12/msg00129.html)
|
||||
for more information.
|
||||
|
||||
It also contains the following changes:
|
||||
|
||||
* tests: Cleanup of warnings.
|
||||
* tests: Fix text system deallocation test.
|
||||
* printing: Undefine __BLOCKS__ before including cups.h, as some
|
||||
versions of the header expect that libdispatch is present and used
|
||||
if __BLOCKS__ is defined.
|
||||
* graphics context: Workaround for Clang+libobjc2+nonfragile ABI
|
||||
issue.
|
||||
|
||||
1.2 Noteworthy changes in version '0.26.0'
|
||||
==========================================
|
||||
|
||||
This version was bumped due to previous binary incompatibilities between
|
||||
|
@ -34,7 +61,7 @@ system.
|
|||
and methods to improve source-level compatibility.
|
||||
* other bugfixes
|
||||
|
||||
1.2 Noteworthy changes in version '0.25.1'
|
||||
1.3 Noteworthy changes in version '0.25.1'
|
||||
==========================================
|
||||
|
||||
* JPEG (saving) alpha channel fixes and size with resolution != 72
|
||||
|
@ -45,7 +72,7 @@ system.
|
|||
* Corrected layout of empty strings
|
||||
* Only update visible menus
|
||||
|
||||
1.3 Noteworthy changes in version '0.25.0'
|
||||
1.4 Noteworthy changes in version '0.25.0'
|
||||
==========================================
|
||||
|
||||
* Fixes for new GIF library versions
|
||||
|
@ -60,14 +87,14 @@ system.
|
|||
* Numerous theme tweaks
|
||||
* Spanish locale
|
||||
|
||||
1.4 Noteworthy changes in version '0.24.1'
|
||||
1.5 Noteworthy changes in version '0.24.1'
|
||||
==========================================
|
||||
|
||||
From a look through ChangeLog, we can see a lot of bugfixes for this
|
||||
release, with the main focus on avoiding display glitches and improving
|
||||
OSX compatibility.
|
||||
|
||||
1.5 Noteworthy changes in version '0.24.0'
|
||||
1.6 Noteworthy changes in version '0.24.0'
|
||||
==========================================
|
||||
|
||||
New features include:
|
||||
|
@ -79,13 +106,13 @@ New features include:
|
|||
|
||||
Many bugfixes.
|
||||
|
||||
1.6 Noteworthy changes in version '0.23.1'
|
||||
1.7 Noteworthy changes in version '0.23.1'
|
||||
==========================================
|
||||
|
||||
This is a bugfix release, primarily to deal with coding/archiving
|
||||
issues.
|
||||
|
||||
1.7 Noteworthy changes in version '0.22.0'
|
||||
1.8 Noteworthy changes in version '0.22.0'
|
||||
==========================================
|
||||
|
||||
New features include:
|
||||
|
@ -101,19 +128,19 @@ New features include:
|
|||
selection of image reps, better support for icons). Many bugfixes,
|
||||
including in Xib loading, printing, and NSView geometry.
|
||||
|
||||
1.8 Noteworthy changes in version '0.20.0'
|
||||
1.9 Noteworthy changes in version '0.20.0'
|
||||
==========================================
|
||||
|
||||
A new stable release. Many improvments with Nib loading, documents and
|
||||
document controllers. Fixed many drawing issues, particularly ones
|
||||
related to flipping. Much improved theming.
|
||||
|
||||
1.9 Noteworthy changes in version '0.19.0'
|
||||
==========================================
|
||||
1.10 Noteworthy changes in version '0.19.0'
|
||||
===========================================
|
||||
|
||||
This is an (unstable) copy of the 0.18.0 release
|
||||
|
||||
1.10 Noteworthy changes in version '0.18.0'
|
||||
1.11 Noteworthy changes in version '0.18.0'
|
||||
===========================================
|
||||
|
||||
A new stable release that has had many improvements. Many new Mac OS X
|
||||
|
@ -122,20 +149,20 @@ were made (particularly with the use of the Windows theme). There is
|
|||
also better compatibility with Mac OS X in terms of usage of NSInteger
|
||||
and other definitions.
|
||||
|
||||
1.11 Noteworthy changes in version '0.17.1'
|
||||
1.12 Noteworthy changes in version '0.17.1'
|
||||
===========================================
|
||||
|
||||
* New Mac OS X 10.5 methods in NSFont
|
||||
* Add live resize in NSSplitView
|
||||
|
||||
1.12 Noteworthy changes in version '0.17.0'
|
||||
1.13 Noteworthy changes in version '0.17.0'
|
||||
===========================================
|
||||
|
||||
* New Mac OS X 10.5 methods in many classes
|
||||
* Toolbars have been completely rewritten and improved.
|
||||
* Several improvements for Garbage Collection
|
||||
|
||||
1.13 Noteworthy changes in version '0.16.0'
|
||||
1.14 Noteworthy changes in version '0.16.0'
|
||||
===========================================
|
||||
|
||||
* Nib loading refractored and improved.
|
||||
|
@ -143,7 +170,7 @@ and other definitions.
|
|||
* NSWindowController made a subclass of NSResponder
|
||||
* NSTokenField and netokenFiledCell classes added.
|
||||
|
||||
1.14 Noteworthy changes in version '0.14.0'
|
||||
1.15 Noteworthy changes in version '0.14.0'
|
||||
===========================================
|
||||
|
||||
* New class NSGlyphGenerator for glyph generation
|
||||
|
@ -151,7 +178,7 @@ and other definitions.
|
|||
* NSOpenGLView added some Mac OS X 10.3 methods
|
||||
* Manu bug fixes.
|
||||
|
||||
1.15 Noteworthy changes in version '0.13.2'
|
||||
1.16 Noteworthy changes in version '0.13.2'
|
||||
===========================================
|
||||
|
||||
* Printing works a little better now.
|
||||
|
@ -162,7 +189,7 @@ and other definitions.
|
|||
* New class NSSegmentedCell.
|
||||
* NSDrawer was implemented.
|
||||
|
||||
1.16 Noteworthy changes in version '0.13.1'
|
||||
1.17 Noteworthy changes in version '0.13.1'
|
||||
===========================================
|
||||
|
||||
* NSMenu - Added more MacOS X methods and an ivar.
|
||||
|
@ -172,7 +199,7 @@ and other definitions.
|
|||
* Added some MacOS X 10.4 methods to NSTableView.
|
||||
* Changed the NSCursor hot point to 0,0 for MacOS X compatibility.
|
||||
|
||||
1.17 Noteworthy changes in version '0.13.0'
|
||||
1.18 Noteworthy changes in version '0.13.0'
|
||||
===========================================
|
||||
|
||||
This is an unstable release. There may be backward compatibility issues
|
||||
|
@ -199,7 +226,7 @@ with previous releases of the gui library.
|
|||
* Implementation of special connectors for Key-Value binding.
|
||||
* Base library version 1.15.1 is required for this release
|
||||
|
||||
1.18 Noteworthy changes in version '0.12.0'
|
||||
1.19 Noteworthy changes in version '0.12.0'
|
||||
===========================================
|
||||
|
||||
It has been a long time since the last release and many things have been
|
||||
|
@ -219,7 +246,7 @@ added and changed, including new classes, new ivars, and new methods.
|
|||
* NSSpellServer and NSAffineTransform was moved to GNUstep base for
|
||||
Mac OS X compatibility.
|
||||
|
||||
1.19 Noteworthy changes in version '0.11.0'
|
||||
1.20 Noteworthy changes in version '0.11.0'
|
||||
===========================================
|
||||
|
||||
* Added support for keyed encoding in all gui classes.
|
||||
|
@ -228,25 +255,25 @@ added and changed, including new classes, new ivars, and new methods.
|
|||
* Implemented glue code in GSNibCompatibility for classes such as
|
||||
NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading.
|
||||
|
||||
1.20 Noteworthy changes in version '0.10.3'
|
||||
1.21 Noteworthy changes in version '0.10.3'
|
||||
===========================================
|
||||
|
||||
* Horizontal menus now work
|
||||
* Better support for tracking active applications.
|
||||
|
||||
1.21 Noteworthy changes in version '0.10.2'
|
||||
1.22 Noteworthy changes in version '0.10.2'
|
||||
===========================================
|
||||
|
||||
Mostly bug fixes.
|
||||
|
||||
1.22 Noteworthy changes in version '0.10.1'
|
||||
1.23 Noteworthy changes in version '0.10.1'
|
||||
===========================================
|
||||
|
||||
GNUstep now uses v19 of portaudio for the sound daemon. Version v19
|
||||
hasn't been officially released, but it is still used in several
|
||||
distributions (SuSE, etc) as v18 is very old.
|
||||
|
||||
1.23 Noteworthy changes in version '0.10.0'
|
||||
1.24 Noteworthy changes in version '0.10.0'
|
||||
===========================================
|
||||
|
||||
This release is binary incompatible with previous releases. The
|
||||
|
@ -257,7 +284,7 @@ new version.
|
|||
* Model loading supports window auto-positioning
|
||||
* Keyed encoding is supported in many classes.
|
||||
|
||||
1.24 Noteworthy changes in version '0.9.5'
|
||||
1.25 Noteworthy changes in version '0.9.5'
|
||||
==========================================
|
||||
|
||||
* Beginnings of CUPS interface were added.
|
||||
|
@ -266,7 +293,7 @@ new version.
|
|||
* NSApplication -runModalSession behavior changed.
|
||||
* You can find the GUI library's version using the Info.plist
|
||||
|
||||
1.25 Noteworthy changes in version '0.9.4'
|
||||
1.26 Noteworthy changes in version '0.9.4'
|
||||
==========================================
|
||||
|
||||
* The printing classes have been completely reorganized to
|
||||
|
@ -277,7 +304,7 @@ new version.
|
|||
* NSScroller, NSScrollView has a new ivar.
|
||||
* Some improvement of NSDataLink classes.
|
||||
|
||||
1.26 Noteworthy changes in version '0.9.3'
|
||||
1.27 Noteworthy changes in version '0.9.3'
|
||||
==========================================
|
||||
|
||||
* Spell checker reimplemented using libaspell
|
||||
|
@ -286,7 +313,7 @@ new version.
|
|||
* Binary incompatibilites from ivar additions in NSView and
|
||||
subclasses.
|
||||
|
||||
1.27 Noteworthy changes in version '0.9.2'
|
||||
1.28 Noteworthy changes in version '0.9.2'
|
||||
==========================================
|
||||
|
||||
* Working NSToolbar implementation
|
||||
|
@ -298,21 +325,21 @@ new version.
|
|||
* NSStringDrawing redesigned.
|
||||
* Much improved loading of gorm files
|
||||
|
||||
1.28 Noteworthy changes in version '0.9.1'
|
||||
1.29 Noteworthy changes in version '0.9.1'
|
||||
==========================================
|
||||
|
||||
* NSWindow - DnD works on whole window and events are propogated up
|
||||
to first DnD aware view.
|
||||
* Absolute paths and DnD works in OpenPanels.
|
||||
|
||||
1.29 Noteworthy changes in version '0.9.0'
|
||||
1.30 Noteworthy changes in version '0.9.0'
|
||||
==========================================
|
||||
|
||||
Improvements in various classes, include NSPopUpButton,
|
||||
NSBitmapImageRep, NSMenu, NSToolbar. Added support for thumbnail images
|
||||
in NSWorkspace.
|
||||
|
||||
1.30 Noteworthy changes in version '0.8.9'
|
||||
1.31 Noteworthy changes in version '0.8.9'
|
||||
==========================================
|
||||
|
||||
Note that many headers have moved to new locations (both in the package
|
||||
|
@ -321,13 +348,13 @@ applications may not compile because they cannot find the right header.
|
|||
|
||||
* New Language Setup documentation.
|
||||
|
||||
1.31 Noteworthy changes in version '0.8.8'
|
||||
1.32 Noteworthy changes in version '0.8.8'
|
||||
==========================================
|
||||
|
||||
* Updated LanguageSetup documentation
|
||||
* Improved RTF reader (unicode support, etc).
|
||||
|
||||
1.32 Noteworthy changes in version '0.8.7'
|
||||
1.33 Noteworthy changes in version '0.8.7'
|
||||
==========================================
|
||||
|
||||
* NSBezierPath glyph methods implemented (depends on backend).
|
||||
|
@ -335,7 +362,7 @@ applications may not compile because they cannot find the right header.
|
|||
* Added default to load user-defined bundles (GSAppKitUserBundles
|
||||
default).
|
||||
|
||||
1.33 Noteworthy changes in version '0.8.6'
|
||||
1.34 Noteworthy changes in version '0.8.6'
|
||||
==========================================
|
||||
|
||||
Updated to install in new locations based on changes in gnustep-make
|
||||
|
@ -345,12 +372,12 @@ Updated to install in new locations based on changes in gnustep-make
|
|||
* Speed improvements, especially in tracking mouses movements.
|
||||
* Lots of menu improvements.
|
||||
|
||||
1.34 Noteworthy changes in version '0.8.5'
|
||||
1.35 Noteworthy changes in version '0.8.5'
|
||||
==========================================
|
||||
|
||||
Bug fixes. NSStringDrawing now uses text system implementation.
|
||||
|
||||
1.35 Noteworthy changes in version '0.8.4'
|
||||
1.36 Noteworthy changes in version '0.8.4'
|
||||
==========================================
|
||||
|
||||
This release features a brand new text and layout system thanks to
|
||||
|
@ -361,7 +388,7 @@ Alexander Malmberg. Other improvements include:
|
|||
* Printing fixes.
|
||||
* NSToolbar partially implemented.
|
||||
|
||||
1.36 Noteworthy changes in version '0.8.3'
|
||||
1.37 Noteworthy changes in version '0.8.3'
|
||||
==========================================
|
||||
|
||||
* Additions for Gorm support.
|
||||
|
@ -372,7 +399,7 @@ Alexander Malmberg. Other improvements include:
|
|||
* Window focus fixes
|
||||
* Key view handling rewritten.
|
||||
|
||||
1.37 Noteworthy changes in version '0.8.2'
|
||||
1.38 Noteworthy changes in version '0.8.2'
|
||||
==========================================
|
||||
|
||||
* Handle fonts that aren't found better.
|
||||
|
@ -383,7 +410,7 @@ Alexander Malmberg. Other improvements include:
|
|||
* NSBrowser: implement non-separate columns
|
||||
* Fix firstResponder status in text fields.
|
||||
|
||||
1.38 Noteworthy changes in version '0.8.1'
|
||||
1.39 Noteworthy changes in version '0.8.1'
|
||||
==========================================
|
||||
|
||||
* Handle scaled curves correctly.
|
||||
|
@ -392,23 +419,23 @@ Alexander Malmberg. Other improvements include:
|
|||
* NSSound implemented. gssnd sound server.
|
||||
* Spell checker starts correctly now.
|
||||
|
||||
1.39 Noteworthy changes in version '0.8.0'
|
||||
1.40 Noteworthy changes in version '0.8.0'
|
||||
==========================================
|
||||
|
||||
1.40 Noteworthy changes in version '0.7.9'
|
||||
1.41 Noteworthy changes in version '0.7.9'
|
||||
==========================================
|
||||
|
||||
* NSTableView, NSOutlineView improvements.
|
||||
* Menus no longer work in modal loop.
|
||||
* Skeleton implementation of NSToolBar
|
||||
|
||||
1.41 Noteworthy changes in version '0.7.8'
|
||||
1.42 Noteworthy changes in version '0.7.8'
|
||||
==========================================
|
||||
|
||||
* Wheel color picker, standard color picker (bundles) added.
|
||||
* System colors now use named colors. Easier configuration
|
||||
|
||||
1.42 Noteworthy changes in version '0.7.7'
|
||||
1.43 Noteworthy changes in version '0.7.7'
|
||||
==========================================
|
||||
|
||||
The graphics/window interface was completely revamped. Window functions
|
||||
|
@ -430,7 +457,7 @@ computers, although it is in a very alpha state.
|
|||
* Better autolayout with GSTable and subclasses.
|
||||
* NSOutlineView much improved.
|
||||
|
||||
1.43 Noteworthy changes in version '0.7.6'
|
||||
1.44 Noteworthy changes in version '0.7.6'
|
||||
==========================================
|
||||
|
||||
* NSOutlineView implemented.
|
||||
|
@ -439,7 +466,7 @@ computers, although it is in a very alpha state.
|
|||
* Fully-functional keybindings, including multi-stroke keybindings.
|
||||
* Memory panel available from Info Panel.
|
||||
|
||||
1.44 Noteworthy changes in version '0.7.5'
|
||||
1.45 Noteworthy changes in version '0.7.5'
|
||||
==========================================
|
||||
|
||||
* Drag and drop and image sliding much improved.
|
||||
|
@ -457,7 +484,7 @@ computers, although it is in a very alpha state.
|
|||
* Near rewrite of Menu handling code.
|
||||
* Gmodel code compiled as a separate bundle.
|
||||
|
||||
1.45 Noteworthy changes in version '0.7.0'
|
||||
1.46 Noteworthy changes in version '0.7.0'
|
||||
==========================================
|
||||
|
||||
* Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo
|
||||
|
@ -468,7 +495,7 @@ computers, although it is in a very alpha state.
|
|||
* simpler, faster compilation and installation.
|
||||
* NSColorWell works.
|
||||
|
||||
1.46 Noteworthy changes in version '0.6.7'
|
||||
1.47 Noteworthy changes in version '0.6.7'
|
||||
==========================================
|
||||
|
||||
* App Icons can support documents dropped using DnD.
|
||||
|
@ -484,7 +511,7 @@ computers, although it is in a very alpha state.
|
|||
* Implemented object value and formatter support in NSCell
|
||||
* Support middle mouse button.
|
||||
|
||||
1.47 Noteworthy changes in version '0.6.6'
|
||||
1.48 Noteworthy changes in version '0.6.6'
|
||||
==========================================
|
||||
|
||||
* Window hints for motif and generic window managers.
|
||||
|
@ -510,7 +537,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
|
||||
recommend sticking with the xgps backend (the default) for now.
|
||||
|
||||
1.48 Noteworthy changes in version '0.6.5'
|
||||
1.49 Noteworthy changes in version '0.6.5'
|
||||
==========================================
|
||||
|
||||
Many of the basic GUI classes have been vastly improved or rewritten,
|
||||
|
@ -534,7 +561,7 @@ thanks to Nicola Pero <n.pero@mi.flashnet.it> and many others.
|
|||
been written, thanks to Richard Frith-Macdonald
|
||||
<richard@brainstorm.co.uk>
|
||||
|
||||
1.49 Noteworthy changes in version '0.6.0'
|
||||
1.50 Noteworthy changes in version '0.6.0'
|
||||
==========================================
|
||||
|
||||
A Huge amount of progress, although a lot still needs to be done. It's
|
||||
|
@ -555,7 +582,7 @@ NeXT/OpenStep apps and libraries have been ported with little changes.
|
|||
* Rewrite of NSSavePanel and NSOpenPanel
|
||||
* Several fixes that at least double the speed of the gui.
|
||||
|
||||
1.50 Noteworthy changes in version '0.5.5'
|
||||
1.51 Noteworthy changes in version '0.5.5'
|
||||
==========================================
|
||||
|
||||
Too extensive to list.
|
||||
|
@ -563,7 +590,7 @@ Too extensive to list.
|
|||
* A lot of rewritting has been done to the classes, with general
|
||||
cleanup of coordinate conversion code, etc.
|
||||
|
||||
1.51 Noteworthy changes in version '0.5.0'
|
||||
1.52 Noteworthy changes in version '0.5.0'
|
||||
==========================================
|
||||
|
||||
* NSBrowser and NSBrowserCell have been implemented. There is one
|
||||
|
@ -612,7 +639,7 @@ Too extensive to list.
|
|||
|
||||
* Several cleanups and as usual, many bug fixes.
|
||||
|
||||
1.52 Noteworthy changes in version '0.3.0'
|
||||
1.53 Noteworthy changes in version '0.3.0'
|
||||
==========================================
|
||||
|
||||
* Completely reworked the menu class. The NSMenu class is now
|
||||
|
@ -643,7 +670,7 @@ Too extensive to list.
|
|||
retain/release policy has been fixed, the cell classes correctly
|
||||
implement the NSCopying protocol and many others.
|
||||
|
||||
1.53 Noteworthy changes in version '0.2.0'
|
||||
1.54 Noteworthy changes in version '0.2.0'
|
||||
==========================================
|
||||
|
||||
* Additional NSImage and NSImageRep class work. Incorporated common
|
||||
|
@ -677,7 +704,7 @@ Too extensive to list.
|
|||
|
||||
* Many bug fixes and minor enhancements.
|
||||
|
||||
1.54 Noteworthy changes in version '0.1.1'
|
||||
1.55 Noteworthy changes in version '0.1.1'
|
||||
==========================================
|
||||
|
||||
* Almost complete implementation of the PXKMenu and PXKMenuCell
|
||||
|
@ -700,7 +727,7 @@ Too extensive to list.
|
|||
* Now requires the TIFF library for reading, writing, and
|
||||
manipulating tiff files and images.
|
||||
|
||||
1.55 Noteworthy changes in version '0.1.0'
|
||||
1.56 Noteworthy changes in version '0.1.0'
|
||||
==========================================
|
||||
|
||||
* Integration of the GNUstep X/DPS GUI Backend. This has finally
|
||||
|
|
6
Version
6
Version
|
@ -5,15 +5,15 @@
|
|||
GNUSTEP_GUI_GCC=4.0.0
|
||||
|
||||
# Versions for libraries that gnustep-gui is dependent upon
|
||||
GNUSTEP_GUI_BASE=1.25.0
|
||||
GNUSTEP_GUI_BASE=1.25.1
|
||||
GNUSTEP_GUI_LIBTIFF=3.4
|
||||
|
||||
# The version number of this release.
|
||||
GNUSTEP_GUI_MAJOR_VERSION=0
|
||||
GNUSTEP_GUI_MINOR_VERSION=26
|
||||
GNUSTEP_GUI_SUBMINOR_VERSION=0
|
||||
GNUSTEP_GUI_SUBMINOR_VERSION=1
|
||||
# numeric value should match above
|
||||
VERSION_NUMBER=026.0
|
||||
VERSION_NUMBER=026.1
|
||||
GNUSTEP_GUI_VERSION=${GNUSTEP_GUI_MAJOR_VERSION}.${GNUSTEP_GUI_MINOR_VERSION}.${GNUSTEP_GUI_SUBMINOR_VERSION}
|
||||
VERSION=${GNUSTEP_GUI_VERSION}
|
||||
|
||||
|
|
Loading…
Reference in a new issue