]> Pileus Git - ~andy/gtk/blob - NEWS
Released 1.3.2
[~andy/gtk] / NEWS
1 Overview of Changes in GTK+ 1.3.2
2 =================================
3
4 GTK Core:
5
6 * New stock-icon and stock-item system. Use themeable pixbufs in
7   dialogs, buttons, etc. [Havoc]
8 * Theme engines reworked to use derivation and new object system. [Owen]
9 * Added GtkClipboard object for simple selection handling. [Owen]
10 * Make GtkEditable an interface, move implementation to GtkOldEditable for
11   compat. [Owen]
12 * Better handling of default directionality. [Robert]
13 * Use GSignal as backend for GtkSignal and other GObject stuff. [Tim]
14 * Move theme engines to GTypePlugin. [Owen]
15
16 GDK:
17
18 * Beginning of implementation of client parts of new window manager spec. [Owen]
19 * Make gdk_drawable_get_image() work with backing store. [Havoc]
20
21 Widgets:
22
23 * New text widget [Havoc]
24   - Adjustable tab handling.
25   - Ability to have scrolling side areas in new text widget for tabs/line numbers.
26   - Many cleanups and small improvements.
27 * Improvements to submenu navigation [Nils Barth/David Santiago] and
28   scrolling menus. [Alex]
29 * Simplification of progress bar API. [Havoc]
30 * Make GtkImage a generic image-display widget. [Havoc]
31 * New GtkTreeView tree widget. Model/view architecture, flexible renderering,
32   large datasets, etc. [Jonathan]
33 * New GtkMessageBox widget for message display. [Havoc]
34 * Allow labels to have contents set from XML-like markup language. [Havoc]
35 * Make dialogs derive from GtkDialog and use stock buttons. [Havoc]
36
37 Internationalization:
38
39 * Proper character set conversion for clipboard/selection. [Owen]
40 * New input method system via loadable modules; support on-the-spot
41   preedit in GtkEntry and new text widget; allow switchin input methods
42   on the fly; include modules for XIM and demo Cyrillic-tranliteration 
43   module. [Owen]
44 * VIQR, Thai, and Inuktitut input methods. [Robert]
45 * Convert po files to UTF-8. [Robert]
46
47 gdk-pixbuf:
48
49 * Full-alpha compositing for gdk-pixbuf on drawable. [Havoc]
50 * Add simple saving to gdk-pixbuf. [David Welton/Havoc]
51 * Add improved error handling with GError to gdk-pixbuf. [Havoc]
52
53 Ports:
54
55 * Much work on Win32 Port. [Tor/Hans]
56 * Much work on Linux-FB Port. [Elliot/Alex]
57
58 Misc:
59
60 * Start of new gtk-demo demo program. [Owen/Jonathan]
61 * Bug fixes and more bug fixes.
62
63
64 Overview of Changes in GTK+ 1.3.1:
65
66 * GTK+ now uses the Pango library for text manipulation. All
67   strings in GTK+ now are in Unicode, languages written
68   from right-to-left, and complex-text languages are now supported.
69 * The gdk-pixbuf library for image loading and manipulation is 
70   has been integrated with GTK+.
71 * The GTK+ object system has mostly been moved to GLib, separating
72   it from the GUI code. Many significant enhancements have been
73   made as part of this.
74 * A new text widget is now included. This started as a port
75   of the Tk text widget, and includes such features of the Tk
76   text widget as tags, marks, and unicode text support. It
77   has been enhanced to support model-view operation and the
78   full power of Pango.
79 * The GDK library has been extensively revised to support multiple
80   windowing systems. The only fully functional backend in 1.3.1
81   is the X11 backend, however, ports to Win32, Linux-framebuffer,
82   Nano-X, BeOS, and MacOS exist in various states of completion,
83   and at least some of these will be finished and integrated in 
84   before the final GTK+-2.0 release.
85 * 32-bit coordinates are now supported throughout GDK and GTK+
86   (they are emulated where not supported by the windowing system.)
87 * Many minor bug fixes and enhancements. Incompatible changes
88   are documented in docs/Changes-2.0.txt
89
90 Overview of Changes in GTK+ 1.2.8:
91
92 * GNU Make 3.79 bug workaround
93 * FAQ and tutorial updates and improvements
94 * Miscellaneous bug fixes: CList, Calendar, rc-files, FontSelection
95
96 Overview of Changes in GTK+ 1.2.7:
97
98 * More header cleanups.
99 * Fixed activation bug for insensitive widgets.
100 * Locale fixes to RC file parsing code.
101 * Miscellaneous bugfixes for Item Factory, CList, CTree, X Selections,
102   HScale, VScale, Pixmap, Viewport, OptionMenu, Entry and Notebook.
103 * Upgrade to libtool 1.3.4.
104
105 Overview of Changes in GTK+ 1.2.6:
106
107 * container queue_resize fixes
108 * gtk[vh]scale: minor fixups
109 * rename idle to idle_id in testgtk to avoid conflicts with 
110   broken libs
111 * More consistant naming of gtkrc files
112 * Added language support: ro, uk
113
114 Overview of Changes in GTK+ 1.2.5:
115
116 * more GtkCTree and GtkWindow bug fixes.
117 * more redraw/resize queue fixes, better expose event
118   discarding code.
119 * more miscellaneous bugs fixed
120 * new configure.in option --disable-rebuilds to completely disable
121   rebuilds of autogenerated sources.
122 * check for 5.002 now, to avoid failing autogeneration build rules due
123   to old perl versions.
124 * fonts (and fontsets) are cached now.
125 * more autogeneration make rules and dependancy fixups, we should be
126   save with autogeneration up to make -j12 now ;)
127 * new window position GTK_WIN_POS_CENTER_ALWAYS, which will recenter the
128   GtkWindow on every size change.
129 * major rework of window manager hints handling code, fixed a bunch of
130   races with the new resizing code.
131 * the new wm hints and resizing code is absolutely perfect and bug free now,
132   it only lacks testing ;)
133 * fixed up various rc style memory prolems.
134 * gtk_widget_modify_style() now properly changes the style of realized widgets
135   and references the style passed into it. if people worked around this bug,
136   this will introduce a slight memory leak in their code.
137   The code should typically look like:
138             GtkRcStyle *rc_style = gtk_rc_style_new ();
139             [...]
140             gtk_widget_modify_style (widget, rc_style);
141             gtk_rc_style_unref (rc_style);
142 * fix problems with positioning menus offscreen.
143 * GtkText fixes for some crashes and drawing errors.
144 * Better handling for unexpected window destroys in GDK and GTK+.
145   This should make it possible to use a GtkPlug and catch the
146   case where its parent socket is randomly killed.
147 * FAQ updates.
148 * FileSelection i18n patches, RadioButton fixups.
149 * many translation improvements.
150 * miscellaneous other bugs fixed.
151
152 Overview of Changes in GTK+ 1.2.4:
153
154 * DnD improvements (drags can be canceled with Esc now).
155 * suppressed configure event reordering in Gdk.
156 * rewrite of Gtk's configure event handling.
157 * major improvements for the object argument system (Elena Devdariani).
158 * major bugfixes for threading, GtkNotebook, GtkItemFactory, GtkCList and
159   GtkCTree.
160 * tutorial/FAQ updates, new file generation.txt on autogenerated sources.
161 * configure's --with-glib= is "officially" unsupported.
162 * upgrade to libtool 1.3.3.
163 * various buglets fixed.
164
165 Overview of Changes in GTK+ 1.2.3:
166
167 * Upgrade to libtool 1.3
168 * Check for dgettext (for systems with old versions of GNU Gettext)
169 * Many bug fixes (see ChangeLog for details)
170
171 Overview of Changes in GTK+ 1.2.2:
172
173 * Improved Dnd behaviour with Motif applications.
174 * Bug fixes for the Gtk selection code.
175 * Minor bug fixes to the Gdk Atom cache and Dnd code (with --display option).
176 * Bug fixes and leak plugs for the Gdk IM code.
177 * Added gtk_object_get() facility to retrive object arguments easily.
178   The var args list expects ("arg-name", &value) pairs.
179 * Fixed mapping for GdkInputCondition<->GIOCondition, this should fix
180   problems where closed pipes were no longer signalling GDK_INPUT_READ on
181   systems with a native poll().
182 * Some cleanups to GtkLabel's memory allocation code (shouldn't leak memory
183   anymore).
184 * We don't attempt to lookup xpm color "None" anymore, this should prevent
185   eXodus (commercial X windows server) from popping up a color dialog every
186   time a transparent pixmap is created.
187 * Fixed bug where Gtk timout/idle handlers would execute without the global
188   Gdk lock being held.
189 * Other minor bug fixes.
190
191 Overview of Changes in GTK+ 1.2.1:
192
193 * Many Bug fixes have been applied to the menu and accelerator code.
194 * GtkItemFactory can "adopt" foreign menu items now and manage their
195   accelerator installation. This is often required to get GtkItemFactory
196   like accelerator propagation between different windows with the same
197   menu heirarchy and for centralized parsing and saving of accelerators.
198 * GtkCList/GtkCTree buttons should always display correctly now.
199 * Miscellaneous other bug fixes.
200
201 What's New in GTK+ 1.2.0 (since 1.0.x):
202
203 * New widgets: GtkFontSelector, GtkPacker, GtkItemFactory, GtkCTree,
204   GtkInvisible, GtkCalendar, GtkLayout, GtkPlug, GtkSocket
205 * Many new features and robustness for existing widgets
206 * Theme support
207 * New DND implementation
208 * Internationalization of standard dialogs
209 * New key binding system
210 * Tearoff menus and menu accelerators
211 * Wide character support for entry and text
212 * Resizing code has been overhauled
213 * Queued redraws of partial areas
214 * Far better support for object arguments
215 * Speed optimizations
216 * Runtime loading of dynamic modules
217 * Support for GLib log domains
218 * Tutorial improvements
219 * A bug fix or two
220
221 Overview of Changes in GTK+ 1.1.16:
222
223 * Major fixes and improvements for handlebox
224 * A change to the way widget->requisition works. Now,
225   widget->requisition is always what the widget requested,
226   unmodified by the usize. See Changes-1.2.txt for details.
227   This correct various bugs with gtk_widget_set_usize().
228 * Fixes for XIM on X11R5 systems
229 * Don't allow cut-and-paste of text in password-style entries
230 * --enable-debug is now on by default for the development releaes.
231   (When compiling for "production", use --enable-debug=minimum)
232 * Handle systems where Helvetica is not present more gracefully
233 * Fixes for memory leaks
234 * CList and CTree fixes
235 * Bug fixes for drawing problems. 
236 * Miscellaneous bug fixes to GtkLabel, GtkCList, GtkCTree,
237   GtkColorsel, Focusing, DND
238 * Tutorial improvements
239
240 Overview of Changes in GTK+ 1.1.15:
241
242 * Tutorial Updates
243 * Added --libs gthread to gtk-config 
244 * Bug fixes
245
246 What is new in GTK+ 1.1.14:
247
248 * Additions to docs/Changes-1.2.txt
249 * Just warn when loading theme engine fails
250 * CLAMP GtkScale digits to a meaningful range
251 * GTK_LOCALDIR is now defined in a better fashion
252 * New functions (feature freeze, we know...):
253     gtk_menu_set_title()
254     gtk_toggle_button_get_active()
255 * Some locale fixups in gtkrc code
256 * Fixes to make gtk_radio_button_set_group() keep only
257   one radio button in the group active
258 * Foreign windows are now always treated as viewable; this fixes
259   a problem where updating didn't occure properly in GtkPlug
260 * DND fixes for 64 bit architectures, and for specifying operations 
261   with modifier keys.
262 * Major revisions to GtkLayout: avoid having to create window
263   for NO_WINDOW children, adjust allocations of children as 
264   scrolled so queued draws work, and a resize is queued instead
265   of allocating directly in a put() or move()
266
267 What is new in GTK+ 1.1.13:
268
269 * Dnd and selection bug fixes and memory purification.
270 * Widget sensitivity fixups.
271 * Tooltips windows are now named "gtk-tooltips" so rc file rules
272   can match tooltips windows. Fixed interaction of tooltips and NO_WINDOW
273   widgets.
274 * Spin buttons now update their values upon value retrival.
275 * Overhaul of the resizing vs. redrawing logic to reduce redrawing needs
276   a lot. Gtk makes full use of the draw_area coalescing code now, which
277   got minorly improved as well.
278 * Containers map their Gdk windows after their children now to reduce
279   expose event generation.
280 * Gdk event queue fixups, this solves the double-click problems people were
281   recently having.
282 * Account for the fact that GSource's are only properly reentrant from
283   within dispatch(), thus we don't do Gdk event processing from within
284   check() or prepare() anymore.
285 * Rc files feature a bg_pixmap value of "<none>" now.
286 * Improved session management support in Gdk.  
287 * Automatic disabling of NLS if no gettext is found should work now.
288 * Removed deprecated functions, docs/Changes-1.2.txt gives an overview.
289 * Gtk+ development now requires GNU autoconf 2.13, GNU automake 1.4
290   and GNU libtool 1.2d.
291 * More bug fixes all over the place.
292
293 What is new in GTK+ 1.1.12:
294
295 * Korean translation added
296 * Fixed memory leaks
297 * A few other bug fixes
298
299 What is new in GTK+ 1.1.11:
300
301 * Dutch, Japanese, Swedish, Polish, and Norwegian translations
302 * Removed deprecated _interp variants: gtk_container_foreach_interp, 
303   gtk_idle_add_interp, gtk_timeout_add_interp, gtk_signal_connect_interp
304 * Lots of cast corrections
305 * Many fixes 
306
307 What is new in GTK+ 1.1.9:
308
309 * Check for broken glibc 2.0 mb functions and avoid them
310 * Label and Entry display fixes 
311 * Move main thread back to GDK, for locking when translating events
312 * Bug fixes
313
314 What is new in GTK+ 1.1.8:
315
316 * Added support for gettext and the localization of the standard
317   dialogs.
318 * Added line-wrapping for the label, and JUSTIFY_FILL
319 * Support reordering via drag and drop in  CList and CTree.
320 * Replaced GtkDrawWindow widget with a GTK_USER_DRAW flag
321 * Extended gtkpaned API to support minimum sizes and proportional
322   resizing.
323 * Changed the handling of shared memory segments so as to 
324   remove the need for GTK+ to set up signal handlers.
325 * Re-implemented event loop in terms of the event loop
326   that has been added to GLib 1.1.8
327 * Added 'grab_focus' signal to allow keyboard accelerators
328   for entries.
329 * Load locale specific RC files if present.
330 * Bug fixes.
331
332 What is new in GTK+ 1.1.7:
333
334 * Fixed memory mis-allocation in default files code
335 * Various event handling fixes
336 * Wide character support for entry and text
337 * Destroy widgets _after_ propagating unrealize signals through 
338   widget heirarchy
339 * Only build XIM-support if available
340 * Tutorial and examples updates
341 * Added gtk_drag_source_unset()
342
343 What is new in GTK+ 1.1.6:
344
345 * The signal system now features emission hooks whith special semantics,
346   refer to the ChangeLog for this.
347 * Minor? speedups and memory reductions to the emission handling of the
348   signal system.
349 * _interp() function variants are deprecated now. the corresponding *_full()
350   variants are provided for a long time now.
351 * Dnd abort timeout increased to 10 minutes.
352 * GtkScrolledWindow inherits from GtkBin now.
353 * GTK_POLICY_NEVER is implemented for scrolled windows now.
354 * Lots of API clean ups.
355 * Incremental freezing abilities.
356 * Integrated widgets from the GNOME tree: GtkLayout, GtkPlug and GtkSocket.
357 * New window functions for transient relationship, default size, and 
358   geometry hints
359 * Default rc files are now read in (<sysconfdir/etc/gtkrc and ~/.gtkrc)
360   GTK_RC_FILES environment variable and functions are provided to configure
361   this behavior
362 * Read doc/Changes-1.2.txt to properly adapt your code.
363 * Bug Fixes.
364
365 What is new in GTK+ 1.1.5:
366
367 * Theme integration
368 * Widget style modification is now handled through GtkRcStyles
369 * GtkPixmaps now grey out pixmaps when insensitive
370 * Notebook enhancements
371 * Shadow configurability for menubars and handleboxes
372 * DND enhancements
373 * gtkfilesel now supports automounters better
374 * Implementation of expose compression
375 * Queued redraws of partial areas
376 * Scrolledwindow (+Viewport) source incompatibilities, children that are added
377   to a scrolled window don't get an automatic viewport anymore. a convenience
378   function gtk_scrolled_window_add_with_viewport() is suplied for this task
379 * Deprecated functions will now issue a message, informing the programmer about
380   the use of this function. These functions will get removed in future versions
381 * Non-functional functions got removed entirely
382 * gtk_widget_new() and gtk_object_new() will now auto-construct new objects.
383   A new function gtk_object_default_construct() is provided now which should
384   be called after every gtk_type_new() to perfom the auto-construction
385 * Improved argument support of several widgets
386 * Bug Fixes
387
388 What is new in GTK+ 1.1.3:
389
390 * GtkCList/GtkCTree now have the ability to:
391     - hide/show individual columns
392     - disable/enable column resizing
393     - set min and max for column widths
394     - set expander style of the ctree
395     - set/get row and cell styles
396     - set spacing between tree expander and cell contents in ctree
397     - toggle auto_resize for columns
398 * Must enhanced DND support, removed old DND code
399 * Idle functions are now implemented via GHook, giving a slight speed
400   improvement
401 * An environment variable GTK_MODULES which takes a colon seperated
402   list of module names GTK+ will now automatically load at gtk_init() startup
403 * GtkFontSel now has support for an extra 'base' filter
404 * New function gdk_window_set_root_origin to get the real geometry taking
405   into account window manager offsets
406 * New function gtk_text_set_line_wrap to toggle line wrapping
407 * New function gtk_widget_add_events which safely adds additional
408   events to a widget's event mask
409 * New function gdk_event_get_time to get the timestamp from a generic
410   event
411 * New widget GtkCalendar
412 * New widget GtkInvisible - InputOnly offscreen windows used for reliable
413   pointer grabs and selection handling in DND code
414 * New functions gtk_object_remove_no_notify[_by_id] to remove a certain
415   data portion without invokation of its destroy notifier 
416 * gtk_spin_button_construct is now deprecated, use gtk_spin_button_configure
417   instead 
418 * gtk_clist_set_border is now deprecated, use gtk_clist_set_shadow_type 
419   instead
420 * Removed functions gtk_object_set_data_destroy[_by_id] 
421 * Documentation additions/updates 
422 * HTML and plain text files are now included in the distribution
423 * Bug fixes, typeness corrections, and general fixups
424
425 What is new in GTK+ 1.1.2:
426
427 * Gtk+ is now featuring runtime loading of dynamic modules via the
428   --gtk-modules= command line switch. such modules have to export a
429   G_MODULE_EXPORT void gtk_module_init (gint *argc, gchar ***argv);
430   function which will be invoked to initialize the module. since such
431   modules may create new widget types, they are always resident.
432 * The tutorial has been updated again.
433 * Changes to menus including tearoff menus and accelerators.
434 * Better support for modal dialogs.
435 * Removed CAN_FOCUS by default from scrollbars and button children of toolbar.
436 * More improvements and fixes for GtkCList and GtkCTree (i.e. row sorting).
437 * GtkCTree rows can be unselectable now.
438 * The GtkCTree API has undergone major renames (see ChangeLog entry from Lars
439   Hamann on Tue Aug 18 00:29:13 1998).
440 * A bunch of varargs functions changed to get va_lists working on systems that
441   implement va_lists as arrays.
442 * Improvements to the gdkrgb code.
443 * Improvements to Gdk color handling so we greatly reduce server traffic and
444   don't leak colors anymore.
445 * Improved internal widget tree iterators (the GtkContainer::foreach signal
446   vanished because of this).
447 * Option menus can have the keyboard focus now.
448 * More fixups to the text widget.
449 * GtkFileSelection should behave much more nicely in combination with AFS now.
450 * Support for label underlining.
451 * Support for GLib 1.1.3 log domains.
452 * Documentation improvements.
453 * Configuration fixes on various platforms.
454 * Miscellaneous fixes to XInput support.
455 * Build with shared library dependencies on Linux
456 * Fix for a major bug in the type systems memory allocation code that could
457   cause random crashes.
458 * Libtool update to version 1.2b.
459 * Lots of bugfixes and cleanups again ;)
460
461
462 What is new in GTK+ 1.1.1:
463
464 * Tutorial updates and additions.
465 * Key binding support for GtkListItems and GtkList.
466 * Extended selection mode and autoscrolling for GtkLists.
467 * A GtkCtree now operates on GtkCTreeNode* structures rather than GList*.
468 * GtkCTreeNodes can now be created from GNode trees.
469 * Bug fixes for GtkNotebook, GtkCList, GtkCombo and GdkWindow reparentation.
470
471
472 What is new in GTK+ 1.1.0:
473
474 * New widget GtkFontSelector.
475 * New featurefull progress bar.
476 * New container widget GtkPacker.
477 * New object GtkItemFactory, GtkMenuFactory is deprecated.
478 * New key binding system, configurable via rcfiles, similar to styles.
479 * New widget GtkCTree with drag selections and keyboard movement and
480   and horizontal scrolling. Features also implemented for GtkCList.
481 * Significant speedups to widget creation and destruction through caching
482   colormap and visual queries to the XServer.
483 * Speedups for type creation and especially gtk_type_is_a() checks.
484 * Speedups in signal lookup, creation and emissions and connection handling.
485 * Minor speedups with object data allocation and destruction.
486 * Additions to the signal handling API (e.g. *_emitv).
487 * Support for rc-file reparsing.
488 * Resizing logic is now implemented on container widget basis, rather than
489   for toplevel GtkWindows only.
490 * Buttons support relief styles now.
491 * Some widgets are now allocated through memchunks to behave more memory wise.
492 * Newly included file gtkfeatures.h which defines compatibility macros to
493   test for certain API features upon program compilation.
494 * Child arguments support for container widgets.
495 * Far better support for object arguments, revamp of the underlying
496   mechanism for speed and reusability. Child/object arguments don't
497   need to be preceeded by the "GtkType::" portion anymore.
498 * Removed GtkAcceleratorTable in favour of GtkAccelGroup, accelerator display
499   is now performed by a new widget GtkAccelLabel.
500 * Overhaul of the resizing code. Resizing behaviour can now be specified
501   on GtkContainer basis, so the underlying algorithm isn't only available
502   for GtkWindows.
503 * GtkTables are now fully resizable.
504 * The GtkType system now supports an additional base class initialization
505   function.
506 * GtkStyles and key bindings can now be looked up depending on the base
507   types of a widget, through a new keyword `class' in rc files.
508 * GtkButton derives from GtkBin (finally).  
509 * More descriptive error messages on rc parsing.  
510 * Runtime information is available to query enum/flag definition values.
511 * Upgrade to libtool-1.2
512 * Legions of bug fixes, memory leaks, segfaults, of-by-something errors...
513   including those that already went into the 1.0.x branch.
514 * A big bunch of features and cosmetic fixups that just got lost in
515   the masses of changes.