forked from gnustep/libs-gui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
NEWS
755 lines (585 loc) · 29 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
1 NEWS
******
The currently released version of the library is '0.26.2'.
1.1 Noteworthy changes in version '0.26.2'
==========================================
This version is a small, but important bugfix release.
* printing: Fix allocation of the CUPS printing classes.
* installation: Fix the configure script.
1.2 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.3 Noteworthy changes in version '0.26.0'
==========================================
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.
* 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.
* compatibility: Numerous stub implementations of constants, classes
and methods to improve source-level compatibility.
* other bugfixes
1.4 Noteworthy changes in version '0.25.1'
==========================================
* JPEG (saving) alpha channel fixes and size with resolution != 72
* JPEG resolution read support
* TIFF saving fixes
* Improved volumes mounting and support
* Portability improvements in volume mounting and support
* Corrected layout of empty strings
* Only update visible menus
1.5 Noteworthy changes in version '0.25.0'
==========================================
* Fixes for new GIF library versions
* Theming of named images for specific applications by the use of the
CFBundleIdentifier in the theme
* New icons and corresponding constants for special folders, recycler
and others
* Improvements in NSWorkspace icon lookup
* Improvements in removable media commands, imported and cleaned from
GWorkspace
* Numerous bug fixes and improvements in Cocoa compatibility
* Numerous theme tweaks
* Spanish locale
1.6 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.7 Noteworthy changes in version '0.24.0'
==========================================
New features include:
* Require newer base release as we moved the
-replaceObject:withObject: of NSKeyedUnarchiver there.
* Support for newer releases of the gif library.
* NSTabView is now flipped.
* Theme improvements and changes to image mapping.
Many bugfixes.
1.8 Noteworthy changes in version '0.23.1'
==========================================
This is a bugfix release, primarily to deal with coding/archiving
issues.
1.9 Noteworthy changes in version '0.22.0'
==========================================
New features include:
* This version is binary incompatible with previous versions due to
the change of NSNotFound in GNUstep base.
* Support for drawing the GUI with a scale factor, for high-DPI
monitors.
* Character panel
* Color picker "Magnifier" tool, for grabbing the color of arbitrary
parts of the screen
Many NSImage improvements (Mac OS X 10.6 drawing methods, better
selection of image reps, better support for icons). Many bugfixes,
including in Xib loading, printing, and NSView geometry.
1.10 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.11 Noteworthy changes in version '0.19.0'
===========================================
This is an (unstable) copy of the 0.18.0 release
1.12 Noteworthy changes in version '0.18.0'
===========================================
A new stable release that has had many improvements. Many new Mac OS X
methods (10.5 and newer) were added. Many Windows specific improvements
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.13 Noteworthy changes in version '0.17.1'
===========================================
* New Mac OS X 10.5 methods in NSFont
* Add live resize in NSSplitView
1.14 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.15 Noteworthy changes in version '0.16.0'
===========================================
* Nib loading refractored and improved.
* Added support for autosaving in NSDocuments
* NSWindowController made a subclass of NSResponder
* NSTokenField and netokenFiledCell classes added.
1.16 Noteworthy changes in version '0.14.0'
===========================================
* New class NSGlyphGenerator for glyph generation
* NSSplitView implemented setAutosaveName:
* NSOpenGLView added some Mac OS X 10.3 methods
* Manu bug fixes.
1.17 Noteworthy changes in version '0.13.2'
===========================================
* Printing works a little better now.
* NSPopUpButtonCell - object encoding was changed
* NSTextView - several updates and Mac OS X methods added
* NSWindow - devince interaction was changed. You need to use
gnustep-back 0.13.2 with this version
* New class NSSegmentedCell.
* NSDrawer was implemented.
1.18 Noteworthy changes in version '0.13.1'
===========================================
* NSMenu - Added more MacOS X methods and an ivar.
* Added support for hiding views.
* Added Key-Value bindings implementation (NSKeyValueBinding) with
support in several classes (NSControl, NSTextField, NSView, etc).
* Added some MacOS X 10.4 methods to NSTableView.
* Changed the NSCursor hot point to 0,0 for MacOS X compatibility.
1.19 Noteworthy changes in version '0.13.0'
===========================================
This is an unstable release. There may be backward compatibility issues
with previous releases of the gui library.
* Switched to use LGPL 3 and GPL 3.
* Added new methods from Mac OS X 10.4 for NSDragging,
NSFontDescriptor, NSAttributedString, NSImageView, NSStringDrawing,
NSParagraphStyle, NSView, NSCell, NSActionCell, NSAlert,
NSApplication, NSBitmapImageRep, NSBox, NSColor, NSColorSpace,
NSComboBox, NSComboBoxCell, NSDocumentController, NSEvent,
NSScreen, NSFont, NSFontManager, NSFormCell, NSForm, NSWindow,
NSTextField, NSTextFieldCell. Some ivar names were changed also.
* Moved Postscript printing methods from NSView to NSGraphicsContext.
* Rewrote the NSView drawing mechanism to always use
[displayRectIgnoringOpacity:inContext].
* Report more controls as being flipped. (NSTextField,
NSTableHeaderView, NSSlider, NSProgressIndicator, NSButton)
NSTabView is still missing.
* In NSAffineTransform use optimized primitive methods from base.
* Add font attribute fixing to NSAttributedString. To allow for the
output of glyphs not present in the current font.
* Optimized the validation of edited cells.
* Implementation of special connectors for Key-Value binding.
* Base library version 1.15.1 is required for this release
1.20 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.21 Noteworthy changes in version '0.11.0'
===========================================
* Added support for keyed encoding in all gui classes.
* Added mechanism to allow for dynamic extension of model loading
mechanism
* Implemented glue code in GSNibCompatibility for classes such as
NSIBObjectData, NSClassSwapper, etc. to facilitate nib loading.
1.22 Noteworthy changes in version '0.10.3'
===========================================
* Horizontal menus now work
* Better support for tracking active applications.
1.23 Noteworthy changes in version '0.10.2'
===========================================
Mostly bug fixes.
1.24 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.25 Noteworthy changes in version '0.10.0'
===========================================
This release is binary incompatible with previous releases. The
interface version of the library has changed so that apps, tools and
libraries that use the base library need to be recompiled to use this
new version.
* Model loading supports window auto-positioning
* Keyed encoding is supported in many classes.
1.26 Noteworthy changes in version '0.9.5'
==========================================
* Beginnings of CUPS interface were added.
* Added new control colors and methods from 10.3 version of Cocoa.
* Added new font methods from 10.3 version of Cocoa.
* NSApplication -runModalSession behavior changed.
* You can find the GUI library's version using the Info.plist
1.27 Noteworthy changes in version '0.9.4'
==========================================
* The printing classes have been completely reorganized to
accommodate different native printing systems (Thanks to Chad
Hardin).
* PPD files have been moved to a separate package.
* NSToolbar now allows rearranging items.
* NSScroller, NSScrollView has a new ivar.
* Some improvement of NSDataLink classes.
1.28 Noteworthy changes in version '0.9.3'
==========================================
* Spell checker reimplemented using libaspell
* New NSComboBox implementation
* NSToolbar much improved
* Binary incompatibilites from ivar additions in NSView and
subclasses.
1.29 Noteworthy changes in version '0.9.2'
==========================================
* Working NSToolbar implementation
* New Mac OS X methods in NSView and other classes
* Fixed some sheet handling problems.
* Integrated gif, jpg, and png handling in front-end.
* Added overridable button and frame drawing functions
* Add some keyed decode/encoding to some classes
* NSStringDrawing redesigned.
* Much improved loading of gorm files
1.30 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.31 Noteworthy changes in version '0.9.0'
==========================================
Improvements in various classes, include NSPopUpButton,
NSBitmapImageRep, NSMenu, NSToolbar. Added support for thumbnail images
in NSWorkspace.
1.32 Noteworthy changes in version '0.8.9'
==========================================
Note that many headers have moved to new locations (both in the package
and when installed), so it is possible, although not likely that some
applications may not compile because they cannot find the right header.
* New Language Setup documentation.
1.33 Noteworthy changes in version '0.8.8'
==========================================
* Updated LanguageSetup documentation
* Improved RTF reader (unicode support, etc).
1.34 Noteworthy changes in version '0.8.7'
==========================================
* NSBezierPath glyph methods implemented (depends on backend).
* NSDataLink[Panel/Manager] - some implementation
* Added default to load user-defined bundles (GSAppKitUserBundles
default).
1.35 Noteworthy changes in version '0.8.6'
==========================================
Updated to install in new locations based on changes in gnustep-make
1.7.0.
* New implementation of RTF producer (from Axel "Mikesch" Katerbau)
* Speed improvements, especially in tracking mouses movements.
* Lots of menu improvements.
1.36 Noteworthy changes in version '0.8.5'
==========================================
Bug fixes. NSStringDrawing now uses text system implementation.
1.37 Noteworthy changes in version '0.8.4'
==========================================
This release features a brand new text and layout system thanks to
Alexander Malmberg. Other improvements include:
* Various display optimizations.
* Default border to NSScrollView changed
* Printing fixes.
* NSToolbar partially implemented.
1.38 Noteworthy changes in version '0.8.3'
==========================================
* Additions for Gorm support.
* Alpha support for OpenGL
* Better ruler support - dragging of tab markers.
* Document support, recent files, etc.
* Simple printing to printer and print previewing.
* Window focus fixes
* Key view handling rewritten.
1.39 Noteworthy changes in version '0.8.2'
==========================================
* Handle fonts that aren't found better.
* Implement pageUp/Down.
* Some window focusing problems fixed.
* Quartz-like interface partially implemented.
* NSSecureTextField partially rewritten. More secure.
* NSBrowser: implement non-separate columns
* Fix firstResponder status in text fields.
1.40 Noteworthy changes in version '0.8.1'
==========================================
* Handle scaled curves correctly.
* Handle alpha channel with images correctly
* NSWindow frame string save without flipping coordinates.
* NSSound implemented. gssnd sound server.
* Spell checker starts correctly now.
1.41 Noteworthy changes in version '0.8.0'
==========================================
1.42 Noteworthy changes in version '0.7.9'
==========================================
* NSTableView, NSOutlineView improvements.
* Menus no longer work in modal loop.
* Skeleton implementation of NSToolBar
1.43 Noteworthy changes in version '0.7.8'
==========================================
* Wheel color picker, standard color picker (bundles) added.
* System colors now use named colors. Easier configuration
1.44 Noteworthy changes in version '0.7.7'
==========================================
The graphics/window interface was completely revamped. Window functions
were split into a separate class, GSDisplayServer, and many PS and DPS
functions were removed that were never implemented. However, new
functionality was added to make things faster and eventually implement
Quartz compatibility.
In addition, the old backends, xgps and xdps were depreciated in
favor of a new backend, simply named back, which can be configured for a
variety of window server and graphics implementations, and also allow
for improved code sharing.
In addition there is now a window server backend for Windows
computers, although it is in a very alpha state.
Other improvements:
* Mutliple screens are now handled properly (untested)
* Better autolayout with GSTable and subclasses.
* NSOutlineView much improved.
1.45 Noteworthy changes in version '0.7.6'
==========================================
* NSOutlineView implemented.
* Improvements to NSTableView, NSPopUpButton, NSTextView, NSFontPanel
* Scroll wheel support.
* Fully-functional keybindings, including multi-stroke keybindings.
* Memory panel available from Info Panel.
1.46 Noteworthy changes in version '0.7.5'
==========================================
* Drag and drop and image sliding much improved.
* Better handling of remote startup/display.
* Some localization.
* Keybinding support.
* Text handling improvements.
* New gopen command (like MacOSX open command).
* Implemented simple pagination and printing of views.
* Support for rulers.
* Spell checking support.
* Blinking insertion point.
* New NSStepper class.
* Implemented NSOutlineView, NSSelection, NSInputManager.
* Near rewrite of Menu handling code.
* Gmodel code compiled as a separate bundle.
1.47 Noteworthy changes in version '0.7.0'
==========================================
* Much improvement in NSBrowser, NSMatrix, NSPopUpButton, combo
boxes.
* NSTextAttachement implemented, many other text improvements.
* Fonts cached in the frontend.
* Changes so that backend can be loaded as a bundle at runtime.
* simpler, faster compilation and installation.
* NSColorWell works.
1.48 Noteworthy changes in version '0.6.7'
==========================================
* App Icons can support documents dropped using DnD.
* Added color conversions, working color picker and panel.
* Almost complete rewrite of NSBezierPath
* Loads of improvements to Text classes.
* NSImage, NSButton, NSCell, etc, implemented many missing methods.
* ...and even more changes to the Text classes.
* Starting implementation of printing.
* Scrollview fixes.
* Implemented deferred windows.
* NSTableView implemented.
* Implemented object value and formatter support in NSCell
* Support middle mouse button.
1.49 Noteworthy changes in version '0.6.6'
==========================================
* Window hints for motif and generic window managers.
* Major improvements to the text handling classes (NSText,
NSTextView, etc)
* Pasting of fonts and rulers.
* Much better RTF handling
* DnD for NSColorWell
* Much improved NSSplitView
* New classes - NSColorPanel, NSTableView
* NSScreen rewritten with full support for all methods and functions.
* Can use image reading routines from WindowMaker if available to
read a variety of image formats besides TIFF.
* Many fixes to get the AppKit to work better with WindowMaker.
* Much better gmodel support (particularly with nibs translated from
NeXT or OPENSTEP 4.2).
* Muh improved font classes and font support.
In addition both the xgps and xdps backends have seen some large
efficiency improvements. Much better font support. The xdps backend
itself has seen speed improvements by at least a factor of 4. Note
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.50 Noteworthy changes in version '0.6.5'
==========================================
Many of the basic GUI classes have been vastly improved or rewritten,
thanks to Nicola Pero <n.pero@mi.flashnet.it> and many others.
* New Info Panel support
* New NSBezierPath
* Rewrite of several classes including Cell and Button classes.
* Rewrite of NSBrowser, NSSavePanel, menus, text classes,
NSTableHeader.
* RTF Parser
* Implemented image caching.
* Implemented editing in Forms, Matricies.
* New autolayout classes GSHBox, GSTable, and GSVBox.
* Almost all back-end classes have been removed and code incorporated
in a DPS-like graphics context structure.
* Better keyboard handling.
* NSHelpManager, NSComboBox, ProgressIndicator written.
In addition a preliminary version of an Interface Builder (Gorm) has
been written, thanks to Richard Frith-Macdonald
<richard@brainstorm.co.uk>
1.51 Noteworthy changes in version '0.6.0'
==========================================
A Huge amount of progress, although a lot still needs to be done. It's
usable for a large base of moderately simple apps. Several
NeXT/OpenStep apps and libraries have been ported with little changes.
* Drag and Drop support fleshed out but not completed.
* NSText and related classes rewritten. Basic functionality but much
needs to be done to finish them off.
* nib2gmodel app works with MacOS-X
* Work done in minimizing the backend which allowed a lot of
functionality to move to the GNU library.
* Menu code rewritten.
* PopupButtons now work.
* Many new images
* Basic functionality for NSTabView
* Much better lockFocus support in NSView. Flipped views handled.
* Rewrite of NSSavePanel and NSOpenPanel
* Several fixes that at least double the speed of the gui.
1.52 Noteworthy changes in version '0.5.5'
==========================================
Too extensive to list.
* A lot of rewritting has been done to the classes, with general
cleanup of coordinate conversion code, etc.
1.53 Noteworthy changes in version '0.5.0'
==========================================
* NSBrowser and NSBrowserCell have been implemented. There is one
odd display artifact; lists which are smaller than the browser
column area have the list justified to the bottom of the column
versus the top of the column. This is actually an issue with
NSMatrix and will be remedied when flip views are implemented.
* Two important optimizations that speed up the displaying of views
and flushing of windows have been implemented. Only the views that
need display and those that produce visible effects on the screen
receive the -drawRect: message. Flushing of windows occurs only in
rectangles that get displayed not in the whole window.
* Rotation and scaling of views have been finally implemented. The
code requires backend support for changing the state of the
graphics context accordingly.
* NSScrollView and NSClipView have been implemented. The current
implemented behavior is to call the document view to display the
exposed region. Copying on scroll will be supported soon, at least
on Solaris DPS, where it seems the Postscript language has
provisions for copying drawn regions of screen. Hopefully DGS will
also have this facility by the end of the year.
* NSScroller has been completely reworked to gain speed by using
timer events.
* NSSlider has been implemented. Thanks to Frank Knobloch for
supporting this and the NSScrollView implementation.
* NSBox has been implemented.
* The library has been ported to work under Solaris with the native
DPS and the NeXT/Apple's Portable Distributed Objects (PDO)
environment.
* The library has been integrated with the makefile package so we now
benefit from all of the features the makefile package gives us,
especially the possibility to build shared libraries on various
systems and having different types (debug and profile) of the
library compiled at the same time.
* NSCell is able to continuosly send the action to the target while
the user is tracking the mouse.
* Several cleanups and as usual, many bug fixes.
1.54 Noteworthy changes in version '0.3.0'
==========================================
* Completely reworked the menu class. The NSMenu class is now
inherited from NSObject and using the new implementation menus have
been implemented for the XDPS backend (they have the look and feel
of the NeXTStep menus!).
* NSRunLoop has been integrated with NSApplication. Using this
capability time events have been implemented to NSEvent class.
These events allow several improvements in the interaction between
user and the graphic interface.
* NSMatrix has been reworked, it is now conforming to the OpenStep
specification and it knows all the selection modes. It uses time
events to enhance the drawing speed during mouse drags.
* The initial implementation of NSForm has been made although it has
not been tested yet.
* NSPrinter has been implemented though it was not throughly tested;
thanks to Simon Frankau.
* Configure script has been changed to detect the underlaying
Foundation library. The currently supported libraries are
gnustep-base and libFoundation.
* Several cleanups have been made in a lot of classes: the
retain/release policy has been fixed, the cell classes correctly
implement the NSCopying protocol and many others.
1.55 Noteworthy changes in version '0.2.0'
==========================================
* Additional NSImage and NSImageRep class work. Incorporated common
images for use with controls that were designed by Andrew Lindesay.
* Fill out implementation of NSColorWell class.
* Fill out implementation of NSColorList class.
* Cleaned up the header files and added missing headers, methods,
categories, and protocols; thanks to Simon Frankau for much of this
work. Major reorganization of header files. Types and constants
were moved in the files they belong. Each header file includes
only the headers it really needs. Use '@class' to forward class
definitions instead of including the corresponding class file.
* Completely reworked the NSFont and NSFontManager classes so that
NSUserDefaults is used for getting defaults and list of known fonts
are maintained.
* Initial implementation of NSCursor class.
* Almost complete implementation of NSButton and NSButtonCell class.
Buttons can now display images and/or text, handles all of the
OpenStep button types and styles.
* Fill out implementation of NSScroller class.
* Put in underlying support for optimizing drawing; flushing of
windows, backing store, and only display when needed.
* Many bug fixes and minor enhancements.
1.56 Noteworthy changes in version '0.1.1'
==========================================
* Almost complete implementation of the PXKMenu and PXKMenuCell
classes.
* Fill out implementation of NSFont and NSFontManager.
* Fill out implementation of NSColor including color spaces other
than RGB. Now maintains the common colors as global variables.
* Integration with the Display Ghostscript System. This is mainly
related to using the header files in the DPSclient library for
defining the PostScript operator functions.
* Initial documentation set.
* Initial implementation of NSImage, NSImageRep, and NSImageRep
subclass classes based upon work by Adam Fedor.
* Now requires the TIFF library for reading, writing, and
manipulating tiff files and images.
1.57 Noteworthy changes in version '0.1.0'
==========================================
* Integration of the GNUstep X/DPS GUI Backend. This has finally
produced a set of core code with can display on X/Windows. Much of
the X/Windows code has been written by Pascal Forget
<pascal@wsc.com> and integration efforts have been lead by Scott
Christley <scottc@net-community.com>.
* Some major directory reorganization for the new naming guidelines.
Headers previously in AppKit and DPSClient directories have been
moved to gnustep/gui and gnustep/dps directores and symbol links
are created for the AppKit and DPSClient directories. This should
allow both GNUstep and other OpenStep implementations to reside on
the same machine without conflicts.
Also see the 'ChangeLog' file for more detail.