Skip to content

Commit ae93c9e

Browse files
committed
release-chore: Update for 0.27.0 release.
1 parent 1a90023 commit ae93c9e

File tree

6 files changed

+172
-77
lines changed

6 files changed

+172
-77
lines changed

ANNOUNCE

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
1 ANNOUNCE
22
**********
33

4-
This is version 0.26.2 of the GNUstep GUI library ('gnustep-gui').
4+
This is version 0.27.0 of the GNUstep GUI library ('gnustep-gui').
55

66
1.1 What is the GNUstep GUI Library?
77
====================================
@@ -32,25 +32,40 @@ Group's libjpeg library, and a back-end component from the GNUstep
3232
libraries. For example, to build the Cairo backend in the GNUstep Back
3333
library, you will need to install Cairo.
3434

35-
1.2 Noteworthy changes in version '0.26.2'
35+
1.2 Noteworthy changes in version '0.27.0'
3636
==========================================
3737

38-
This version is a small, but important bugfix release.
39-
40-
* printing: Fix allocation of the CUPS printing classes.
41-
* installation: Fix the configure script.
38+
This version includes numerous bugfixes, compatibility improvements and
39+
other changes accumulated over the last year. It also enables work to
40+
be done on integrating NSViews with a Core Animation renderer.
41+
42+
* Make targetForAction safer.
43+
* Speed up menu updates.
44+
* Clean up speech tool compilation and switch to newer interface.
45+
* Fix bug in CUPS subclassing introduced in last release.
46+
* Minor improvements to typesetting.
47+
* Add NSIsControllerMarker.
48+
* Fix tracking on segmented cell.
49+
* Bring slider cell closer to Cocoa implementation.
50+
* Add ivar for Core Animation in NSView.
51+
* Improve border calculation on printing.
52+
* Lazy load app icon.
53+
* Better detection of removable volumes.
54+
* Polish translations.
55+
* Japanese translations.
56+
* Lots of bug fixes.
4257

4358
1.3 Where can you get it? How can you compile it?
4459
=================================================
4560

46-
The gnustep-gui-0.26.2.tar.gz distribution file has been placed at
61+
The gnustep-gui-0.27.0.tar.gz distribution file has been placed at
4762
<ftp://ftp.gnustep.org/pub/gnustep/core>.
4863

49-
It is accompanied by gnustep-back-0.26.2.tar.gz.sig, a PGP signature
64+
It is accompanied by gnustep-back-0.27.0.tar.gz.sig, a PGP signature
5065
which you can validate by putting both files in the same directory and
5166
using:
5267

53-
gpg --verify gnustep-gui-0.26.2.tar.gz.sig
68+
gpg --verify gnustep-gui-0.27.0.tar.gz.sig
5469

5570
Signature has been created using the key with the following
5671
fingerprint:

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2019-01-06 Ivan Vucica <ivan@vucica.net>
2+
3+
* ANNOUNCE
4+
* Documentation/ReleaseNotes.gsdoc
5+
* Documentation/news.texi
6+
* NEWS
7+
* Version:
8+
Updating documentation for the 0.26.2 release.
9+
110
2019-01-06 Ivan Vucica <ivan@vucica.net>
211

312
* configure: Regenerated with autoconf 2.69.

Documentation/ReleaseNotes.gsdoc

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,47 @@
2020
migrate to using a newer version of the library.
2121
</p>
2222

23+
<section>
24+
<heading>0.27.0</heading>
25+
<p>
26+
This version includes numerous bugfixes, compatibility
27+
improvements and other changes accumulated over the last year.
28+
It also enables work to be done on integrating NSViews with a Core
29+
Animation renderer.
30+
</p>
31+
<deflist>
32+
<term>NSApplication</term>
33+
<desc>Make targetForAction safer.</desc>
34+
<term>NSMenu</term>
35+
<desc>Speed up menu updates.</desc>
36+
<term>Tools/speech</term>
37+
<desc>Clean up speech tool compilation and switch to newer interface.</desc>
38+
<term>printing</term>
39+
<desc>Fix bug in CUPS subclassing introduced in last release.</term>
40+
<term>typesetting</term>
41+
<desc>Minor improvments to typesetting.</desc>
42+
<term>NSKeyValueBinding</term>
43+
<desc>Add NSIsControllerMarker.</desc>
44+
<term>NSSegmentedCell</term>
45+
<desc>Fix tracking on segmented cell.</desc>
46+
<term>NSSliderCell</term>
47+
<desc>Bring slider cell closer to Cocoa implementation.</desc>
48+
<term>NSView</term>
49+
<desc>Add ivar for Core Animation in NSView.</desc>
50+
<term>printing</term>
51+
<desc>Improve border calculation on printing.</desc>
52+
<term>NSApplication</term>
53+
<desc>Lazy load app icon.</desc>
54+
<term>NSWorkspace</term>
55+
<desc>Better detection of removable volumes.</desc>
56+
<term>translations</term>
57+
<desc>Polish translations.</desc>
58+
<term>translations</term>
59+
<desc>Japanese translations.</desc>
60+
<term>other</term>
61+
<desc>Lots of bug fixes.</desc>
62+
</deflist>
63+
</section>
2364
<section>
2465
<heading>0.26.2</heading>
2566
<p>

Documentation/news.texi

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,26 @@ The currently released version of the library is @samp{@value{GNUSTEP-GUI-VERSIO
1111

1212
@section Noteworthy changes in version @samp{0.27.0}
1313

14+
This version includes numerous bugfixes, compatibility
15+
improvements and other changes accumulated over the last year.
16+
It also enables work to be done on integrating NSViews with a Core
17+
Animation renderer.
18+
1419
@itemize @bullet
15-
@item Make targetForAction saver.
20+
@item Make targetForAction safer.
1621
@item Speed up menu updates.
1722
@item Clean up speech tool compilation and switch to newer interface.
18-
@item Fix bug in CUPS subclassing introduced in last release.
19-
@item Minor improvments to typesetting.
23+
@item Fix bug in CUPS subclassing introduced in last release.
24+
@item Minor improvements to typesetting.
2025
@item Add NSIsControllerMarker.
2126
@item Fix tracking on segmented cell.
2227
@item Bring slider cell closer to Cocoa implementation.
23-
@item Add ivar for CA in NSView.
28+
@item Add ivar for Core Animation in NSView.
2429
@item Improve border calculation on printing.
2530
@item Lazy load app icon.
26-
@item Better detection of removable volumnes.
31+
@item Better detection of removable volumes.
32+
@item Polish translations.
33+
@item Japanese translations.
2734
@item Lots of bug fixes.
2835
@end itemize
2936

0 commit comments

Comments
 (0)