]> Pileus Git - ~andy/gtk/blob - NEWS
55d0b95fd33f1d1ffc35563a7836f7b9cb3b389f
[~andy/gtk] / NEWS
1 Overview of Changes from GTK+ 2.91.1 to 2.91.2
2 ==============================================
3
4 * GtkApplication has been rewritten. It mostly relies on GApplication
5   API now. Remaining functions include gtk_application_new() and
6   gtk_window_set_application()
7
8 * A GtkScrollable interface has been added and implemented by all
9   scrollable widgets. GtkScrolledWindow has ::min-display-width/height
10   properties to control the minimal size of the content area.
11
12 * GtkComboBox changes:
13  - Popups can be wider than the combo box itself
14  - The deprecated GtkComboBoxEntry subclass has been removed
15  - The deprecated combo box text convenience API has been removed
16
17 * GtkRecentManager changes:
18  - Store xbel file in XDG_USER_DATA
19  - Add gtk_recent_info_create_app_info()
20  - Add gtk_recent_info_get_gicon()
21  - Coalesce multiple changes
22
23 * GtkIconView allows tree models (ignoring anything below the root level)
24
25 * GtkProgressBar, GtkSpinButton and GtkEntry no longer have their own
26   input-output window
27
28 * gtk_widget_hide_all() has been removed
29
30 * GtkGrid: A legacy-free, height-for-width grid container
31
32 * Bugs fixed:
33  632381 438318 632538 632539 632677 632736 324899 524304 617174
34
35 * Translation updates:
36  Japanese
37  Norwegian bokmÃ¥l
38  Spanish
39  Telugu
40
41
42 Overview of Changes from GTK+ 2.91.0 to 2.91.1
43 ==============================================
44
45 * GTK+ can now add a resize grip to any window. The resize
46   grip functionality in GtkStatusbar has been removed.
47
48 * A very old bug in the handling of geometry widgets has
49   been fixed, and a way to set geometry in terms of the
50   geometry widget has been added: gtk_window_resize_to_geometry()
51
52 * The GtkFileChooser now uses GSettings to store its settings
53   instead of the keyfile ~/.config/gtk-2.0/gtkfilechooser.ini
54
55 * GtkWrapBox has been dropped from GTK+ again. The widget
56   will be available in libegg until clear use cases have
57   been established.
58
59 * GtkWidget now has horizontal and vertical expand flags, in
60   the form of ::hexpand and ::vexpand properties. These flags
61   are intended to obsolete most custom container-specific
62   expand child properties, over time.
63   Expandability is inherited up the widget hierarchy.
64
65 * GtkComboBoxEntry has been deprecated in favor of a
66   ::has-entry property on GtkComboBox.
67
68 * The GtkComboBox text convenience API (gtk_combo_box_new_text(), etc)
69   has been deprecated in favor of a new GtkComboBoxText class.
70
71 * GtkLinkButton has gained a ::activate-link signal that
72   can be used to suppress the default behavior.
73
74 * The very outdated tutorial has been dropped from the GTK+ distribution,
75   and a new 'Getting started' section has been added to the API
76   documentation that will accumulate tutorial material over time.
77
78 * Bugs fixed:
79   68668 Fix handling of geometry widget
80  313350 Return type of gtk_accelerator_get_default_mod_mask...
81  351247 GtkScrolledWindow is mis documented
82  423201 gtk_combo_box_entry_active_changed does not transform...
83  563002 Doesn't call 'update-preview' on set_filename
84  612396 Implement GtkComboBoxText subclass to supersede "text"...
85  613728 Rationalize GtkTreeView focus
86  628902 use expand flags to determine window resizability
87  629722 save_entry_get_info_cb() doesn't behave correctly
88  629778 Scrolled window does not behave properly with height-for...
89  629955 Deprecate / remove gtk_main and gtk_init_add / remove* API
90  630850 Use GSettings for the filechooser settings
91  630900 GtkCellRendererClass: unify const of GdkRectangle args
92  631203 Scrolling in GtkTextView can use 100% cpu
93  631311 Obvious fix for nasty crash in menu code
94  631473 Fix GTK+3 documentation
95  631475 Two old GDK_foo key macros left in gdk/quartz/gdkkeys-quartz.c
96  631599 Allow to use arbitrary surfaces for offscreen windows
97  631719 Action-based menu accelerators don't synch with GtkMenuItem
98  631794 Warn when calling gtk_window_parse_geometry() on an empty...
99  631976 Remove GtkWidgetAuxInfo from GtkScrolledWindow
100  632059 Move the introduction of the tutorial in the reference
101  632095 GtkTargetEntry: Add boxed type and constructor
102  632140 optionally take hotspot coordinates from the pixbuf...
103  632218 BadMatch when starting gnome-shell
104
105 * New or updated translations:
106  Catalan
107  Estonian
108  Galician
109  Greek
110  Kazakh
111  Kikongo
112  Lithuanian
113  Punjabi
114  Slovenian
115  Spanish
116
117
118 Overview of Changes from GTK+ 2.90.7 to 2.91.0
119 ==============================================
120
121 * The rendering cleanup work has landed. This is a large change that
122   affects many APIs.
123   - All gtkstyle functions have been changed to take a cairo_t argument
124     instead of a window + area.
125   - GdkPixmap is gone. APIs that took pixmaps are being replaced by ones
126     that take pixbufs or cairo surfaces, or regions (where pixmaps were
127     used as masks). In background handling, pixmaps have been replaced
128     by cairo patterns, see gdk_window_set_background_pattern().
129   - GdkColormap is gone. It is replaced by visuals, see
130     gtk_widget_set_visual().
131   - The ::expose-event signal on GtkWidget has been replaced by a
132     ::draw signal.
133   - gtk_widget_get_snapshot() has been removed. Instead, gtk_widget_draw()
134     can render a widget onto an cairo_t.
135
136 * The GtkSizeRequest interface has been merged into GtkWidget, and
137   GtkCellSizeRequest has been merged into GtkCellRenderer. The wrapper
138   functions have been renamed to include 'preferred', e.g
139   gtk_size_request_get_width() is now gtk_widget_get_preferred_width()
140   and gtk_cell_size_request_get_width_for_height() is now
141   gtk_cell_renderer_get_preferred_width_for_height().
142
143 * GtkObject has been removed. The ::destroy signal has been moved
144   to GtkWidget. At the same time, GtkWidgetFlags have been removed,
145   they already had getters and setters anyway.
146
147 * GtkWidget has gained generic alignment and padding properties:
148   halign, valign, margin-left, margin-right, margin-top, margin-bottom
149   These can be used instead of container-specific child properties or
150   GtkMisc and GtkAlignment widgets.
151
152 * Container widgets can now let GTK+ handle border-width for them, using
153   gtk_container_class_handle_border_width()
154
155 * The GtkEditableClass struct has been renamed to GtkEditableInterface
156
157 * Mouse wheel scrolling has been removed from GtkNotebook
158
159 * The default policy for scrolled windows has been changed to 'automatic'
160
161 * Global url hooks have been removed from GtkAboutDialog and GtkLinkButton
162
163 * The global window creation hook has been removed from GtkNotebook
164
165 * The error handling in GDK has been modernized and avoids synchronizing
166   X requests as much as possible
167
168 * Fixed Bugs:
169  323904 GtkEditable header is slightly incorrect
170  339745 Return value of gtk_link_button_set_uri_hook not usable
171  468672 GTK_POLICY_AUTOMATIC should be the default policy...
172  486839 Filechooser 'Places' items should not move up and down...
173  601731 Drag and Drop from Workspace to Activities Overview
174  617316 Move documentation to inline comments: GtkEditable
175  621590 Add length to gtk_tree_path_get_indices
176  623664 Missing accessors for gtk_menu_get_position_func{,_data}
177  628829 Chain get_width_for_height default impl to vfunc...
178  629177 Do not use deprecated gtk_widget_get_child_requisition()
179  629277 Hanging because do_syntheszie_crossing_event is called...
180  629387 Use gint16 for GtkBorder
181  629598 Do not use deprecated gtk_widget_size_request()
182  629608 Revamp and modernize X error traps
183  629733 There is a misprint in the description of the gtk_check_...
184  629748 Fails to build without XComposite
185  629785 Do not use deprecated gtk_cell_renderer_get_size()
186  630033 Improve tests for X error traps, fix two bugs
187  630226 Removing tab scrolling from GtkNotebook
188  630520 Don't try to unref event->dnd.context unconditionally...
189  630521 Remove some remaining API warts from tab dnd api
190  630532 invalid drop point in drag-data-received callback
191
192 Updated translations:
193 Catalan
194 Czech
195 Danish
196 Dutch
197 German
198 Gujarati
199 Japanese
200 Simplified Chinese
201
202
203 Overview of Changes from GTK+ 2.90.6 to 2.90.7
204 ==============================================
205
206 * Various deprecated APIs have been removed:
207  - the GtkWidget::draw-border style property
208  - the GtkEntry::state-hint style property
209  - the GtkTreeView::row-ending-details style property
210  - the GtkRange::trough-side-details style property
211  - the GtkRange::stepper-position-details style property
212  - the GtkRange::activate-slider style property
213  - the GTK_CALENDAR_WEEK_START_MONDAY option
214  - the GtkFrame::shadow and GtkHandleBox::shadow properties
215  - the GtkTextView::page-horizontally signal
216  - the GDK_WINDOW_DIALOG window type
217  - the GTK_SELECTION_EXTENDED selection mode
218  - the GtkProgressBarOrientation, GtkAnchorType and GtkVisibility
219    enumerations
220  - GtkDialog separators, including the GtkDialog::has-separator
221    property, including setter/getter, the GTK_DIALOG_NO_SEPARATOR
222    flag and the GtkMessageDialog::use-separator style property
223  - gtk_status_icon_set/get_blinking
224  - gdk_window_et_deskrelative_origin
225  - The GtkItem class has been removed. Its functionality has
226    been merged into is sole subclass, GtkMenuItem
227
228 * The GtkIconView::orientation property has been renamed
229   to 'item-orientation'
230
231 * GtkProgressBar and GtkCellRendererProgress implement GtkOrientable
232   now, and their 'orientation' property have been split into
233   a 'orientation' property of type GtkOrientation and a boolean
234   'inverted' property
235
236 * GDK no longer exports variables: gdk_threads_lock, gdk_threads_unlock,
237   gdk_threads_mutex and gdk_display are no longer available
238
239 * GTK no longer exports variables: gtk_major_version, gtk_minor_version,
240   gtk_micro_version, gtk_binary_age, gtk_interface_age have been
241   converted to functions. gtk_debug_flags has a getter and a setter.
242   Misc. variables that had been exported by the semi-private text
243   API have been removed.
244
245 * All GDK keysym names have been changed from GDK_keysym to GDK_KEY_keysym;
246   the previous names are still available in gdkkeysyms-compat.h.
247
248 * GtkWrapBox is a new container, which distributes its children
249   over multiple rows/columns
250
251 * GTK+ now uses standard icon names when looking up stock icons
252
253 * More widgets and cell renderers have been converted to support
254   width-for-height: GtkCellRendererText, GtkAccelLabel, GtkCellView,
255   GtkComboBox, GtkMenu, GtkMenuItem
256
257 * Button boxes are now semi-homogeneous.
258
259 * The directfb backend has been removed
260
261 * Bugs fixed:
262   77669 GtkWrapBox for gtk itself, not gimp?
263   84188 "Dialogue" button widths should not be homogenous
264  414712 gtk_container_set_focus_child leaks widget
265  527499 FileFilter combo becames too wide
266  528257 File selector and stock string problems
267  605186 Use G_DEFINE_INTERFACE macro
268  614006 File chooser crashes when creating a new folder...
269  616401 Noneffective gdk_keymap_map_virtual_modifiers in early use
270  626710 GailScaleButton calculates wrong value for minimum increment
271  627028 Marked state of calendar day is not accessible
272  627139 gtkfilechooserentry shows completion progress tooltip on first show
273  627445 Removal of GtkWidget::draw-border breaks gtk_widget_queue_draw()
274  627580 GtkFontSelection: don't notify the non-existent "font" property
275  627643 gtkaboutdialog gettext problem
276  627828 Drag and drop between treeviews in different window groups broken...
277  627843 set_active_iter doc: remove restriction on path length
278  627867 tests/testsocket is broken
279  627912 misprint in the desc. of "hover-expand" and "hover-selection"...
280  628160 introspection: Update to new scanner API
281  628308 docs referencing non existing icons
282  628656 _gdk_windowing_get_startup_notify_id memory leak
283  628807 Add more "reserved for expansion" fields to GtkWidgetClass
284  628808 Warn if a widget requests minimum size > natural size
285  628884 Use a bitfield for Widget::private_flags, ::state, ::saved_state
286  628935 add gtk_radio_button_join_group method for bindings
287  629110 gtk_spinner_accessible_get_type always returns null
288
289 * Translation updates
290  Arabic
291  Armenian
292  Brazilian Portuguese
293  British English
294  Bulgarian
295  Danish
296  Estonian
297  French
298  Galician
299  Hebrew
300  Hungarian
301  Indonesian
302  Kazakh
303  Norwegian bokmÃ¥l
304  Norwegian Nynorsk
305  Portuguese
306  Serbian
307  Slovenian
308  Spanish
309  Telugu
310  Traditional Chinese
311
312
313 Overview of Changes from GTK+ 2.90.5 to 2.90.6
314 ==============================================
315
316 * All drawing done by GTK+ itself has been ported from
317   GDK drawing APIs to cairo
318
319 * GtkExpander and GtkFrame now implement GtkSizeRequest
320
321 * GtkExpander gained a ::label-fill property to make the label
322   fill the entire horizontal space
323
324 * Allow windows to be dragged by clicking on empty
325   areas in menubars and toolbars
326
327 * GtkAboutDialog can now refer to licenses using a ::license-type
328   enumeration instead of embedding the license text
329
330 * Deprecations and cleanups:
331  - Remove GtkNotebookPage
332  - Remove public struct members in many classes
333  - Remove the GtkRecentManager::limit property
334  - Remove all GDK drawing functions, ie gdk_draw_*. Use cairo instead
335  - Remove all GdkGC functions. Use cairo instead
336  - Remove all of GdkImage. Use cairo instead
337  - Remove all of GdkRGB. Use cairo instead
338  - Remove gdk_{bit,pix}map_create_from_data
339  - GDK no longer depends on the render X extension
340
341 * New accessors:
342  - gdk_cursor_get_cursor_type
343  - gdk_device_get_n_axes
344  - gdk_display_is_closed
345  - gtk_notebook_get_tab_[hv]border
346
347 * New cairo-related APIs:
348  - gdk_window_create_similar_surface
349  - gdk_window_get_background_pattern
350
351 * Bugs fixed:
352   90935 GtkIMContextClass inheritance ...
353   97414 gtkaccellabel: s/seperator/separator/
354  336225 Support for common licenses in about dialog
355  554926 gtk_init_with_args: not setting translation domain...
356  557263 Notebooks return 1 selection even if they have no pages
357  579583 GtkStatusIcon's scroll-event documentation missing "Since: ..."
358  580291 Gail does not work with custom treemodels
359  596125 Property string fixes
360  604391 Gtk-CRITICAL when switching between tab
361  605190 Should delete the description of xim related options...
362  609264 gtk_(tree/list)_store_set documentation unclear about ownership
363  611313 Window dragging from menubars/toolbars
364  612919 crash in System Monitor: I was moving up-down wit...
365  614049 Allow packing options for GtkExpander label widgets
366  614443 Doxygen 'forgets' #define documentation under certain conditions
367  615474 gtk_widget_set_has_window() documentation is not correct
368  618327 GtkNotebookPage should be deprecated
369  621571 Fix damage events on offscreen windows
370  622658 GTK_STOCK_FILE Stock Label
371  623603 meld built with pygtk-2.16.0 giving warnings
372  623865 gtkdnd: pointer grab may never finish (ungrab before grab)
373  624087 Missing accessor for GdkCursor.type
374  624224 Missing accessor for GdkDisplay.closed
375  624270 crash in gtk_entry_completion_default_completion_func
376  624333 Deprecate GtkRecentManager:limit
377  624362 access an invalid ActionGroup
378  624367 GtkButtonBox is broken
379  624397 Move GtkBoxChild from public .h to gtkbox.c
380  624432 GtkRadioMenuItem is broken
381  624540 GtkRadionAction loop in its activate handler
382  624687 switch-page bug when activated from menu
383  624707 warnings when showing gnome-terminal menus on gtk master
384  624779 GtkCalendar padding/margin/spacing/border/whatever is hard-coded
385  625104 Don't try and use the child of a GtkSeparatorMenuItem
386  625235 Tooltips cause warnings
387  625300 Buttons order in dialogs broken in gtk+3
388  625416 gtk_file_chooser_default_map should not reload directory
389  625650 Add annotations to gtk_tree_model_iter_next() and...
390  625655 win32 compile failure due to G_SEAL
391  625715 comment string in GtkAboutDialog is not centered
392  625953 GailAdjustment does not implement get_minimum_increment...
393  626052 Activating a file in GtkFileChooserDialog activates action...
394  626276 gtk_tree_selection_set_select_function() should allow...
395  626514 License dialog doesn't take into account long copyrights
396
397 * Translation updates:
398  Asturian
399  Galician
400  German
401  Hebrew
402  Indonesian
403  Norwegian bokmÃ¥l
404  Punjabi
405  Romanian
406  Simplified Chinese
407  Slovenian
408  Spanish
409  Swedish
410  Traditional Chinese
411
412
413 Overview of Changes from GTK+ 2.90.4 to 2.90.5
414 ==============================================
415
416 * Support NOCONFIGURE in autogen.sh to avoid running configure
417
418 * The cairo dependency has been bumped to 1.9.10
419
420 * Drop aliasing hacks instead use -Bsymbolic-funtions.
421
422 * Bugs:
423  589904 Certain drawing in some widgets does not pass on...
424  610346 Confusion between GtkWindow:allow-grow and GtkWindow:resizable
425  613284 Replace GdkRegion with cairo_region_t
426  617386 Migrate API docs from templates to source files (GtkButton)
427  617389 Migrate API docs from templates to source files (GtkCalendar)
428  617392 Migrate API docs from templates to source files (GtkCellEditable)
429  621414 Can't select file on file browser popup after choosing to sort...
430  622677 Remove GdkWindowObject public structure
431  623239 also show num-lock warning
432  623307 Annotate gdk_display_manager_list_displays return value
433  623389 [iconview] Fix segfault when using rubberband selection
434  623476 [windows] gdk fails to compile
435  623520 gtk+ 3 fails to build from outside git source tree
436  623845 Use -Bsymbolic
437  461618 use GSlice for gtkrequisition
438
439 * Deprecations and cleanups:
440  - GdkRegion has been removed, and region-using code has been ported
441    to cairo_region_t and cairo_rectangle_int_t.
442  - The deprecated GdkFont has been removed, together with vestigial
443    uses in GTK+, including the GdkFontSel::font property and a GdkFont
444    member in GtkStyle.
445  - The GdkWindowObject structure has been removed from public headers.
446  - The GdkWindow::allow-grow and ::allow-shrink properties have been removed.
447
448 * Quartz:
449  - Misc fixed to clipping and color handling
450  - Update the DND code for GdkDevice changes
451
452 * Translation updates:
453  Breton
454  Czech
455  Estonian
456  Galician
457  Hebrew
458  Kazakh
459  Norwegian bokmÃ¥l
460  Slovenian
461  Simplified Chinese
462  Spanish
463
464
465 Overview of Changes from GTK+ 2.90.3 to 2.90.4
466 ==============================================
467
468 * GSEAL is now enabled by default
469
470 * gdk-pixbuf has been moved into a separate module
471
472 * The GtkExtendedLayout interface has been renamed to
473   GtkSizeRequest
474
475 * gtk_init warns if it detects GTK2.x and GTK3 being used
476   in the same process
477
478 * Misc new API:
479  gtk_accessible_set_widget
480  gtk_message_dialog_get_message_area
481  gtk_font_selection_dialog_get_font_selection
482  gtk_window_group_get_current_grab
483  gtk_table_get_size
484  gtk_button_get_event_window
485  gdk_device_manager_get_client_pointer
486  gdk_image_get_pixels
487
488 * Bugs fixed:
489  522756 gnome-appearance-properties crashed with SIGSEGV...
490  620832 make _gtk_window_group_get_current_grab() public
491  621250 Missing accessors for GtkRange has_stepper_X
492  621685 Add gdk_device_manager_get_client_pointer() ...
493  621690 Enable per-device events on gtk_widget_realize()
494  621927 Bug in gtk/Makefile.in: affects gtktypefuncs.c
495  622011 Don't handle "connecting-to-device" state reason
496  622581 [GSEAL] GtkButton has no accessor for event_window
497  622765 Duplicate symbols in Gdk on OSX
498  622827 test/testapplication.c doesn't build in quartz
499
500 * Translation updates:
501  Arabic
502  Armenian
503  Galician
504  Slovenian
505  Spanish
506
507
508 Overview of Changes from GTK+ 2.90.2 to 2.90.3
509 ==============================================
510
511 * GtkProgress has been removed. It was entirely deprecated for
512   a long time
513
514 * GtkApplication has been updated to match the GApplication API
515   as of GLib 2.25.9
516
517 * XI2:
518  - Device grabs now take precedence over GTK+ grabs
519  - Various other bug fixes
520
521 * Extended Layout:
522  - Prevent negative allocations (as seen in emacs and gedit)
523
524 * Win32: XP theming is back !
525
526 * Misc new API:
527  - Add an accessor for GtkViewport->view_window
528  - Add an accessor for GdkDragContext->source_window
529  - gtk_icon_theme_load_symbolic_for_style a variant of
530    gtk_icon_theme_load_symbolic taking a GtkStyle
531
532 * Introspection:
533  - Misc annotation fixes
534
535 * Cleanups:
536  - GTK_OBJECT_FLAGS and GtkObjectFlags have been depreated
537
538 * Bugs fixed:
539  620618 get rid of GtkProgress
540  615666 GTK_OBJECT_FLAGS() should be deprecated
541  617444 GNU emacs warnings with extended layout GTK+
542  621631 Non-consistent style in GtkUIManager docs
543  621136 GtkCalendar: Some functions always return TRUE
544  621003 GtkApplication] Update for GApplication API changes
545  621683 gtk_menu_attach_to_widget() should emit an "attach-widget"...
546  621479 typo in GTK docs on library.gnome.org
547  621081 GtkViewport missing accessor for view_window.
548  620440 Combo-boxes loose focus
549  621775 Space symbol missed in Resources chapter
550  621578 Symbolic color cut-and-paste mess
551  621111 gtk_init_with_args()'s GOptionEntry argument should be const
552  602289 gdk_spawn_on_screen(_with_pipes) uses gint for pid
553
554 * Updated translations:
555  Galician
556  Norwegian bokmÃ¥l
557  Spanish
558
559
560 Overview of Changes from GTK+ 2.90.1 to 2.90.2
561 ==============================================
562
563 * GtkApplication: an application class, based on GApplication. Currently,
564   this is fairly minimal, but it is good enough already to replace libunique.
565   Future work:
566   - Add a way to say "This is my application menubar", which gets
567     put into all toplevel windows on non-OS-X, and into the top
568     on OS X
569   - Support session management
570   - Maybe support application settings
571
572 * Misc new api:
573  - gtk_window_has_group: determines if a window is part of a window group
574  - gtk_status_bar_remove_all: removes all messages from a statusbar
575
576 * DND on offscreen windows works now
577
578 * GtkIconView:
579  - arrow keynav can now be connected over adjacent icon views
580
581 * GtkAssistant:
582  - gtk_assistant_commits: prevents going back beyond a certain
583    point in the page sequence, adjust shown buttons appropriately
584  - It is now officially supported to have a progress page at the
585    end of the page sequence
586
587 * Introspection:
588  - Many annotation fixes
589  - gdkx.h api is exported in a separate typelib, GdkX11-3.0
590
591 * Cleanups:
592  - the draw_string function has been removed from GtkStyle
593  - gdk_get/set_use_xshm have been removed
594  - Deprecated gdk_color api has been removed
595
596 * Documentation related to GTK+ 1.2, etc has been removed. Instead
597   there is an initial GTK+ 3 porting guide now.
598
599 * Bugs fixed:
600  620509 Progress bar rendering is broken
601  607628 DnD operation doesn't work when using offscreen.
602  619838 kill off references to gtk 1.2 in docs/comments
603  608218 GtkOffscreenWindow causes bad window with GtkEntry
604  619649 Remove deprecated code from GdkColor
605  619080 text-inserted events should not be emitted unless text...
606  620511 Use g_source_set_name for all custom GSources in GTK+
607  603637 gtk printer dialog does not show remote printer
608  618271 Add gtk_window_has_group()
609  617863 Actually expose the X11 funcs through introspection
610  620244 misprint in the description of the function gtk_widget_list_...
611  549127 Print error dialog not shown
612  611709 gseal hides GtkStatusBar->messages but doesn't give anything...
613  596428 GtkAssistant: Support ending with a progress page
614
615 * Translation updates:
616 Esperanto
617 Hebrew
618 Irish
619
620
621 Overview of Changes from GTK+ 2.90.0 to 2.90.1
622 ==============================================
623
624 * Printing: The list of locales using US Letter papersize has
625   been updated to match the CLDR 1.8.1
626
627 * The default location for the 'module cache' files (ie the files
628   produced by gdk-pixbuf-query-loaders and gtk-query-immodules) has
629   been changed to $libdir/gtk-3.0/3.0.0/{loaders,immodules}.cache.
630   This should avoid multilib problems with the previous location.
631
632   Additionally, the query utilities accept an --update-cache argument
633   to update the cache file directly, instead of writing to stdout
634
635 * gtk_radio_action_join_group: A binding-friendly way to manage
636   radio actions.
637
638 * GtkAdjustment enforces values to the range [lower, upper - page_size]
639
640 * GDK has been GSEALed, with the addition of suitable accessors
641
642 * The XI2 branch with better support for multiple input devices has
643   been merged, together with backends for XInput, XInput2, win32 and
644   Quartz, and corresponding updates to input-device handling code
645   in GTK.
646
647 * A number of orientable widgets are no longer abstract: GtkBox,
648   GtkButtonBox, GtkPaned, GtkRuler, GtkScale, GtkScrollbar, GtkSeparator.
649   All of these can now be instantiated and flipped between horizontal
650   and vertical orientation at runtime. Their H/V subclasses are still
651   available, as convenience API.
652
653 * More deprecated API has been removed
654
655 * Bugs fixes:
656  613132 GtkBoxChild should probably be deprecated
657  592580 GDK needs sealing
658  618870 GTK+ uses wrong pkg-config to reveal the CAIRO_PREFIX
659  616817 Remove code to support deprecated GtkToolbar api
660  619114 undefined reference to `XkbBell'
661  617863 Actually expose the X11 funcs through introspection
662  613302 GtkWidget not emitting the unmap signal
663  565559 Incorrect leave-notify signals for treeview
664  533946 GtkHScale does not update correctly
665  618000 Sync paper size fallbacks with CLDR 1.8.1
666  614581 Gtk print dialog freezes on start up
667  551322 configure does not use -lm in jasper (JPEG2000) testing
668  619474 Fixes for GtkAdjustment for GTK+ 3
669  555087 Shouldn't the return type of gtk_entry_completion_get_model...
670  619385 Fix compilation warning: Do not break strict-aliasing rules
671  596725 Add XInput2 support
672
673 * Updated translations
674  Arabic
675  Estonian
676  Galician
677  Italian
678  Indonesian
679  Oriya
680  Shavian
681
682
683 Overview of Changes from GTK+ 2.20.x to 2.90.0
684 ==============================================
685
686 * GtkExtendedLayout: Width-for-height geometry management.
687   This change is known to currently cause minor problems in
688   some applications, see
689   617444 GNU emacs warnings with extended layout GTK+
690   617556 inkscape toolbars broken with extended layout
691
692 * gtk_icon_theme_load_symbolic: Support for 'symbolic' icons
693
694 * Applications can indicate their preference for a dark theme
695   variant by setting GtkSettings::gtk-application-prefer-dark-theme
696
697 * GtkTreeModelFilter can be more usefully subclassed
698
699 * Tooltip positioning has been changed to make it less likely
700   that the tooltip covers up the widget that it relates to
701
702 * Deprecated functions have been removed (though some more work
703   remains to be done in GDK)
704
705 * This release is parallel installable with GTK+ <= 2.22, by renaming
706   .pc files, libraries, include paths, module paths, gtkrc files, etc
707   to include a '3.0' in its name.
708
709 * Updated translations:
710  Basque
711  Bengali
712  Bengali India
713  Catalan
714  Catalan (Valencian)
715  Crimean Tatar
716  Danish
717  Dutch
718  Galician
719  Greek
720  Indonesian
721  Kannada
722  Kazakh
723  Latvian
724  Marathi
725  Norwegian bokmÃ¥l
726  Spanish
727  Thai
728  Ukrainian
729
730
731 Overview of Changes from GTK+ 2.19.7 to 2.20.0
732 ==============================================
733
734 * Support the tracker 0.8 api in the file chooser search code
735
736 * Bug fixes:
737  609929 Dragging between two windows cause the menu widget...
738  613241 entry sends extra notify::text with "" on destroy
739  610946 error during gtk+ build + nonsense error messages
740  610176 Some cups1.2 feature use not shielded by API version-check
741  612574 GtkMenuItem does not emit notify::label when label...
742  612505 Entry layout not updated when underlying buffer changes
743  612346 gdk_window_set_icon_name doesn't work
744  612308 GTK+ Build error: redefinition of 'struct IPrintDialogCallback'
745  611118 Set APPLICATION_ID when launching desktop app
746  612768 DND cause crash in VNC environment
747  612575 Improve docs of gtk_notebook_set_tab_label_packing
748  605333 Confusing error in documentation
749  613028 Do not get a GtkSettings for size lookup if...
750
751 * Translation updates:
752  Basque
753  Brazilian Portuguese
754  Catalan
755  Dutch
756  Estonian
757  Finnish
758  Galician
759  Gujarati
760  Italian
761  Punjabi
762  Romanian
763  Spanish
764  Swedish
765  Traditional Chinese
766  Vietnamese
767
768
769 Overview of Changes from GTK+ 2.19.6 to 2.19.7
770 ==============================================
771
772 * Bug fixes:
773  611707 Move documentation from templates to inline comments
774   69872 GTK_WIDGET_SET_FLAGS should be deprecated
775  612066 empathy hangs when clicked on information about contact...
776  557420 Some compose sequences don't work anymore...
777  569042 gailbooleancell does not seem to attend to changes...
778  600992 File chooser reference counting issues
779  610905 gtk_drag_source_set need instrospection hint
780  611051 Search Entry Clear Icon not accessible
781  611217 Incorrect translator comment
782  611317 Document targets in drag and drop
783  611319 gtk_window_set_transient_for undocumented NULL value for parent
784  611658 Update documentation for gtkvscrollbar
785  611662 Update documentation for gtkvseparator
786  611686 focus_in/focus_out in gailtreeview.c should return FALSE...
787  611831 Move documentation to inline comments: GtkVBox
788  612119 Do not scroll when middle pasting
789
790 * Translation updates:
791  Afrikaans
792  Arabic
793  Basque
794  British English
795  Bulgarian
796  Czech
797  Danish
798  French
799  Galician
800  German
801  Greek
802  Hungarian
803  Lithuanian
804  Low German
805  Norwegian bokmÃ¥l
806  Polish
807  Portuguese
808  Russian
809  Slovenian
810  Swedish
811
812
813 Overview of Changes from GTK+ 2.19.5 to 2.19.6
814 ==============================================
815
816 * Bugs fixed:
817  610701 gnome-shell crashes frequently
818  604799 Crash when button is pressed.
819  609744 crash at parse_data_for_row_pseudocolor
820  600789 gdk/gdkwindow.c "find_native_sibling_above" will crash
821  610141 gtk_assistant_get_nth_page() function fails to deliver...
822  609952 destroying a notebook window when the last tab got dragged...
823  603923 [annotations] gtk_tree_store_newv/set_column_types
824  610474 [annotations] Add allow-none
825  609650 GtkPlug Embedded signal is not emitted when plug...
826  610381 More space between toolbar icon and label
827  548026 No accessor for GtkWidget.requisition
828  609514 fix introspection comments for gtk_tree_view_get_path_at_pos
829  610235 msgid in bad English
830  607697 GDK_META_MASK always set on Alt-Enter with gtk+ 2.19.x
831  610632 gtk_info_bar_set_default_response problem
832  609172 gdk/directfb: little cleanups
833  610184 gtk_assistant_set_current_page() segfaults...
834
835 * Updated translations
836  Bulgarian
837  Czech
838  Estonian
839  German
840  Japanese
841  Korean
842  Lithuanian
843  Norwegian bokmÃ¥l
844  Oriya
845  Polish
846  Romanian
847  Slovenian
848  Spanish
849
850
851 Overview of Changes from GTK+ 2.19.4 to 2.19.5
852 ==============================================
853
854 * GSEAL work:
855  - Add accessors for GtkPaned members
856  - Add gtk_widget_style_attach
857  - Seal GtkTextTag
858  - Deprecate GtkCurveType
859  - More GtkWidget flags accessors
860
861 * Bugs fixed:
862  403485 Move docs from tmpl/* to the source files
863  556263 Deprecate GtkCurve
864  554420 Seal GtkTextTag
865  561816 Optimize gtk_paned_set_position notifications
866  606288 Not using GtkOptionMenu deprecated symbols in test file
867  607061 GtkPlug socket window is sometimes incorrectly unref'd
868  607344 GtkCalendar: crash when using tooltips via glade
869  607885 GtkPaned::handle lack accessor
870  608162 gtktoolbutton doesn't create right proxy menu item...
871  608345 wrong reference on gdk_keymap_translate_keyboard_state
872  608370 dnd drag-dest signal handlers don't get correctly disconn...
873  608410 GOK types backwards in text entry fields
874  608615 DnD events sent to wrong window
875  608807 Marks on GtkScale widgets can overlap
876  609188 gdk/directfb: compiler warning in _gdk_windowing_pointer_grab()
877  609191 gdk/directfb: use G_DEFINE_TYPE in gdkcolor-directfb
878  609199 gdk/directfb: use G_DEFINE_TYPE in gdkgc-directfb
879  609201 gdk/directfb: max cursor size is artificially limited
880  591186 GTK Menu Bar is unreadable under Windows 7
881
882 * Updated translations
883  Bengali
884  Brazilian Portuguese
885  Czech
886  Estonian
887  French
888  Norwegian bokmÃ¥l
889  Slovak
890  Spanish
891  Thai
892
893
894 Overview of Changes from GTK+ 2.19.3 to 2.19.4
895 ==============================================
896
897 * GSeal:
898  - New accessors for GtkEntry windows
899  - New accessors for GtkRange members
900
901 * Bugs fixed:
902  607082 Add accessors for sealed GtkRange members
903  567729 Add GtkToolPalette
904  591102 gdk_pixbuf_save() creates a zero-size file...
905  600865 gnome-panel crashed with "BadPixmap...
906  601412 action area presence makes gnome-terminal window grow...
907  603144 Suspected wrong builtin page size: Chinese PRC6 and...
908  606009 weirdness with clipping in abiword - csw
909  606698 Misplaced declaration of gtk_print_job_set_status
910  606761 pixops.c: variables are declared at middle of block
911  607217 Mixing calls to _set_markup and _set_text causes...
912  607269 gtk_label_set_attributes with empty list no longer...
913  607322 Double-click doesn't work if the item is selected...
914  607687 f-spot crashes when using themes using the pixmap...
915  607778 Add accessors for GtkEntry's windows
916  607770 Leak in GtkTreeView with HildonPannableArea
917  603245 drawing artifacts with action widgets and long tab...
918
919 * Updated translations:
920  Arabic
921  Asturian
922  Basque
923  Bengali
924  Bulgarian
925  Burmese
926  Norwegian bokmÃ¥l
927  Slovenian
928  Spanish
929  Swedish
930
931
932 Overview of Changes from GTK+ 2.19.2 to 2.19.3
933 ==============================================
934
935 * GSeal:
936  - Deprecate widget flag macros
937    GTK_WIDGET_STATE
938    GTK_WIDGET_SAVED_STATE
939    GTK_WIDGET_FLAGS
940    GTK_WIDGET_TOPLEVEL
941    GTK_WIDGET_NO_WINDOW
942    GTK_WIDGET_COMPOSITE_CHILD
943    GTK_WIDGET_APP_PAINTABLE
944    GTK_WIDGET_CAN_DEFAULT
945    GTK_WIDGET_CAN_FOCUS
946    GTK_WIDGET_DOUBLE_BUFFERED
947    GTK_WIDGET_HAS_DEFAULT
948    GTK_WIDGET_HAS_GRAB
949    GTK_WIDGET_RECEIVES_DEFAULT
950  - Also deprecate the type macros
951    GTK_WIDGET_TYPE
952    GTK_OBJECT_TYPE_NAME
953    GTK_OBJECT_TYPE
954
955 * GtkOffscreenWindow: A new toplevel container widget to manage
956   offscreen rendering of child widgets
957
958 * OS X:
959  - Memory leak fixes and other improvements
960
961 * Bugs:
962  604901 Provide generic offscreen rendering container
963  597100 There is a misprint in the documentation...
964  598383 GtkWidget::state-changed signal should be documented
965  602284 Need a way to retrieve the preedit string in a GtkTextView
966  605090 Fix some compilation warnings
967  605199 Contradiction in the description of function...
968  606068 Setup libjpeg error handling earlier...
969  606230 gtk_combo_box_set_active_iter & unsetting the active item
970  606291 Fix some issues in "Migrating from GtkOptionMenu...
971  606434 prop-editor should support GdkColor
972
973 * Translations:
974  Asturian
975  Basque
976  Kannada
977  Norwegian bokmÃ¥l
978  Slovenian
979  Spanish
980  Swedish
981  Thai
982  Ukrainian
983
984
985 Overview of Changes from GTK+ 2.19.1 to 2.19.2
986 ==============================================
987
988 * Introspection:
989  - Introspection data for gdk-pixbuf, gdk and gtk is now
990    included in GTK+ itself. As a consequence, the atk dependency
991    has been bumped to 2.29.2, and a gobject-introspection dependency
992    has been added. configure with --disable-introspection in order
993    to not build introspection data.
994
995 * Client-side windows:
996  - Fix some issues with handling of button and motion events
997  - Fix damage reporting for drawing on offscreen windows
998  - Fix problems with handling of input extension events
999
1000 * Printing:
1001  - Add api to handle printer hard margins
1002
1003 * Simple IM Context:
1004  - Sync with Xorg compose file
1005  - Make Compose-vowel-minus combinations consistent
1006
1007 * GDK:
1008  - gdk_screen_get_primary_monitor: New function to get the
1009    'primary' monitor in a multi-monitor setup
1010
1011 * gdk-pixbuf has gained the ability to store and retrieve embedded
1012   ICC color profiles in png and tiff images
1013
1014 * Keyboard handling:
1015  - Mnemonic underlines can now optionally be hidden until the Alt key
1016    is pressed, this can be turned on with the gtk-auto-mnemonics setting
1017  - Using the Super, Meta and Hyper modifiers in accelerators is working
1018    more reliably
1019
1020 * Bugs fixed:
1021  603652 Sporadic crashes with GtkSocket
1022  605008 the region of damage event doesn't be copied in gdk_event_copy
1023  588554 only show the accelerator when pressing alt
1024  601473 GDK_BUTTON?_MOTION_MASK appears to be broken
1025  601712 Add API for determining primary monitor
1026   50942 selection/arrow key improvement
1027  427409 editing shortcut always fails with super key
1028  468989 need a way to get the printer's hard margins
1029  502266 gtk_tree_selection_get_selected_rows free example produces...
1030  592279 Introspection support
1031  597386 Cannot click buttons more than once without moving the mouse...
1032  599213 Use GtkCellEditable:editing_canceled property instead...
1033  599397 Button stuck at pressed look after screen rotation
1034  601383 gtk_icon_view_get_selected_items: example code gives...
1035  602099 Actions can be activatable too
1036  603619 the colormap of offscreen's pixmap doesn't inherit...
1037  603904 gdk_draw_line doesn't have expose area.
1038  604117 Add info about single includes when compiling GTK+ apps
1039  604289 Please permit progress pages to be final in a dialog
1040  604462 gtktoolitem.c: return-value is different type
1041  604747 Using gdk_draw_line, the expose area of damage event is wrong
1042  604787 property-notify-event is not delivered to a non-toplevel...
1043  604881 GtkCellEditable::editing-cancelled should be writable
1044  591085 GtkBuilder object ID bounded to GtkWidget "name" property
1045
1046 * Updated translations:
1047  Arabic
1048  Estonian
1049  Hebrew
1050  Low German
1051  Norwegian bokmÃ¥l
1052  Slovenian
1053  Spanish
1054  Telugu
1055  Vietnamese
1056
1057
1058 Overview of Changes from GTK+ 2.19.0 to 2.19.1
1059 ==============================================
1060
1061 * Client-side windows:
1062  - Avoid some unnecessary exposes
1063  - Avoid unnecessary redraws related to clearing windows
1064
1065 * GtkNotebook gained an 'action area'
1066
1067 * GtkStatusbar gained a 'message area'
1068
1069 * GtkToolPalette is a new container to show tool items
1070   in collapsible groups in a grid
1071
1072 * gdk-pixbuf can now handle compressed TIFF images
1073
1074 * GSEAL work:
1075  - New accessor: gtk_window_get_window_type()
1076
1077 * Bugs fixed:
1078  590017  Does not compile under MinGW32 + Wine
1079  569430 Gail should include a reciprocal relationship for NODE_CHILD_OF
1080  598758 Need context for a propper translation
1081  594535 No accesor for GtkStatusbar->label and ->frame
1082  602725 fix setting icon-size on GICON images
1083  599402 Landscape and Reverse Landscape icons need to be swapped
1084  588740 JPEG images open with blur effect?
1085  601337 Only use gdk_input_select_events() if XINPUT_NONE is defined
1086  598050 Flickering in a gtk_socket
1087  600158 Do not use static GTypeInfo and GInterfaceInfo
1088  561973 Problem dragging images from Firefox to GTK+ app on Windows
1089  601512 Remove unnecessary check in GtkTreeModelFilter
1090  600222 Check for existence of cairo-svg.h in configure.in
1091  595498 No accesor for GTK_WINDOW ()->type
1092  116650 "action area" for GtkNotebook (e.g. for tab close button)
1093  600150 GtkColorSelection tooltip issues
1094  480065 wrong tree collapsed (or expanded) after having scrolled
1095  596473 Second double-click of GtkTreeView row doesn't emit...
1096  601869 GtkUIManager assumes too much about popup menus
1097  581145 Wrong positioning for fullscreen gedit toolbar animation
1098  602724 gailimage doesn't handle GTK_IMAGE_{GICON,ICON_NAME}...
1099  561130 get_monitor_geometry segfaults if called with non-existant...
1100  597026 Missing include for memset()
1101  585383 Segfault in gdk_pixbuf__ico_image_save
1102  597865 Move documentation from templates to inline comments
1103  123569 Catch contents being reparented out of socket
1104  561334 Incorrect named constant in documentation of two GtkButton...
1105  601611 gtk_selection_data_get_targets() reads X Atom data as GdkAtoms
1106  601409 action area presence modifies notebook behaviour
1107  603268 wrong Since: markers in toolpalette merge
1108  603271 wrong toolbar style
1109  601959 must release compose key before continuing compose sequence
1110  603302 Incorrectly warn about links on text with color and underline
1111  603201 gtk_about_dialog_set_url_hook has no effect anymore
1112  591438 dfb_events_dispatch is not thread safe
1113  589842 GtkAction API to have its menu item proxies have always-show...
1114  584700 TIFF pixbuf loader should support compression
1115  603128 Adding new UI that was recently removed may cause wrong order
1116  601682 Print preview should use gtk_show_uri by default
1117  596083 Deprecate notebook label packing functionality
1118
1119 * Updated translations:
1120  Estonian
1121  Galician
1122  Japanese
1123  Low German
1124  Norwegian bokmÃ¥l
1125  Punjabi
1126  Slovenian
1127  Spanish
1128  Swedish
1129
1130
1131 Overview of Changes from GTK+ 2.18.x to 2.19.0
1132 ==============================================
1133
1134 * A throbber widget and cell renderer have been added: GtkSpinner and
1135   GtkCellRendererSpinner
1136
1137 * GtkFileSystemModel has been reimplemented, for major speedups and
1138   other improvements
1139
1140 * Synchronize compose sequences with the current X.org Compose file
1141
1142 * Win32:
1143  - The GDI+ image loader works again
1144  - XP themes have been disabled since they don't work currently
1145
1146 * OS X:
1147  - Fix crashes due to unimplemented GdkWindowImplIface methods
1148  - Use standard Mac keyboard shortcuts (Cmx-X, Cmd-C instead of
1149    Ctrl-X, Ctrl-C, etc)
1150  - Add a pixbuf loader for the QTIF format
1151  - Improve multi-monitor handling
1152
1153 * GSEAL work:
1154  - New accessor for GtkDialog buttons: gtk_dialog_get_widget_for_response
1155  - New accessor for GtkViewport bin_window: gtk_viewport_get_bin_window
1156  - Add a GtkCellEditable::editing-canceled property
1157
1158 * Deprecations:
1159  - GtkInputDialog has been deprecated
1160  - GtkCurve and GtkGammaCurve have been deprecated
1161  - The tab-packing feature in GtkNotebook has been deprecated
1162
1163 * Bugs fixed:
1164  594644 Cannot compile GTK+ with MinGW 4.4.0
1165  581150 GtkIconView tries to paint items with invalid sizes
1166  598881 Unimplemented GdkWindowImplIface methods crash gimp on OSX
1167  598218 Substitute deprecated gtk_*_ref/unref calls
1168  381371 Print margins not correct in WIN32 - not allowing for...
1169  597596 Toolbar button accessible objects don't have label name
1170  599118 Translators comment for "Finishing" labels
1171  598261 Add support to GtkTooltip to handle GIcons
1172  530351 Use standard mac shortcuts
1173  597865 Move documentation from templates to inline comments
1174  596083 Deprecate notebook label packing functionality
1175  594903 Deprecate GtkInputDialog
1176  599403 Avoid using accel group internals in GtkSocket
1177  590800 The window content is not updated correctly when scrolling
1178  598515 Do not assign the GtkSpinner parent class twice
1179  552678 gdi+ pixbuf loaders fail on "large" images
1180  598217 Substitute deprecated gdk_*_ref/unref calls
1181  596238 Make Quartz backend properly implement the GdkScreen...
1182  599446 atk_object_set_name () assertion in gtk_tool_button_set_label
1183  592582 Print preview doesn't reflect the printout
1184  563010 GtkFileChooserButton cannot have none file selected again
1185  596019 No accesors for GtkDialog buttons
1186  366217 Add QTIF image support
1187  594962 No accessor for GTK_ENTRY (entry)->editing_canceled
1188
1189 * Updated translations:
1190  Arabic
1191  Brazilian Portuguese
1192  Bulgarian
1193  Catalan
1194  Finnish
1195  Greek
1196  Norwegian bokmÃ¥l
1197  Oriya
1198  Punjabi
1199  Romanian
1200  Russian
1201  Serbian
1202  Shavian
1203  Slovenian
1204  Spanish
1205  Swedish
1206  Slovenian
1207  Vietnamese
1208
1209
1210 Overview of Changes from GTK+ 2.18.1 to 2.18.2
1211 ==============================================
1212
1213 * GTK+ now ignores SIGPIPE in gtk_init(). Previously
1214   this was done deep in the lpr printbackend.
1215
1216 * Fix compilation of the DirectFB backend.
1217
1218 * Bugs fixed:
1219  597386 Cannot click buttons more than once...
1220  588059 sometimes notification icons are not visible with csw
1221
1222 * Updated translations:
1223  Italian
1224  Japanese
1225  Serbian
1226
1227
1228 Overview of Changes from GTK+ 2.18.0 to 2.18.1
1229 ==============================================
1230
1231 * Client-side Windows:
1232  - Fix a problem with the F-Spot screensaver
1233  - Request native events that are necessary for grab emulation
1234  - Fixes for input device and extended input event handling
1235  - Allow up to 255 buttons in extended input events
1236
1237 * OS X:
1238  - Improve handling of multi-monitor setups
1239  - Basic DND works
1240  - Other improvements
1241
1242 * Filechooser:
1243  - Support Tracker 0.7 in the search code
1244
1245 * Bugs fixed:
1246  596423 Landscape pages are the wrong way around
1247  588449 DnD doesn't work on GDK/Quartz
1248  596080 Mention "gtk-tooltip" in gtk_widget_set_tooltip_window
1249  596580 Blank rows in entry autocompletion
1250  588649 extended input events sent to widgets that didn't...
1251  596081 Update tracker support for version 0.7
1252  596345 clicking empty space in backgrounds...
1253  596494 New property "cursor" in 2.18's GdkWindow with wrong...
1254  596012 popup menu position is horribly off on gdk quartz...
1255  596250 Gdkcursor-quartz.c doesn't implement GDK_BLANK_CURSOR
1256  586207 Printing dialog with a CUPS printer connected...
1257
1258 * Translation updates:
1259  Assamese
1260  British English
1261  Czech
1262  Estonian
1263  French
1264  Galician
1265  German
1266  Hungarian
1267  Slovenian
1268  Spanish
1269  Swedish
1270
1271
1272 Overview of Changes from GTK+ 2.17.11 to 2.18.0
1273 ===============================================
1274
1275 * Add GtkTreeModelFilter testsuite and fix multiple bugs
1276
1277 * Client-side windows:
1278  - Fix issues around recursion and gdk_window_process_updates
1279  - Fix issues with grabs and cursors
1280  - Handle window hierarchy and geometry changes in expose handlers
1281  - New function, gdk_window_flush, that may be needed in certain
1282    situations
1283  - Automatically flush windows when doing non-double-buffered exposes
1284
1285 * Quartz backend:
1286  - Fix various 'stuck UI' issues
1287  - Fix the size of the root window
1288
1289 * Bugs fixed:
1290  588455 run application broken when setting background color...
1291  346800 Rework sort/filter models to use indices to parents
1292  593678 select "Manage Custom Sizes" from print dialog hangs gedit
1293  594652 gtk printer dialog does not understand boolean printer options
1294  594668 Add new Xorg keysyms
1295  591583 Padre (a wxPerl+Gtk IDE) hangs when editing Perl code...
1296  594600 Windows only allows 64-character system-tray tooltips
1297  594679 Fix warning in testwindows.c
1298  594880 Drawing issues in ExoIconView
1299  593507 AbiWord's main drawing area not exposed properly
1300  594913 is_composited race ...
1301  594738 Windows often do not respond to events on dual-head
1302  503776 crash when trying to print to non-existent lpr printer
1303  595599 Don't focus unmapped radio buttons
1304  595790 Segfault in gtkiconfactory.c on NULL GError
1305  588649 extended input events sent to widgets that didn't...
1306  550939 GtkFileChooser listbox does not refresh selection
1307
1308 * New deprecation:
1309  gdk_event_get_graphics_exposes has been deprecated
1310
1311 * Updated translations:
1312  Afrikaans
1313  Assamese
1314  Bengali India
1315  Brazilian Portuguese
1316  British English
1317  Catalan
1318  Danish
1319  Dutch
1320  German
1321  Greek
1322  Gujarati
1323  Hindi
1324  Italian
1325  Japanese
1326  Lithuanian
1327  Maithili
1328  Malayalam
1329  Marathi
1330  Norwegian bokmÃ¥l
1331  Oriya
1332  Polish
1333  Romanian
1334  Simplified Chinese
1335  Slovenian
1336  Traditional Chinese
1337  Ukrainian
1338
1339
1340 Overview of Changes from GTK+ 2.17.10 to 2.17.11
1341 ================================================
1342
1343 * Client-side windows:
1344  - Add gdk_cairo_reset_clip that lets you get back the original
1345    drawable clip
1346  - Add gdk_window_restack to more conveniently restack child windows
1347  - Add gdk_window_is_destroyed as a replacement for GDK_WINDOW_DESTROYED
1348  - Deprecated GDK_WINDOW_OBJECT and GdkWindowObject
1349
1350 * GSEAL:
1351  - Add gtk_widget_set_receives_default and gtk_widget_get_receives_default
1352    accessors for GTK_RECEIVES_DEFAULT
1353
1354 * GtkTreeView:
1355  - Correctly propagate insensitive state to cell renderers
1356
1357 * GtkTextView:
1358  - Merge a number of scrolling-related fixes from Maemo
1359
1360 * Bugs fixed:
1361  564160 gtk_combo_box_entry_set_text_column too restrictive
1362  593868 gtk_im_multicontext_set_client_window recreate a new slave...
1363  593644 gdk_x11_screen_get_window_manager_name should not cache...
1364  594178 gdk-pixbuf-query-loaders segfault in write_loader_info
1365  567124 proposal to delay doing something related to immodule...
1366  588788 GTK+ compilation should work with automake1.10
1367  584638 Build of gtkupdateiconcache without NLS breaks
1368  593788 misprint in the returning value of gdk_selection_property_get
1369  593606 Missing include in gtk/gtkcellrendereraccel.c
1370  593877 Undefined symbols while compilation
1371
1372 * Translation updates:
1373  French
1374  Hebrew
1375  Hungarian
1376  Norwegian bokmÃ¥l
1377
1378
1379 Overview of Changes from GTK+ 2.17.9 to 2.17.10
1380 ===============================================
1381
1382 * Client-side windows:
1383  - Regression fixes continue
1384  - Multiple clipping issues have been fixed
1385  - gdk_window_beep() works again
1386  - gtk-demo now has a few offscreen window demos
1387
1388 * GSEAL:
1389  - Several more getters and setters have been added:
1390    gtk_widget_is_toplevel(), gtk_widget_is_drawable(), gtk_widget_set_window()
1391
1392 * Bugs fixed:
1393  592752 aisleriot card drag start makes card appear behind...
1394  592901 Crash in JPEG pixbuf loader instead of error
1395  592263 redraw problem in text view
1396  593011 Cannot move applet with middle click
1397  592624 BadAccess from gdk_window_x11_set_events
1398  592606 Activate the default button in a respose-request callback
1399  593249 emacs and acroread don't work properly
1400  592883 Spin cell rendererer problem with double click
1401  588199 GtkTreeView rendering glitch while using a default...
1402  543310 set_enable_tree_lines doesn't work when a cellrenderer...
1403  589636 csw broke DND from panel menus
1404  593595 broken clip handling in GtkLabel
1405  590921 NULL should not be a valid return value for gdk_window_new()
1406  590861 cups_printer_create_cairo_surface() sets a fallback resolution...
1407  544724 delete new line requires two keystrokes
1408  593001 Emit 'update-custom-widget' on page setup change
1409  593317 gtkwindow leaks startup ID
1410  593080 mem leak
1411  593481 GtkEntryCompletion action-activated signal is emitted...
1412  593135 gtk_entry_set_icon_from_pixbuf only works one time
1413  593012 configure doesn't handle --enable-{cups,papi} correctly
1414  592862 There is a misprint on the returning value of gdk_pixmap_lookup()
1415  586466 GtkPrintOperation printing fails if it is the only event source
1416  434318 printer detail acquisition needs events
1417  593712 configure fails to to check properly for cups...
1418
1419 * Translation updates:
1420  Asturian
1421  Basque
1422  Bengali India
1423  Czech
1424  Finnish
1425  Hindi
1426  Kannada
1427  Oriya
1428  Polish
1429  Serbian
1430  Tamil
1431  Telugu
1432
1433
1434 Overview of Changes from GTK+ 2.17.8 to 2.17.9
1435 ==============================================
1436
1437 * Client-side windows:
1438  - Add a compatibility mode that falls back to always using native windows,
1439    triggered by the GDK_NATIVE_WINDOWS environment variable
1440
1441 * Bugs fixed:
1442  589367 gedit crashed with SIGSEGV in IA__g_list_last()
1443  478519 GtkTooltip segfaults on NULL gdk-display-current-tooltip.
1444  592461 preserve errno and use g_strerror
1445  592403 crash when close the second terminal...
1446  591549 Default printer in a network
1447  526149 GtkCellRendererAccel editing conflicts with mnemonics
1448  528283 Problems when using PageUp & PageDown to navigate Playlists pane
1449
1450 * Updated translations:
1451  Bengali
1452  Brazilian Portuguese
1453  Breton
1454  Bulgarian
1455  Catalan
1456  Estonian
1457  Galician
1458  Irish
1459  Korean
1460  Norwegian bokmÃ¥l
1461  Portuguese
1462  Punjabi
1463  Spanish
1464  Swedish
1465  Thai
1466
1467
1468 Overview of Changes from GTK+ 2.17.7 to 2.17.8
1469 ==============================================
1470
1471 * Client-side windows:
1472  - various fixes to expose handling
1473  - fix memory leaks
1474
1475 * Minor API additions:
1476  - New setter as part of the GSEAL effort: gtk_widget_set_allocation
1477
1478 * Bugs fixed:
1479  585211 Add accessor function for GtkWidget->allocation
1480  588437 gtk 2.17.3 causes dragging in firefox bookmarks sidebar t...
1481  589367 gedit crashed with SIGSEGV in IA__g_list_last()
1482  589877 Client side windows leak gdk regions
1483  590959 Set child_has_focus flag properly
1484  591432 There is incomplete information on the returning value of...
1485  591434 firefox-3.5 crashed with SIGSEGV in _gdk_window_process_u...
1486  591526 Accelerator keys with <super> modifier also triggered by ...
1487  591751 bad memory access with duplicated id
1488  591998 Support silent build rules with automake 1.11
1489  592003 Shift+click should always modify selection
1490
1491 * Updated translations:
1492  Brazilian
1493  Bulgarian
1494  Irish
1495  Swedish
1496
1497
1498 Overview of Changes from GTK+ 2.17.6 to 2.17.7
1499 ==============================================
1500
1501 * Client-side windows: a number of regressions related to embedding
1502   have been fixed
1503
1504 * Printing: The file backend supports SVG output
1505
1506 * Minor API additions:
1507  - GtkIconView gained an icon-padding property that can be used to fine-tune
1508    how much space each column needs
1509  - GtkTreeViewColumn grew a sort-column-id property that can be used to set
1510    up sort columns in GtkBuilder files
1511  - GdkWindow gained a cursor property and associated getter
1512  - GtkFileChooser has a create-folders property to allow disabling the
1513    "New Folder" button
1514  - gtk_print_operation_get_n_pages_to_print: returns the number of pages
1515    that are being printed
1516  - New getters and setters as part of the GSEAL effort:
1517    gtk_widget_get_allocation, gtk_widget_get_visible, gtk_widget_set_visible
1518
1519 * Bugs fixed:
1520  589336 Add GtkTreeViewColumn:sort-column-id property
1521  534462 Disable interactive search in the file chooser's shortcuts pane
1522  161489 n the file chooser, let the left/right arrow keys switch focus...
1523  514260 Better filtering for "Recently Used" files
1524  509650 ATK_STATE_SHOWING state is not set properly on menu items
1525  586374 code does not follow documentation (-> carshes when using...
1526  590442 csw broke gvim x11 embedding
1527  498010 gtk_tree_view_set_cursor fails if model!=NULL
1528  555109 Synthesized crossing events should have proper coordinates
1529  570516 Can't disable folder creation
1530  573321 additional check in gtk_tree_model_filter_convert_child_i...
1531  576601 Double clicking prints to the wrong printer
1532  586100 ITEM_PADDING breaks vertical icon views
1533  588438 awn uses 100% cpu with gtk+ 2.17.3 (csw)
1534  589732 behavior change of gdk_window_get_type_hint
1535  589745 Apply message in GtkAssistant
1536  590084 print to FILE with multiple pages per sheet has bad results
1537  590086 configure.in is broken on non-X platforms
1538  590309 Default cover pages for CUPS printers incorrectly set
1539  590448 [win32] build fails because gdk-pixbuf manges a path
1540  590959 Set child_has_focus flag properly
1541  591288 compat problem with draw_drawable being NULL
1542  539377 Unnecessary warnings when GtkTreeView is not realized.
1543  546005 priv->tree is not created for unrealized (I think) treeview
1544  564695 Pressing enter key in print to file "Name" box does not p...
1545  591218 Remove some unused variables
1546  357655 "Print to SVG file" for GtkPrintOperation
1547  591462 gdk_window_set_cursor doesn't work on the root window
1548
1549 * Updated translations:
1550  Basque
1551  Brazilian Portuguese
1552  Breton
1553  Estonian
1554  Galician
1555  Hebrew
1556  Norwegian bokmÃ¥l
1557  Spanish
1558  Swedish
1559
1560
1561 Overview of Changes from GTK+ 2.17.5 to 2.17.6
1562 ==============================================
1563
1564 * Client-side windows:
1565  - Several optimizations, such as client-side tracking of
1566    viewable windows
1567  - Clipping for drawing pixbufs on windows has been fixed
1568  - Rendering to large subwindows has been fixed
1569
1570 * Changes that are relevant for translators:
1571  - Markup has been removed from several strings
1572
1573 * Bugs fixed:
1574  588398 Leak with testgtk::preview_(color|gray) and more
1575  588943 set correct selection before emitting cursor-changed...
1576  588076 Gnumeric fonts stopped working on upgrading gtk+ 2.17.2 -...
1577  574674 GtkMenuItem gets Selected and Focused states when SelectC...
1578  582674 Menu item and menu accessibles retain "showing" state aft...
1579  588553 [csw] gdk_draw_pixbuf doesnt draw outside expose events s...
1580  588897 Strange include x11/gdkx.h
1581  588958 Typo in startup-id window property
1582  589035 Context needed for a propoer translation
1583  589275 [csw] Trying to destroy NULL regions
1584  588964 Remove markup from translatable string in gtkfilechooserd...
1585  587337 Suggest to use Glade instead gtk-builder-convert script
1586
1587 * Updated translations:
1588  Estonian
1589  French
1590  Spanish
1591  Swedish
1592  Thai
1593
1594
1595 Overview of Changes from GTK+ 2.17.4 to 2.17.5
1596 ==============================================
1597
1598 * Client-side windows:
1599  - Quite a few fixes have happened for the win32 and directfb backends
1600
1601 * GSEAL:
1602  - Accessors have been added for sealed members in GtkCellRenderer and
1603    GtkWidget
1604
1605 * Changes that are relevant for distributors:
1606  - The jpeg2000 pixbuf loader is now optional. Pass --with-libjasper
1607    to configure to build it
1608
1609 * Bugs fixed
1610  588373 Menus broken by client-side-windows
1611  588379 testgtk::panes does not change the cursor on mouse over
1612  588388 shape rendering is back
1613  588461 gtk_editable_get_chars() behaviour change in 2.17.4
1614  588666 Incorrect clamping of max_length
1615  588665 insert-text signal is not emitted
1616  588395 Crash when opening a GtkBuilder file
1617  524066 Mandatory jpeg2000?
1618  527583 GtkAssistant should set buttons as default widget
1619  588694 Missing % in C code
1620  588484 Iconview DnD fails when Destination is empty
1621  583522 Trivial error in GtkBuilder migration documentation
1622  150951 collapsed save dialog needs to indicate filesystem...
1623
1624 * Updated translations:
1625  Brazilian Portuguese
1626  Norwegian bokmÃ¥l
1627  Spanish
1628  Traditional Chinese
1629
1630
1631 Overview of Changes from GTK+ 2.17.3 to 2.17.4
1632 ==============================================
1633
1634 * GtkEntry now has model-view separation, with GtkEntryBuffer.
1635   One intended use case for this is to support 'secure memory'
1636   for password entries.
1637
1638 * The print dialog can now optionally include the page setup
1639   controls, avoiding the need for a separate page setup dialog
1640   in many applications.
1641
1642 * Coloring of visited links in GtkLabel can now be turned off, with
1643   the ::track-visited-links property.
1644
1645 * Support for clipmasks in gdk_draw_pixbuf now works, this will
1646   introduce visual changes in code that uses clipmasks when drawing
1647   pixbufs. However, since this never worked that is unlikely to happen.
1648   Old code using gdk_pixbuf_render_threshold_alpha masks when rendering
1649   pixbufs will now produce truncated results at the edges.
1650
1651 * A number of regressions from the client-side window merge have
1652   been fixed.
1653
1654 * The directfb GDK backend has been fixed to build with csw.
1655
1656 * Bugs fixed:
1657  569393 gtk calendar localization YM note is wrong
1658  587559 Popup closes immediately
1659  551409 Print dialog should include page size and orientation
1660  588115 gvim clipboard broken
1661
1662 * Updated translations:
1663  Dutch
1664  Estonian
1665  Spanish
1666  Ukrainian
1667  Vietnamese
1668
1669
1670 Overview of Changes from GTK+ 2.17.2 to 2.17.3
1671 ==============================================
1672
1673 * GtkFileChooser:
1674  - Shows the size column by default now
1675
1676 * GtkStatusIcon:
1677  - Has a title property, which can be used by ATs when they
1678    read status icons
1679
1680 * GtkInfoBar:
1681  - The default theme now includes color definitions for infobars
1682  - The ::use-tooltip-style style property has been removed
1683
1684 * GtkMountOperation now supports interaction during unmount operations.
1685
1686 * The client-side windows branch has been merged; GDK now maintains
1687   its own window hierarchy client-side, and only uses X windows where
1688   unavoidable. Some of the benefits of this change are
1689   - Reduced flicker
1690   - The ability to do transformed and animated rendering of widgets
1691   - Easier embedding of GTK+ widgets e.g. into Clutter scene graphs
1692   This is a fundamental change to the way GDK works, so watch out for
1693   regressions.
1694
1695 * Bugs fixed:
1696  586315 Crash in GTK+ 2.14 when calling gtk.FileChooser.list_shor...
1697  461944 pressing the volume icon in full screen shuts down the sound
1698  490724 iconview item's height would be changed event with same m...
1699  564063 regression: Left margin in popup menus
1700  582025 Accelerators fail for submenus
1701  585626 Setting widget tooltip hammers X11 server on any TCP/IP X...
1702  585802 Add API to make GtkStatusIcon accessible with a name
1703  585858 right-click Add-to-Booksmarks is sometimes greyed out
1704  586330 GtkButton ignores user_underline when an image is set
1705  318807 Offscreen windows and window redirection
1706  587716 GtkInfoBar broken on resize
1707  587485 GMountOperation::show-processes support
1708
1709 * Updated translations
1710  Brazilian Portuguese
1711  Estonian
1712  Hebrew
1713  Spanish
1714  Swedish
1715  Vietnamese
1716
1717
1718 Overview of Changes from GTK+ 2.17.1 to 2.17.2
1719 ==============================================
1720
1721 * GtkInfoBar: A new widget to show a transient 'message area'
1722   inside a content pane. The API is similar to GtkDialog and
1723   supports theming for different message types (warnings,
1724   errors, etc)
1725
1726 * GtkFileChooser:
1727   - Improve path bar by ellipsizing long names and preventing
1728     vertical size changes
1729   - Backup files are now hidden by default
1730   - GTK+ remembers the file chooser sorting state now
1731
1732 * GtkButtonBox: Implements the GtkOrientable interface now.
1733
1734 * Printing:
1735  - GTK+ supports printing an application-defined 'selection' now,
1736    in addition to usual page ranges.
1737
1738 * Changes that are relevant for theme authors:
1739  - The new GtkInfoBar widget uses symbolic colors for theming
1740    its background color depending on the message type. By default,
1741    it uses the same background color as tooltips. This can be turned
1742    off with style property.
1743  - The GTK+ file chooser (as well as nautilus and other users of GIO
1744    icon information) can now show different icons for xdg user dirs.
1745    The icon names are folder-documents, folder-download, folder-music,
1746    folder-pictures, folder-publicshare, folder-templates, folder-videos,
1747    with an automatic fallback to the standard folder icon.
1748
1749 * Bugs fixed:
1750  584021 titchy leak
1751  579590 gtk_entry_set_icon_from_stock should warn when invalid st...
1752  584125 GtkAssistant asserts if last page is GTK_ASSISTANT_PAGE_C...
1753  171416 Resume editing if name of new folder is "Type name of new...
1754  420335 Page assignment when printing 4 pages to a sheet
1755  161670 Bad behaviour from gtk_file_chooser_set_filename
1756  327152 Long names in the FileChooserDialog directory buttons sho...
1757  355851 File Dialog shows Backup Files
1758  390312 Gtk grabs keyboard on DND
1759  486839 Filechooser 'Places' items should not move up and down th...
1760  562335 Deprecate gtk_tree_view_column_get_cell_renderers and gtk...
1761  565317 Resulting image of GtkCellRendererPixbuf depends on order...
1762  565998 configure script doesn't check for cairo-xlib.pc
1763  580079 Better configure detection of Xinerama on Solaris
1764  580511 gdk_x11_atom_to_xatom_for_display translates GDK_NONE as ...
1765  580560 Backspace key does not go to the parent directory
1766  584598 GtkButtonBox silently ignores gtk_orientable_set_orientation
1767  584637 Missing conditionals for X11 shape extension in GdkWindow
1768  584805 GtkEntryCompletion selection reset when calling gtk_entry...
1769  584832 Duplicate the exec string returned by gtk_recent_info_get...
1770  585024 some gtksettings properties need extra initialisation
1771  585371 Add additional sizes to the font selector
1772  585791 use g_*gettext instead of *gettext directly
1773  562579 [Patch] Remove error dialog when directory does not exist
1774  344519 custom print ranges
1775  484922 Should remember the sort state of columns
1776  555344 consider adding a message area widget
1777
1778 * Updated translations:
1779  Danish
1780  Brazilian Portuguese
1781  Estonian
1782  Oriya
1783  Bengali India
1784  Norwegian bokmÃ¥l
1785  Hindi
1786  Spanish
1787
1788
1789 Overview of Changes from GTK+ 2.17.0 to 2.17.1
1790 ==============================================
1791
1792 * GtkLabel:
1793  - GtkLabel can show embedded URLs, much like SexyUrlLabel
1794
1795 * Printing:
1796  - GTK+ includes a print backend that works with the PAPI
1797    printing service.
1798  - The file and lpr backends can print multiple pages per sheet.
1799
1800 * Changes that are relevant for theme authors:
1801  - The URL support in GtkLabel uses the link-color / visited-link-color
1802    style properties
1803
1804 * Bugs fixed:
1805  576091 GtkTooltip destroy the custom widget
1806  315462 GtkButton doesn't center its child when the child is too ...
1807  390331 "Pages per sheet" does not work for LPR printing
1808  531490 gdk_window_set_events (0) will _ADD_ events to the root w...
1809  574386 Remove deprecated call to gtk_status_icon_set_tooltip in ...
1810  576678 cups printbackend doesn't list printers on NetBSD
1811  579366 gtkbuilderparser leaks RequiresInfo objects.
1812  579884 casting problem in gmodule
1813  580511 gdk_x11_atom_to_xatom_for_display translates GDK_NONE as ...
1814  581876 Remove deprecated call to gtk_action_connect_proxy in tes...
1815  581878 Remove deprecated call to gtk_scale_button_get_orientatio...
1816  582003 Calling gdk_window_get_events() changes the event mask, b...
1817  582488 GtkNotebook behaves poorly when allocated less than reque...
1818  582950 Use number of pages to print when showing printing progress
1819  582963 Crash when printing from a thread
1820  583050 unclear disposition of function gtk_combo_box_get_active...
1821  583522 Trivial error in GtkBuilder migration documentation
1822  535557 gdk_window_set_icon_name should accept NULL to unset
1823  549859 "file" printer doesn't support n-up
1824
1825 * Updated translations:
1826  Arabic
1827  British English
1828  Catalan
1829  Czech
1830  Danish
1831  Estonian
1832  French
1833  German
1834  Greek
1835  Hungarian
1836  Irish
1837  Italian
1838  Kannada
1839  Portuguese
1840  Russian
1841  Slovenian
1842  Spanish
1843  Ukrainian
1844  Simplified Chinese
1845
1846
1847 Overview of Changes from GTK+ 2.16.x to 2.17.0
1848 ==============================================
1849
1850 * GtkBuilder:
1851   - Scale marks can now be specified in builder markup
1852   - GtkAssistant action widgets can be added in builder markup
1853
1854 * Changes that are relevant for theme authors
1855  - GtkEntry now has a ::invisible-char style property that allows
1856    themes to set the preferred invisible character
1857
1858 * Printing:
1859  - GTK+ supports authentication of users against CUPS servers now.
1860
1861 * Bugs fixed:
1862  578634 gtkdial example fails to compile
1863  580678 Minor improvement to GTK+ mediaLib code
1864  580511 gdk_x11_atom_to_xatom_for_display translates GDK_NONE...
1865  581110 Handlebox widget uses static variables, crashes in multi...
1866  553385 gtk-builder-convert creates untranslated combobox models
1867  580814 GtkTextLayout incorrectly assumes pango iterates in logi...
1868  579366 gtkbuilderparser leaks RequiresInfo objects
1869  579741 gailcombox should emit property-changed:accessible-name...
1870  574386 Remove deprecated call to gtk_status_icon_set_tooltip...
1871  384940 handle rejecting jobs and authentication meaningfully
1872
1873 * Updated translations
1874  Arabic
1875  Brazilian Portuguese
1876  British English
1877  Catalan
1878  Czech
1879  Estonian
1880  Italian
1881  Kannada
1882  Oriya
1883  Simplified Chinese
1884  Slovenian
1885  Spanish
1886  Ukrainian
1887
1888
1889 Overview of Changes from GTK+ 2.16.0 to 2.16.1
1890 ==============================================
1891
1892 * GtkBuilder:
1893  - Accessible action names can now be marked as translatable.
1894  - gtk-builder-convert correctly handles response ids in all dialogs.
1895  - gtk-builder-convert warns about duplicate ids.
1896
1897 * GDK:
1898  - GDK no longer refuses to work on 30-bit visuals
1899
1900 * Win32:
1901  - The appearance of GTK+ menus on Vista has been improved.
1902
1903 * Bugs fixed:
1904  575700 Crash when moving a GtkWindow
1905  574283 unused assignment and dead code in gtk_widget_set_tooltip_window
1906  538840 [Win32] GTK menu theming could be improved
1907  576254 <object> requires attribute "id"
1908  576306 gdkscreen.c: get_nearest_monitor too simple...
1909  437533 Implement draw_shape PangoRenderer method
1910  577224 crash when setting new icon after setting icon...
1911  576150 Doc bug for GtkMenuPositionFunc
1912  562863 GtkVscrollbar is hardly documented
1913  575644 Cygwin gail build patch
1914  571374 Add 30-bit visuals to the list of supported depths
1915  577650 gtkitemfactory.h fails to compile
1916  578094 ProcessIdToSessionId needs to be declared as WINAPI
1917  518642 Custom tags and translatable content
1918  532858 segv setting GBoxed subclass <property>
1919  557629 Response ID not converted for GtkFileChooserDialog
1920  577789 about dialogue doesn't linkify licence text
1921  577824 empathy_chat_window_init: GClosure is leaked
1922  577964 Page Range entry is not accessible
1923  578221 Assertion warning `GTK_IS_TEXT_LAYOUT (layout)' failed
1924  578271 PageSetup should be sent to the previewer
1925  578276 gtk-builder-convert improperly converts GtkComboBox
1926  578290 two memory leaks
1927  578354 Memory leak in gdkscreen-x11
1928  578365 GtkMountOperation does not allow passwordless mount of sf...
1929  578366 file descriptor leak
1930  573922 Using NET_WM_USER_TIME even if startup notification times...
1931  561345 Title of Print Preview window should not be previewXXXXXX...
1932  577868 about dialogue changes appearance on style-set (change th...
1933  572797 GtkCellRendererAccel display string i18n in OTHER mode
1934
1935 * Updated translations:
1936  Arabic
1937  Assamese
1938  Basque
1939  Bulgarian
1940  Crimean Tatar
1941  Danish
1942  Galician
1943  German
1944  Greek
1945  Gujarati
1946  Japanese
1947  Kannada
1948  Malayalam
1949  Marathi
1950  Oriya
1951  Pashto
1952  Russian
1953  Spanish
1954  Telugu
1955  Turkish
1956
1957 Overview of Changes from GTK+ 2.15.5 to 2.16.0
1958 ==============================================
1959
1960 * The new function gtk_style_get_property was renamed to
1961   gtk_style_get_style_property to avoid binding problems.
1962
1963 * Bugs fixed:
1964  574059 search button not available in some cases
1965  574622 GtkEntry: Should we wrap icon-press and icon-release signals?
1966  574561 gtk_style_get "shadows" g_object_get
1967  574794 Can not resize shaped windows on Windows
1968  570896 gdkevents-win32.c(2947) : error C4053: one void operand for '?:'
1969  573067 Intra-app dnd of text behavior on Windows is wrong
1970  572455 GtkEntry window layed out wrong if the widget has focus
1971
1972 * Updated translations:
1973  Assamese (as)
1974  Bengali (bn_IN)
1975  Czech (cs)
1976  Gujarati (gu)
1977  Hindi (hi)
1978  Japanese (ja)
1979  Kannada (kn)
1980  Lithuanian (lt)
1981  Malayalam (ml)
1982  Polish (pl)
1983  Romanian (ro)
1984  Tamil (ta)
1985  Telugu (te)
1986
1987
1988 Overview of Changes from GTK+ 2.15.4 to 2.15.5
1989 ==============================================
1990
1991 * GtkAction:
1992  - Rename gtk_activatable_reset to gtk_activatable_sync_action_properties
1993    to make it easier to bind
1994
1995 * GDK:
1996  - The DirectFB backend has been restored to basic function
1997  - The RANDR support in the X11 backend has been made more robust
1998
1999 * Changes that are relevant for theme authors:
2000  - GtkEntry now has a ::progress-border property and use fg/bg[SELECTED]
2001    for drawing progress
2002
2003 * Bugs fixed:
2004  457086 numpad does not work when the Thai-Lao input method is used
2005  554407 directfb backend does not implement GdkWindowImpl
2006  543710 Dead keys do not work anymore with DirectFB
2007  560671 the client_message API doesn't work in DirectFB
2008  513422 Unknown meaning of translatable messages
2009  533456 Memory leak when window is destroyed
2010  572387 gdm crashes after gtk 2.15.4 upgrade
2011  565199 Ellipsize text in Places list
2012  495320 GtkRange does not use gdk_event_request_motions
2013  572904 GtkRadioAction broken in trunk
2014  573383 Setting a textview's buffer to NULL doesn't do a complete job
2015  573416 GtkMountOperation fixes for ask_password()
2016  572968 GtkIconView: image_description setter function strdups wrong...
2017  572972 GtkRecentChooserDefault: memory leak in copy_activated_cb
2018  572996 crash in Home Folder: Trying to open the sidebar
2019  573069 Gdk-CRITICAL warnings with Gtk 2.14 when dragging GtkNotebook...
2020  573113 Can't build tests due to testfilechooserbutton.c
2021  573211 Setting screen for popup windows
2022  573287 Warning on startup
2023  572273 No replacement documented for gtk_action_connect_proxy
2024  573515 po-properties/ special Makefile.in.in handling causes failure...
2025  552619 File Chooser no longer automatically enters newly created dir...
2026  573087 gdkwindow.c: {x,y}_offset used uninitialized
2027  573688 Don't steal update region in gtk_text_view_paint
2028  546285 Allow GtkEntry to draw progress
2029  569671 gdk_pixbuf_new_from_file() can't open image/x-portable-pixmap
2030  573393 Deprecated functions in gdk-Threads example code snippet
2031  571001 STATE_SHOWING missing on table items
2032  520395 event.any_data incorrect with spin buttons and combo boxes...
2033  325809 getAccessibleAtPoint for tables does not seem to take column...
2034  561631 gailbutton.c:571:idle_do_action: code should not be reached
2035  519090 Add accessibility support to GtkScaleButton
2036
2037 * Updated translations:
2038  British English (en_GB)
2039  Estonian (et)
2040  Hungarian (hu)
2041  Japanese (ja)
2042  Korean (ko)
2043  Kurdish (ku)
2044  Maithili (mai)
2045  Dutch (nl)
2046  Oriya (or)
2047  Swedish (sv)
2048  Traditional Chinese (zh_HK)
2049  Traditional Chinese (zh_TW)
2050
2051
2052 Overview of Changes from GTK+ 2.15.3 to 2.15.4
2053 ==============================================
2054
2055 * GtkAction:
2056  - More compatibility fixes to make PolicyKit-gnome work
2057
2058 * GtkFileChooserButton:
2059  - Don't emit file-set when the dialog is canceled. But emit it
2060    when a file is received via DND
2061
2062 * GDK
2063  - Use Xrandr 1.3 for tracking monitor information, if available
2064
2065 * Bugs fixed: 
2066  538439 tooltip may appear in upper left corner...
2067  571015 libprintbackend-cups has unlocalized strings
2068  353196 Add a file-set signal to GtkFileChooserButton
2069  571249 Icons are not drawn properly when initial widget...
2070  571196 gtk_binding_entry_add_signall deprecated without alternative
2071  508545 No way to identify terminal classes from documentation
2072  570824 TreeView is not keyboard (re)focusable after selecting a cell...
2073  568571 Asian am/pm format on cups print backend's time parsing
2074  571576 gdk_pixbuf_save_to_stream() broken
2075  571873 Compile error with gdk/win32/gdkselection-win32.c
2076  572041 Focus should change when advancing forward in GtkAssistant
2077  572040 GtkAssistant does not expose page titles
2078  570406 gailutil.def is in srcdir, but used from builddir
2079
2080 * Updated translations:
2081  Belarusian Latin (be@latin)
2082  Bulgarian (bg)
2083  Catalan (ca)
2084  Danish (da)
2085  Spanish (es)
2086  Basque (eu)
2087  Finnish (fi)
2088  French (fr)
2089  Gujarati (gu)
2090  Hungarian (hu)
2091  Japanese (ja)
2092  Korean (ko)
2093  Latvian (lv)
2094  Norwegian bokmÃ¥l (nb)
2095  Polish (pl)
2096  Brazilian Portugese (pt_BR)
2097  Slovak (sk)
2098  Albanian (sq)
2099  Serbian (sr)
2100  Swedish (sv)
2101  Thai (th)
2102  Vietnamese (vi)
2103
2104
2105 Overview of Changes from GTK+ 2.15.2 to 2.15.3
2106 ==============================================
2107
2108 * Keyboard shortcut handling has been changed, to help with a longstanding
2109   complaint about the way GTK+ handles multiple layouts. GTK+ now only uses
2110   keys from groups other than the current group if they are not present in
2111   the current group. Feedback on this change is appreciated.
2112
2113 * Bugs fixed:
2114  569336 change in gtkbutton klass is causing crash...
2115  569435 make maintainer-clean removes non-generated sources
2116  145058 Inputting "^^" requires four keystrokes on Win32...
2117  559408 Transparency lost when images are copied...
2118  359288 Toolbar items are not shown after hiding
2119  569918 64bit portability issue in gtkrecentchooser.c
2120  162726 Multiple Latin layouts in XKB break keyboard shortcuts
2121  569635 fontchooser should reload list of families/styles on...
2122
2123 * Updated translations:
2124  Norwegian bokmÃ¥l (nb)
2125  Oriya (or)
2126  Brazilian Portugese (pt_BR)
2127  Thai (th)
2128  Traditional Chinese (zh_HK)
2129  Traditional Chinese (zh_TW)
2130  
2131
2132 Overview of Changes from GTK+ 2.15.1 to 2.15.2
2133 ==============================================
2134
2135 * GtkAction:
2136  - Make toolitems pick up icon names from actions
2137  - Draw proxies of radio actions properly
2138  - Make menu proxies of recent actions work
2139  - Avoid accidental activations when changing actions on proxies
2140  - Make derived button classes work as proxies
2141
2142 * Input methods:
2143  - Avoid an assertion due to early use of input methods
2144
2145 * GtkScale:
2146  - Avoid a segfault in the marker drawing code
2147
2148 * GtkImageMenuItem:
2149  - Add a property to override the show-menu-images setting
2150
2151 * Bugs fixed:
2152  566628 gdk_display_close always asserts on win32 and quartz
2153  569240 Crasher when using markers
2154  569104 Toggle menu entries showed as check menu entries...
2155  322932 Always show icons on panel menus
2156
2157 * Updated translations:
2158  Finnish (fi)
2159  German (de)
2160
2161
2162 Overview of Changes from GTK+ 2.15.0 to 2.15.1
2163 ==============================================
2164
2165 * GtkFileChooser:
2166  - Remember the file chooser's size across invocations
2167  - Handle uris that are entered in the entry
2168  - Improve autocompletion, in particular for uris
2169
2170 * GtkEntry:
2171  - New property "im-module" for selecting input methods per-widget
2172  - New icon-related API got renamed for consistency
2173  - Added properties and setters for icon tooltips
2174
2175 * GtkTextView:
2176  - New property "im-module" for selecting input methods per-widget
2177  - New signal "paste-done" to allow better handling of async pasting
2178
2179 * GtkScale:
2180  - New api to add annotated marks: gtk_scale_add_mark.
2181
2182 * GtkAction:
2183  - Rework the way actions and proxies interact, to make the
2184    interaction less ad hoc, more extensible, and better suited
2185    for support in GUI builders like glade.
2186
2187    To be used as a proxy, a widget must now implement the
2188 `  GtkActivatable interface, and GtkActivatable implementations
2189    are responsible for syncing their appearance with the action
2190    and for activating the action.
2191
2192    All the widgets that are commonly used as proxies implement
2193    GtkActivatable now.
2194
2195    This is a big change, and it is not unlikely to break some
2196    current users of GtkAction, so feedback about problems caused
2197    by this is appreciated.
2198
2199  - Add a "gicon" property to specify the icon with a GIcon
2200
2201 * GDK:
2202  - On X11, GDK now caches cursors to avoid cursor theming overhead
2203  - New cursor type for blank cursors: GDK_BLANK_CURSOR
2204
2205 * New deprecations:
2206    gtk_scale_Button_get_orientation()
2207    gtk_scale_button_set_orientation()
2208    gtk_action_connect_proxy()
2209    gtk_action_disconnect_proxy()
2210    gtk_widget_get_action()
2211    gtk_action_block_activate_from()
2212    gtk_action_unblock_activate_from()
2213    direct access to "gtk-action" object data
2214
2215 * Changes that are relevant for translators:
2216  - Navigation and Media stock labels have separate message contexts now
2217  - The caps lock warning string has been changed
2218
2219 * Bugs fixed:
2220  566083 Icon pixmap hardcoded during DnD
2221  566334 compile failure for gtk+ on Mac OS X
2222  565998 configure script doesn't check for cairo-xlib.pc
2223  566391 gtk_about_dialog_set_url_hook should activate...
2224  566568 gtk_tree_model_get_value docs typo
2225  566628 gdk_display_close always asserts on win32
2226  566733 Add GIcon to GtkAction, GtkToolButton
2227  567024 gtktoolbutton doesn't create right proxy menu item...
2228  523554 Copy from GIMP to Word broke
2229  567468 no check for trailing != NULL in gtk_text_layout_get..
2230  492794 Pasting external text at end of view yields wrong...
2231  164002 query scripts don't work uninstalled on windows
2232  566532 GtkScaleButton implementation of GtkOrientable
2233  450716 New API to change global IM
2234  562701 GtkEntryCompletion popup sizes its rows wrong...
2235  567944 [Win32] Sorted treeview columns can be unreadable
2236  567655 gtk_status_icon_set_tooltip_text/markup should use...
2237  567887 gtk_entry_get_storage_type() should be...
2238  568196 Please change context of Forward stock label
2239  563280 stock items & translation context
2240  568233 Wrong statement about GtkEntry's "activate" signal
2241  568263 gtk can't recognize the wrong X Selection TARGETS...
2242  565656 Add marks to scales
2243  567413 GtkComboBoxEntry doesn't emit "changed" signal...
2244  545980 GtkFileChooserEntry should handle URIs
2245  566862 pixbuf_new_from_file does not autodetect format
2246  568552 gtk_combo + gtk entry in invisible mode takes 100% cpu
2247  561801 "scheduled printing" doesn't function as expected
2248  566535 gtk_widget_get_snapshot does not work if double buff...
2249  567021 gtkimage accessors docs
2250  567761 Spellfixes in GTK+ documentation
2251  568744 Spellfixes in GtkTreeView's documentation
2252  536965 GtkPlug: crash on theme change
2253  567124 proposal to delay doing something related to immodule...
2254  568305 gdk-pixbuf mishandles BI_BITFIELDS bmps
2255
2256 * New and updated translations:
2257  Crimean Tatar (crh)
2258  Spanish (es)
2259  Hebrew (he)
2260  Hungarian (hu)
2261  Italian (it)
2262  Korean (ko)
2263  Lithuanian (lt)
2264  Norwegian bokmÃ¥l (nb)
2265  Norwegian Nynorsk (nn)
2266  Swedish (sv)
2267  Thai (th)
2268  Simplified Chinese (zh_CN)
2269
2270
2271 Overview of Changes from GTK+ 2.14.x to 2.15.0
2272 ==============================================
2273
2274 * GtkFileChooser
2275  - Optionally shows file sizes
2276  - Mounts volumes when necessary
2277  - Picks better mime icons
2278
2279 * GtkEntry
2280  - Can show icons at either side of the entry, which can be made
2281    clickable, drag sources, etc
2282  - Can show progress information
2283  - Picks the best available placeholder character for invisible entries 
2284    unless it is explicitly set. See the invisible-char-set property
2285  - Input methods work again in invisible entries
2286  - Invisible entries can optionally display a caps-lock warning. This
2287    can be turned off with the caps-lock-warning property
2288
2289 * GtkStatusIcon
2290  - Uses an extension of the tray icon spec to negotiate RGBA support.
2291    This is also supported by the GNOME panel. For details, see the
2292    section on "Visual and bckground pixmap handling" in the System
2293    Tray Protocol Specification.
2294  - Supports scroll events, middle clicks and rich tooltips
2295
2296 * GtkLinkButton
2297  - Respects user-defined tooltips 
2298  - Has a default url hook
2299
2300 * GtkBuilder
2301  - Can construct menus
2302  - Can associate accel groups with windows
2303  - Child properties can now be translatable, e.g. GtkAssistant::page-title
2304
2305 * GtkOrientable
2306  - A new interface implemented by all widgets that have horizontal and
2307    vertical variants
2308
2309 * Printing support
2310  - Print-to-file can save to non-local files
2311  - Page rendering can be deferred to a thread to avoid blocking the mainloop
2312
2313 * GDK
2314  - GdkKeymap emits a state-changed signal when the caps lock state changes
2315
2316 * Newly deprecated functions:
2317   gdk_window_get_toplevels(),
2318   gtk_font_selection_dialog_get_apply_button(),
2319   gtk_status_icon_set_tooltip(),
2320   gtk_toolbar_set_orientation()
2321
2322 * Changes that are relevant for theme authors
2323  - The GtkMenu::arrow-placement style property allow more space efficient
2324    layout of scrolling menus
2325  - Submenu arrows can be scaled relative to the font size, with the
2326    GtkMenuItem::arrow-scaling style property
2327  - Themes can set the GtkDialog::content-area-spacing style property to 
2328    change the spacing between elements of the content area
2329  - The GtkEntry::state-hint style property can be used to request that
2330    GTK+ should pass the correct state when drawing the background of entries
2331  - The GtkEntry::prelight style property can be used to suppress prelighting
2332    of icons in entries on mouseover
2333  
2334 * Changes that are relevant for translators
2335  - GTK+ has been switched to use the two-argument C_() macro
2336    instead of Q_() for messages with context
2337
2338 * Bugs fixed:
2339  434987 MS Windows style should use pango_win32_font_description_from_logfont
2340  325095 show a 'size' column
2341  552837 mem leak in gtkimmulticontext
2342   83935 GtkEntry's default invisible char should be U+25CF
2343  553000 incorrect i18n header in gtkfilesystem.c
2344  552789 Show size column in the search and recently used files modes
2345  553135 eog crash: assertion failed. 
2346  382544 GtkIconView: Selection/focus should be painted around the items
2347  541391 Unfocussable Treeview swallows focus
2348  408244 add GtkDialog::content-area-spacing
2349  538782 Make GtkMenu's arrow size themable
2350  553385 gtk-builder-convert creates untranslated combobox models
2351  553241 double freed pointer in lpr_write cause firefox3 crash
2352  553917 Typo in gdkwindow-win32.c
2353  553133 GtkFileChooser won't ask to mount a volume
2354  553211 GtkFileChooserButton unsets filter after first use
2355  553578 tabs are not drawn correctly
2356  553803 eventually call XCloseDevice on XOpenDevice results
2357  552956 Should check composite extension version
2358  552959 GtkTrayIcon: _NET_SYSTEM_TRAY_VISUAL and real transparency
2359  553575 Only draw focus when navigating with the keyboard
2360  339367 Incorrect spotlocation
2361  554141 uninitialized data use/free in gtkclipboard-quartz.c
2362  371908 Password Entry broken
2363  317002 Disable input method completely in GtkEntry when it...
2364  487624 Tooltips doesn't get updated if ther's no mouse motion...
2365  107000 Add signals to GdkKeymap for monitoring caps_lock, etc
2366  530568 Entries with visibility=FALSE should warn for caps-lock on
2367  553086 hard to see current immodule
2368  541009 Get rid of separate subclasses for horizontal and vertical...
2369  344522 support non-local destination files (GtkPrint)
2370  553582 Add orientation API to GtkSeparator
2371  554506 combining diacritics broken, became deadkeys
2372  553585 Add orientation API to GtkRuler
2373  554690 mem leak in filechooser
2374  554691 mem leak in filechooser
2375  554696 invalid free function used
2376  554698 mem leak in filechooser
2377  554701 filechooser spams console with useless warnings
2378  554704 gtkfilesystemmodel does too much work
2379  530575 GtkEntry with invisible chars has a confused cursor in overwrite mode
2380   96431 Can't cut and paste / DND within invisible entry
2381  132501 Make utility window translate to tool window in win32
2382  539464 gtk_cell_view_get_model is missing in GtkCellView
2383  553573 Add orientation API to GtkBox
2384  555387 Changing the sensitivity of a statusbar mistakenly requires a display
2385  436533 Allow more space efficient scroll arrows placement
2386  555270 Allow unsetting a MessageDialog's image
2387  554702 gtkfilesystem leaks GError
2388  554192 double press on the "circumflex" dead key...
2389  516425 Optionally display accelerators in popups
2390  550342 Splash screens have a caption
2391  555578 GtkTable propertiy maxima are wrong
2392  555523 gtk_scale_button_set_adjustment should accept NULL
2393  555573 gtk_font_selection_set_font_name shouldn't require a screen
2394  555676 gtk_widget_real_grab_focus assumes toplevel == window
2395  555000 Wrong treatment on non-spacing marks dead keys in GtkIMContextSimple
2396  551355 Make glib build with libtool 2.2
2397  555186 Setting gtk-toolbar-icon-size with custom icon_size
2398  555625 Updated gtk_compose_seqs_compact table
2399  555386 format not a string literal and no format arguments
2400  552318 menubar mnemonics consumed even when gtk-enable-mnemonics=false
2401  555779 GtkCellRendererPixbuf crashed on failed GIcon lookup
2402  556150 gtk 'object' property test fixing
2403  556527 The current page property is not passed to GtkPrintUnixDialog
2404  556578 GIMP windows stay on top of other windows
2405  557059 crash when compositing emblems with icon
2406  557266 Window Management Problem
2407  555920 gtkentry.c passes wrong enum to pango_layout_set_alignment
2408  528320 Incorrect icons displayed for files with custom mimetype icons
2409  557524 "va_end(args);" should be added into gtk_text_buffer_insert_with_...
2410  556835 gtkentry.c: variable is declared at middle of block
2411  556954 gtk+/gtk/gtkrecentchooserdefault.c: mismatching allocation...
2412  557315 stale clipboard target cache
2413  530454 Clarify page_nr when printing
2414  557065 gtkcellrendererpixbuf spams console over and over...
2415  557894 Wrong return value for gdk_pointer_grab_info_libgtk_only
2416  558397 gtk_widget_error_bell undefined without a screen
2417  557762 Misleading error message in GDK DirectFB
2418  557316 GtkLinkButton should consider user-defined tooltip
2419  339714 Set printer dpi on cairo ps/pdf surfaces when printing
2420  558522 scroll arrow painted insensitive even though there are pages...
2421  347230 testicontheme shortcomings
2422  558323 glitches when popping up combos in treeviews
2423  558667 gtk_font_selection_dialog_get_apply_button - deprecate
2424  412134 Add API to query style properties from the style
2425  322934 Replace menu's proxy icons with empty space hiding icons
2426  409435 GtkStatusIcon enhancements: scroll events, middle click, rich tooltips
2427  558278 Crash when calling a callback set by gdk_add_client_message_filter()
2428  558929 gtkstatusicon.c: 'event' is a member of the structure
2429  558001 gtk_icon_view_enable_model_drag_[source|dest] problem
2430  557212 Problem with which window gains focus and is visible
2431  559404 gtk_editable_insert_text counts length in bytes
2432  558586 handling of keyboard under darwin (quartz)
2433  558409 GtkLabel::use-underline doesnt work with GtkLabel::attributes
2434  553586 Add orientation API to GtkPaned
2435  560135 Print when the user double clicks a printer
2436  553765 Add orientation API to GtkRange
2437  550942 Rework of gdkeventloop-quartz.c
2438  525550 GTK+ 2.13.0 GtkCurve test fails
2439  559619 invisible-char default cannot be tested
2440  560139 GtkEntry doesn't paint with the right state
2441  560602 Wrong GtkMenuItem default value (test fails)
2442  377699 realizing gtk.Progress() causes SEGV
2443  561335 Fix typos in GtkToolItem documentation
2444  561539 Alignments miscalculate dimensions when allocated less...
2445  559947 Unchecked dependency on python>=2.4
2446  561504 testgtk should load rc file from sub folder
2447  539263 Deprecate gdk_window_get_toplevels
2448  554076 eventually release g_new-ed supported_atoms
2449  559622 GdkDevice test segfaults
2450  554453 "typeahead find" widget of GtkTreeView appears on wrong monitor...
2451  562817 GtkDialog: typo
2452  555334 connected server feature
2453  562878 password save incorrectly set in gtkmountoperation
2454  559914 eog doesn't apply paper setup
2455  562998 GtkFontButton documentation improvements
2456  557420 Some compose sequences don't work anymore (or only in specific order)
2457  546285 Allow GtkEntry to draw progress
2458  563547 Update gdkx11 atom precache table
2459  563285 test print backend does not compile
2460  559325 documentation for gdk_display_get_window_at_pointer() is wrong
2461  554274 Add default hook for GtkLinkButton
2462  546378 GtkAssistant page title is not translatable
2463  563991 gtk_file_chooser_button_new_with_backend is deprecated...
2464  563994 Input method module interface not documented
2465  564066 Crash in gtk_rc_parse_default_files
2466  563835 Typo in gtk_widget_has_screen() docs
2467  564212 gtk_icon_view_accessible_model_rows_reordered explain new_order...
2468  563751 xatom cache is prefilled too late
2469  556839 Crash when opening a link
2470  549251 GTK icon view accessible issue
2471  558306 Cannot build gdk (gtk+ 2.14.4) on Solaris 8
2472  555560 gtk_combo_box_set_active fails with no model
2473  563158 CellRendererProgress pulsing and progressing rows can not...
2474  556233 local-only causes G_IS_FILE warning
2475  562579 Remove error dialog when directory does not exist
2476  561494 FileChooser network browsing and authentication support
2477  339318 Allow page rendering to (optionally) happen in a thread
2478   85292 add an icon to gtkentry
2479  564881 gtkstatusicon.c: 'event' bug again
2480  552545 leaks GpImage
2481  553374 gdk_pixdata_from_pixbuf fails for some images with use_rle set to TRUE
2482  555791 Natuilus Crashes when opening USB MP3 Player Contents
2483  561186 GdkPixbuf API type checking needs cleanup
2484  559009 gtk_radio_button_get_group documentation needs to say...
2485  523264 Update GTK+ reference documentation screenshots
2486  563876 [Regression] GTK_MODULES env var is no longer relevant
2487  554950 gail must make itself resident
2488  555953 libferret missing link against libgtk-x11
2489  554002 Orca App-Preferences dialog page tabs are "off" by one...
2490  353088 gtk_expander_get_label should return the full label text
2491  512743 Applications with lists crash in libgail
2492  564555 synaptic cannot be started...
2493  565203 icons are misplaced when horizontal gtkiconview is...
2494  549251 GTK icon view accessible issue 
2495  558694 Paned window splitter keynav broken
2496  565846 va_end(args) should be added into gtk_tree_store_new
2497
2498 * New and updated translations:
2499  Arabic (ar)
2500  Asturian (ast)
2501  Catalan (ca)
2502  Danish (da)
2503  German (de)
2504  British English (en_GB)
2505  Spanish (es)
2506  Finnish (fi)
2507  Galician (gl)
2508  Hebrew (he)
2509  Japanese (ja)
2510  Georgian (ka)
2511  Malayalam (ml)
2512  Marathi (mr)
2513  Portugese (pt)
2514  Brazilian Portugese (pt_BR)
2515  Romanian (ro)
2516  Russian (ru)
2517  Slovak (sk)
2518  Serbian (sr, sr@latin)
2519  Swedish (sv)
2520  Thai (th)
2521
2522
2523 Overview of Changes from GTK+ 2.14.1 to 2.14.2
2524 ==============================================
2525
2526 * Don't use XRRGetScreenResources, since it doesn't work well
2527
2528 * Bugs fixed:
2529  551063 deprecated marking without a link to what new code should use
2530  319849 gtkcalendar look in RTL locales
2531  550989 gdk_display_put_event should call g_main_context_wakeup
2532  550062 Small update in gdk/gdkkeysyms.h
2533  551325 Reference to wrong parameter in gtk_editable_insert_text
2534  551386 gtk_printer_set_is_default() always sets TRUE
2535  550676 Memory leak, update keyboard layout data structure
2536  551699 gtk_scrolled_window_destroy() is broken
2537  551567 DND mark broken
2538  551378 Print dialog: should try UDS when fetching PPD for localhost
2539  536542 gtk_list_store_set() documentation doesn't say whether...
2540  552153 GtkModules loading with XSettings doesn't work...
2541  552001 gtkimcontextsimple.c: variable is declared at middle...
2542  551987 GtkPaned redrawing problem
2543  551722 gtk_widget_set_scroll_adjustments() should check...
2544  552107 Small libtool fixes
2545  552500 GtkPrintSettings API doc not precise enough
2546  408154 Change GtkEntryCompletion max-items to style property
2547  329593 Entering characters on a line very cpu intensive and slow
2548  552667 gtkimage containing gicon leaks memory
2549  552668 format not a string literal and no format arguments...
2550  346903 gtk_enumerate_printers needs events to complete
2551  550969 fix a typo which breaks the static build
2552  517233 Calling gdk_pixbuf_loader_close causes "GError set over...
2553  551063 deprecated marking without a link to what new code should use
2554  540967 docs build slowly because of entities
2555
2556 * Updated translations:
2557  Afrikaans (af)
2558  Arabic (ar)
2559  Assamese (as)
2560  Bulgarian (bg)
2561  Bengali India (bn_IN)
2562  Catalan (ca)
2563  Finnish (fi)
2564  French (fr)
2565  Gujarati (gu)
2566  Croatian (hr)
2567  Italian (it)
2568  Lithuanian (lt)
2569  Malayalam (ml)
2570  Marathi (mr)
2571  Dutch (nl)
2572  Oriya (or)
2573  Brazilian Portugese (pt_BR)
2574  Portugese (pt)
2575  Telugu (te)
2576  Thai (th)
2577  Turkish (tr)
2578
2579
2580 Overview of Changes from GTK+ 2.14.0 to 2.14.1
2581 ==============================================
2582
2583 * Fix a deadlock in pixbuf loader initialization
2584
2585 * Updated translations:
2586  Ukrainian (uk)
2587
2588
2589 Overview of Changes from GTK+ 2.13.7 to 2.14.0
2590 ==============================================
2591
2592 * Bugs fixed:
2593  548354 Remove repeated code in gtk_cell_view_size_allocate
2594  548346 gtk_color_selection_dialog_get_color_selection always...
2595  535158 can't rearrange the order of multi pages per side
2596  545875 evo crashed when trying to print pages 6-7 of a 1 page...
2597  549236 missing Since 2.14 in gtk_file_chooser_get_file
2598  549354 Crash trying to open a file on a remote folder
2599  549734 gtk_selection_data_get_data prototype is wrong
2600  549262 GtkScrolledWindow should not accept focus unless...
2601  549810 Memory leaks in printing code 
2602  437791 Animation is played at the wrong speed
2603  549943 gtk_tool_shell_get_relief_style() always returns...
2604  547449 Entry/Combo popup misplaced after resize
2605  550528 IconView DND interface does not work if only used as source
2606  548993 regression: gdk 2.13 leaves stray windows in certain cases
2607  520165 typeahead find (interactive search) only accepts one char...
2608  528091 Arrows for scrollable notebooks don't work with unset GTK...
2609  528975 Can not maximize the window
2610  543308 FileChooser size problems since gtk+-2.13.x 
2611  549322 Typo in gdk_pixbuf_save_to_buffer docs
2612  549711 Race condition when loading gdk-pixbuf image modules
2613
2614 * Updated translations:
2615  Czech (cs)
2616  German (de)
2617  Spanish (es)
2618  Estonian (et)
2619  British English (en_GB)
2620  Finnish (fi)
2621  French (fr)
2622  Irish (ga)
2623  Galician (gl)
2624  Japanese (ja)
2625  Hebrew (he)
2626  Hungarian (hu)
2627  Korean (ko)
2628  Maithili (mai)
2629  Norwegian bokmÃ¥l (nb)
2630  Polish (pl)
2631  Pashto (ps)
2632  Brazilian Portugese (pt_BR)
2633  Albanian (sq)
2634  Swedish (sw)
2635  Telugu (te)
2636  Thai (th)
2637  Vietnamese (vi)
2638
2639
2640 Overview of Changes from GTK+ 2.13.6 to 2.13.7
2641 ==============================================
2642
2643 * Bugs fixed:
2644  545031 list of recently used files is created world-readable
2645  535573 Deadlock in gdkeventloop-quartz.c:poll_func()
2646  546771 Add writable property "visited" to GtkLinkButton
2647  546756 gnome-panel crashed with SIGSEGV in g_type_check_...
2648  547027 menus are broken
2649  544863 gtkquartz.h not included in released 2.13.5 package
2650  547211 Duplicated mnemonic
2651  547270 Make GtkHSV public
2652  546616 CUPS print backend uses 1.2 API without guards
2653  546754 2.13.6 update create rendering issue in the evo...
2654  546730 gtk_status_icon_get_gicon() should use a return...
2655  526234 make shift+ctrl+del delete till the end of line
2656  547456 gdk/x11/gdkscreen-x11.c : init_solaris_xinerama doesn't...
2657  547516 Add comments for translators in gtkprintbackendcups.c
2658  547673 Accessors for GtkFileSelection.font_entry and...
2659  547775 Documentation of gtk-button-images is not correct
2660  547846 gtktestutils functions lack Since: tags
2661  547655 gio_can_sniff configure test can fail...
2662  547944 Self-reference in gtk_page_setup_load_file's docs
2663  547680 fontconfig monitoring can crash apps
2664  546549 Better Type Checking
2665  532644 TIFF loader need to exclude CR2 files
2666
2667 * Updated translations:
2668  Arabic (ar)
2669  Spanish (es)
2670  Basque (eu)
2671  Finnish (fi)
2672  Galicican (gl)
2673  Japanese (ja)
2674  Kannada (kn)
2675  Marathi (mr)
2676  Norwegian bokmÃ¥l (nb)
2677  Portugese (pt)
2678  Brazilian Portugese (pt_BR)
2679  Swedish (sv)
2680  Thai (th)
2681
2682
2683 Overview of Changes from GTK+ 2.13.5 to 2.13.6
2684 ==============================================
2685
2686 * Fix problems on 64-bit Windows
2687
2688 * Fix a long-standing, well-known problem with the handling
2689   of insensitive buttons, bug 56070
2690
2691 * Fallback to Xinerama if the Xrandr implementation
2692   is just a stub
2693
2694 * gdk_threads_add_timeout_seconds[_full]: New functions with
2695   second-granularity to complete the set of gdk_threads_ timeout
2696   functions
2697
2698 * Support rendering icons with emblems specified as GEmblemedIcon
2699
2700 * GtkFileChooser has a GFile-oriented API now, functions
2701   for creating filechoosers with specific backends have been
2702   deprecated, since GIO is used directly.
2703  
2704 * GtkAdjustment has been sealed, adding getters and setters
2705   for all struct fields.
2706
2707 * Bugs fixed:
2708  544265 GDK assumes XFIXES extension
2709  543915 "Sole completion" translation issue
2710  544510 SetTimer callback signatures has the wrong type
2711  544390 evince crashes after clicking print
2712  361561 StatusIcon signals not documented as definitely public API.
2713  368234 Incorrect tabs rendering during reorder with rounded themes
2714  545976 Deprecate gtk_file_chooser_*_with_backend
2715  545978 Make filechooser GFile API public 
2716  544863 gtkquartz.h not included in released 2.13.5 package
2717  424207 printing hangs on unreachable cups server
2718   56070 Can't click button after setting it sensitive
2719  545931 small documentation typos
2720  344383 use po/LINGUAS
2721   65818 rename gtk_window_set_default() and add getter for it
2722  539733 No way to control treeview separator height
2723  523950 GtkTreeModelFilter's visible function may get an empty...
2724  526575 Missing return type in gtk_ui_manager_get_toplevels...
2725  429411 add style properties to set minimum progressbar w...
2726  429427 Add "arrow-spacing" style property to GtkRange
2727  544302 GtkStatusIcon should support GIcon
2728  339699 implement gtk_print_operation_set_show_dialog for...
2729  538686 gtkprintoperation-win32.c: devmode_from_settings
2730  540379 gtk_tree_view_enable_model_drag_dest and ...
2731  544684 Win64 issue, window handles are assumed to be 32-bit
2732  540834 Insensitive widgets cannot be grabbed
2733  515596 GtkUIManager's embedded UI definition example is invalid
2734  534979 GtkImageMenuItem is a bin but has two children
2735  382291 Automatically dim the combobox when the model is empty
2736  545982 missing braces cause bogus warnings when using GtkBuilder
2737  544858 Seal GtkAdjustment
2738
2739 * Updated translations:
2740  Spanish (es)
2741  Galician (gl)
2742  Japanese (ja)
2743  Korean (ko)
2744  Norwegian bokmÃ¥l (nb)
2745  Portugese (pt)
2746  Brasilian Portugese (pt_BR)
2747  Albanian (sq)
2748  Swedish (sv)
2749
2750
2751 Overview of Changes from GTK+ 2.13.4 to 2.13.5
2752 ==============================================
2753
2754 * gdk-pixbuf:
2755  - Use GIO for mime type sniffing when possible
2756
2757 * Printing:
2758  - Handle paused printers and printers that don't accept jobs
2759
2760 * GtkBuilder:
2761  - Support building parts of the XML tree with the new functions
2762    gtk_builder_add_objects_from_file, gtk_builder_add_objects_from_string
2763
2764 * Bugs fixed:
2765  540917 deprecate pack_start_defaults()
2766  541645 gtkfilechooserdefault segfaults when bookmark does not contain ://
2767  493008 gdk_screen_get_window_stack is not 64-bit-compatible
2768  539248 gtk_calender_query_tooltip calls ->detail_func with invalid dates
2769  327582 Incomplete docs for GtkSettings::gtk-icon-sizes
2770  343663 source-buffer highlighting highlights "char" in gtk_text_iter_...
2771  541811 g_return_if_fail (widget->parent == container)
2772  541540 Dead link to pkg-config site in GTK+ online FAQ
2773  513580 Broken link in GTK+ FAQ
2774  531129 gtk_style_copy() does not include a return value or description
2775  510225 gtk_widget_get_composite_name retval should be freed
2776  507953 gtk_tree_view_set_tooltip_column() shows markups
2777  469068 clarify gdk_cairo_create()
2778  528845 segv from GtkBuilder on attempting <accelerator> under GtkCellView
2779  540994 [Win32] Some windows don't appear at the top when created
2780  541964 [Win32] Setting modal hint to current value might confuse the stack
2781  541950 Removing recently-added accelerator UI causes a wrong g_warning
2782  542234 iconview a11y implementation segfaults
2783  541399 Widget tooltips: treat "" same as NULL
2784  334418 Support easy input of ellipsis
2785  321896 Synch gdkkeysyms.h/gtkimcontextsimple.c with X.org 6.9/7.0
2786  316087 Resizing columns is chaotic
2787  542853 jasper test fails due to incomplete library arguments
2788  507394 mem leak from gtk_selection_add_targets
2789  488766 GtkFileChooserButton doesn't clear icon after gtk_file_chooser_...
2790  479780 Bookmarks in left pane of FileChooser cannot be renamed
2791  542523 GtkTextTag should handle setting properties to NULL
2792  384940 handle rejecting jobs and authentication meaningfully
2793  339591 Detect list of availible cover pages
2794  543244 crashes when renaming a bookmark
2795  447998 GtkBuilder does not support building parts of the xml tree
2796  543217 GTK application crashed with directfb backend
2797  543545 GtkAssistant crashes when gtk_widget_hide() is called inside ...
2798  401985 Documentation improvement for the gdk_pixbuf_new_from_file_at_...
2799  543085 gdk_pixbuf_saturate_and_pixelate may corrupt memory
2800  488019 Mention bind_textdomain_codeset in gettext related FAQ
2801  528822 typo in GtkCombo docs
2802  540967 docs build slowly because of entities
2803  537430 label pango attributes & i18n
2804  543989 Crash in gtk_tree_view_size_allocate_columns
2805  535223 gbookmark file inefficiency ...
2806
2807 * Updated translations:
2808  Assamese (as)
2809  Czech (cs)
2810  German (de)
2811  Spanish (es)
2812  Galician (gl)
2813  Hebrew (he)
2814  Polish (pl)
2815  Pashto (ps)
2816  Traditional Chinese (zh_HK)
2817  Traditional Chinese (zh_TW)
2818
2819
2820 Overview of Changes from GTK+ 2.13.3 to 2.13.4
2821 ==============================================
2822
2823 * Merge the GSEAL branch (see http://live.gnome.org/GTK+/3.0/Tasks)
2824
2825 * GtkScaleButton has an orientation property 
2826
2827 * Bugs fixed:
2828  538519 GtkCellRendererPixbuf doesn't allow unsetting the icon anymore
2829  538362 Get Win32 icons back in the file chooser
2830  538182 pango_cairo_context_update_layout is not noop after...
2831  508751 gnome-terminal crashed with SIGSEGV after keypress
2832  419737 The file chooser clears the filename entry in SAVE/CREATE_FOLDER...
2833  538784 Don't change the filename in the name entry in CREATE_FOLDER...
2834  538395 gtk_combo_box_append_text() on non-compliant model segfaults
2835  539363 Segfault when creating GtkPlugs
2836  539466 GtkMenuShell API/ABI break in trunk
2837  442042 GtkScaleButton is too limited
2838  540318 Invalid URL
2839  530255 GtkAboutDialog cuts off comments label
2840  540310 Avoid unnecessary repaints when resizing GtkWindow
2841  434535 printoperation's create_surface doesn't check temp file...
2842  539790 [PATCH] Please add three new settings to GtkSettings
2843  539164 Windows' System Menu blocks main loop
2844  541162 [Win32] Update for the new GdkWindowImpl stuff
2845  455268 Add gtk-enable-tooltips GtkSetting
2846  537591 Don't hardcode minimum width of menuitems
2847  541249 [Win32] Fix some internal static methods
2848  541305 [Win32] Scrolling was broken after GdkWindow refactoring
2849  540529 Remove all GIMP references
2850  538547 Update doc-shooter in gtk documentation
2851  535498 Printing demo broken
2852  539944 Add GtkScaleButton API so struct fields can be marked...
2853  540915 GtkBuilder sets properties in reverse order
2854  538863 Fixes assertion on entering empty folder
2855  540861 invalid UTF-8 in input device name
2856  540612 mem leak in filechooser
2857  540618 gtk_menu_shell_select_first prints warning on GtkMenubar...
2858  539944 Add GtkScaleButton API so struct fields can be marked...
2859  536966 Paper selector crashes
2860  378158 gdk_win32_selection_add_targets uses uninitialized hwnd v...
2861  516092 use gtk_drag_*_add_*_targets instead of hardcoded target ...
2862  536430 Libs and Cflags paths in gail-uninstalled.pc.in are out o...
2863  538378 GtkFileSystemError should be public
2864  539095 directfb functions need to be renamed due to the offscree...
2865  539470 Fix critical warnings when the GIcon can't be found for a...
2866  539732 Warnings on destruction of GtkDialog.
2867  540235 Getting the current folder fails
2868  537639 complete the gtk_clipboard_request/wait_for/is_available_... 
2869
2870 * Updated translations:
2871  Catalan (ca)
2872  Spanish (es)
2873  Estonian (et)
2874  Hungarian (hu)
2875  Korean (ko)
2876  Norwegian bokmÃ¥l (nb)
2877  Occitan (oc)
2878  Swedish (sv)
2879  Thai (th)
2880
2881  
2882 Overview of Changes from GTK+ 2.13.2 to 2.13.3
2883 ==============================================
2884
2885  * Support runtime font configuration changes
2886  
2887  * Use GIO for mime information
2888
2889  * Use GIO directly for the file chooser, do not load filesystem
2890    implementation modules. This change causes some regressions on Win32, 
2891    which will be addressed by improved Win32 support in GIO.
2892
2893  * GTK+ no longer uses translations when the application is not
2894    translated to the current locale
2895  
2896  * Bugs fixed: 
2897  520874 Should use gio directly
2898  536185 monitor font configuration
2899  536757 openoffice.org menus are placed at wrong position
2900  536990 updateiconcache.c: 'close ()' is redundant 
2901  535608 do not string-copy accel paths in the menu code
2902  488119 critical warnings from gtk_tree_view_get_visible_range
2903  536730 memory corruption in gtktreeview
2904  131920 gtkNotebook sends incorrect switch_page value
2905  526987 GtkCellRendererCombo should allow model to be NULL
2906  536765 GtkComboBox should set COMBO type hint for its menu
2907  503071 Application direction changes to right to left even if...
2908  517706 Connecting GtkButton with "use-stock" == FALSE to a...
2909  519092 Add accessibility support to GtkVolumeButton
2910  524222 GtkToolbar with mix of buttons with and without icons...
2911  537985 gtk_init_with_args() doesn't open a display after...
2912  531960 crash in eog-image.c:1154: (priv->image != NULL)
2913  408154 Change GtkEntryCompletion max-items to style property...
2914  506853 gtk_tree_view_enable_model_drag_[source|dest] problem
2915  536430 Libs and Cflags paths in gail-uninstalled.pc.in are out o...
2916  537685 print to file crashes when the target can not be written 
2917
2918 * Updated translations:
2919  Arabic (ar)
2920  Czech (cs)
2921  Estonian (et)
2922  Hebrew (he)
2923  Norwegian bokmÃ¥l (nb)
2924  Thai (th)
2925
2926
2927 Overview of Changes from GTK+ 2.13.1 to 2.13.2
2928 ==============================================
2929
2930  * Fix an oversight in the header cleanup that went into 2.13.1, which
2931    removed gtkmarshal.h from the set of headers pulled in by gtk.h
2932  
2933  * Add a function to retrieve the XID of a status icon, to allow
2934    notification bubbles to follow the icon
2935  
2936  * Bugs fixed:
2937  533108 leak of GDI region in function 'handle_wm_paint'
2938  530146 Setting non-string tooltip with gtk_tree_view_set_tooltip_column...
2939  535830 wrong content type adding an item
2940  536126 gtk.h don't include gtkmarshal.h
2941  535497 Print preview doesn't work
2942  535862 gtk_action_create_icon can't create icons from the icon themes
2943  536092 GtkEntryCompletion's popup window should set type hint
2944  535303 add _get_implementation to GtkStatusIcon
2945
2946  * Updated translations:
2947  Estonian (et)
2948  Galician (gl)
2949  Italian (it)
2950  Vietnamese (vi)
2951
2952
2953 Overview of Changes from GTK+ 2.13.0 to 2.13.1
2954 ==============================================
2955
2956  * Add GtkMountOperation, a subclass of GMountOperation that
2957    can show password dialogs when mounting volumes
2958
2959  * Add GDI+-based pixbuf loaders for bmp, emf, gif, ico, jpeg, tiff, wmf
2960
2961  * Add support for pixmap redirection, new api includes the 
2962    gtk_widget_get_snapshot() function and the GtkWidget::damage-event 
2963    signal and the lower-level gdk_window_redirect_to_drawable() and
2964    gdk_window_remove_redirection() functions
2965
2966  * Add gtk_show_uri(), a replacement for gnome_vfs_url_show() and
2967    gnome_url_show()
2968
2969  * Add a "changed" signal to GtkCellRendererCombo
2970  
2971  * Sync keysyms and compose sequences with recent X.org 
2972
2973  * GtkBuilder
2974    - supports custom stock icons 
2975    - supports Pango attributes in labels
2976  
2977  * GtkRecentManager
2978    - uses GIO to monitor .recently-used.xbel
2979    - limits the growth of .recently-used.xbel with a 
2980      gtk-recent-files-max-age setting
2981
2982  * Filechooser autocompletion has been reworked
2983
2984  * The cups print backend displays printer status information
2985  
2986  * On OS X, accelerators are displayed using Unicode characters,
2987    matching the native behaviour
2988
2989  * GtkIconTheme and GtkImage support GIcon
2990
2991  * Bugs fixed: too many to list here
2992  
2993  * New and updated translations:
2994  Arabic (ar)
2995  Valencian-Catalan (ca)
2996  German (de)
2997  Canadian English (en_CA)
2998  British English (en_GB)
2999  Spanish (es)
3000  Estonian (et)
3001  Galician (gl)
3002  Hebrew (he)
3003  Hungarian (hu)
3004  Kannada (kn)
3005  Norwegian bokmÃ¥l (nb)
3006  Dutch (nl)
3007  Norwegian Nynorsk (nn)
3008  Occitan (oc)
3009  Slovak (sk)
3010  Albanian (sq)
3011  Swedish (sv)
3012  Telugu (te)
3013  Vietnamese (vi)
3014
3015
3016 Overview of Changes from GTK+ 2.12.x to 2.13.0
3017 ==============================================
3018
3019  * gdk-pixbuf:
3020   - Support loading the OS X icns format
3021   - Support loading of JPEG2000 images
3022   - Support loading from and saving to GIO streams
3023
3024  * GDK:
3025   - Add GdkAppLaunchContext, to provide startup notification
3026     with g_app_info_launch()
3027   - Use RandR 1.2 instead of Xinerama when available, and expose
3028     more monitor information
3029
3030  * Accessibility:
3031   - The gail module is now shipped as part of GTK+
3032   - GtkStatusIcon supports keyboard navigation 
3033
3034  * GtkCalendar:
3035   - Support displaying details for each day
3036
3037  * GtkBuilder:
3038   - gtk-builder-convert has been improved
3039   - Translation-domain works properly
3040   - Support accessibility
3041
3042  * Testing support:
3043   - Add utilities for testing GTK+ applications
3044   - Add some unit tests for GTK+ 
3045
3046  * New settings:
3047   - for disabling display of accelerators and mnemonics
3048   - for position of vertical scrollbars in scrolled windows
3049   - for the default input method 
3050
3051  * GtkToolShell: new interface for containers of GtkToolItems
3052
3053  * Bug fixes:
3054  - too many to list here
3055
3056  * Updated translations:
3057   Arabic (ar)
3058   Assamese (as)
3059   Belarusian (be)
3060   Belarusian Latin (be@latin)
3061   Czech (cs)
3062   German (de)
3063   Greek (el)
3064   Estonian (et)
3065   Finnish (fi)
3066   French (fr)
3067   Irish (ga)
3068   Hebrew (he)
3069   Indonesian (id)
3070   Kurdish (ku)
3071   Marathi (mr)
3072   Norwegian bokmÃ¥l (nb)
3073   Occitan (oc)
3074   Brazilian Portugese (pt_BR)
3075   Slovenian (sl)
3076   Swedish (sv)
3077   Telugu (te)
3078   Russian (ru)
3079
3080
3081 Overview of Changes from GTK+ 2.12.0 to 2.12.1
3082 ==============================================
3083
3084  * Bugs fixed: 
3085  472965 a small improvement for scrolling behavior with PgUp/PgDown
3086  460194 Gtk tooltips + swt crash
3087  478803 Segfault in gtk_print_operation_run when no range specified
3088  480123 Crash from GTK's new search feature
3089  483223 im-xim.so leaves callbacks connected to display "closed" ...
3090  476342 Icon cache validation causes severe page-in
3091  484008 configure fails during CUPS version tests on some platforms
3092  327243 GtkFileChooserButton emits two "selection-changed" signal...
3093  465380 gtkfilechooser cannot show the modified date on none UTF-...
3094  467269 Inkscape Flickers horribly
3095  476686 gtkrecentchooser select-multiple property
3096  478173 GTK's Tracker search engine does not work anymore
3097  478371 totem volume slider appears on all workspaces
3098  482089 GtkPrintOperation check for null default signal handler b...
3099  482504 Missing locale to UTF-8 conversion for modification time ...
3100  482841 critical warnings on gdk_display_close after _gtk_tooltip...
3101  483563 remains of gtk_widget_ref() in gtkdnd.c
3102  483730 Keyboard navigation of mutiple-selecting gtk.TreeViews im...
3103  484650 Typo in docs for GdkGrabBroken
3104  484730 In MS-Windows theme, GtkBorder freed with g_free() instea...
3105  486360 Failed to convert Empathy Glade files
3106  389358 print dialog: unit selection dialog can't be closed
3107  448343 File chooser should maintain sort state during folder swi...
3108  477447 GtkPaned documentation doesn't mention behaviour with onl...
3109  482034 GtkMenuPositionFunc push_in parameter description
3110  482837 duplicate declaration of gtk_notebook_create_window()
3111  478637 Notebook tab labels not correctly centered in ms-windows ...
3112  484132 gtk_recent_info_get_icon docs
3113  486636 "Cannot open display" message doesn't include display whe...
3114  455284 Ctrl+L should work depending if it has focus or not
3115  478377 10x speed up for window motion/scroll (gdk-quartz)
3116  485301 Filename is garbled in print dialog on none UTF-8
3117  485437 Fix testxinerama.c to not query current monitor by default
3118  486155 Docs for gtk_text_iter_forward_line()
3119  339877 pixbuf loader incorrectly returns wbmp
3120  456137 Pidgin will crash in fail-safe session due to a NULL poin...
3121  456676 Critical warning in gtk_drag_drop_finished()
3122  352643 crash in gtk_entry_completion_default_completion_func
3123  477280 volume button docs fix
3124  477704 Add docs for GtkTreeModelForeachFunc
3125  476920 Move GtkFileSelection to the deprecated section
3126
3127  * Updated translations:
3128  - Arabic (ar)
3129  - Assamese (as)
3130  - Belarusian Latin (be@latin)
3131  - Catalan (ca)
3132  - Estonian (et)
3133  - Basque (eu)
3134  - Hebrew (he)
3135  - Ido (io)
3136  - Italian (it)
3137  - Japanese (ja)
3138  - Georgian (ka)
3139  - Kannada (kn)
3140  - Korean (ko)
3141  - Lithuanian (lt)
3142  - Dutch (nl)
3143  - Polish (pl)
3144  - Romanian (ro)
3145  - Slovenian (sl)
3146
3147
3148 Overview of Changes from GTK+ 2.11.6 to 2.12.0
3149 ==============================================
3150
3151  * GtkTooltips
3152  - All widgets have been ported to the new tooltips code
3153  - Tooltips are disabled in touchscreen mode 
3154
3155  * GtkBuilder
3156  - Support custom tabs in GtkPrintUnixDialog
3157
3158  * Bugs fixed:
3159  459561 critical warnings with custom tooltips
3160  461648 GdkWindowQueueItem::serial overflow
3161  463773 Openoffice and flash run into a deadlock when used with KDE
3162  468801 thunar segfaults when selecting targa image
3163  473441 [patch] Ungrab windows when gdk_window_destroy() is calle...
3164  473954 gnome-background-properties: crash on drag-n-drop to "Add...
3165  461945 totem outputs errors in terminal
3166  348493 _gdk_quartz_copy_to_image needs implementing for pixmaps
3167  405868 Missing implementation of gdk_window_get_geometry()
3168  441219 Do not allow moving cursor to separators
3169  447214 rename the tips_data_list field back
3170  451202 New tooltips API has too long default timeout
3171  451397 Use new tooltip API in gtk+
3172  452225 check and option mark drawing is a mess of inconsistency
3173  457642 tooltips on notebook's tab labels
3174  458088 Improve mouse cursor for paned widgets
3175  458102 GtkScrolledWindow doesn't redraw when gtk-scrolled-window...
3176  458280 remove set-toolip handler from menutoolbutton
3177  458298 broken cursor movement with inline selection
3178  459459 Missing implementation of gdk_window_set_decorations() an...
3179  459515 gtk_menu_key_press() buglets
3180  459566 update testtooltips
3181  459667 Missing implementation of gdk_window_set_keep_above and g...
3182  460272 GtkFrame publishes incorrect defaults for "label-xalign"
3183  460534 No expose events if input swamps main loop with scrolled ...
3184  461225 gtk_tree_view_set_tooltip_cell() documentation: cell
3185  463907 'Recent Documents' is broken in gnome-panel 2.19.5
3186  464528 gdk_rectangle_union() and gdk_rectangle_intersect() shoul...
3187  465039 "keynav-failed" signal not emitted when treeview has just...
3188  467003 tooltips do not pick up theme changes
3189  467117 Documentation for the GtkPaned key binding signals
3190  467414 gtkcupsutil.c won't build with cups 1.3
3191  468055 Incorrect compose mapping for capital U with macron
3192  468245 Tooltip timer doesn't get reset when mouse leaves into ot...
3193  469214 Recently used blocks side-panel browsing until loaded
3194  469374 menu accelerators don't work
3195  469395 make dist failure
3196  471132 Highlighting a suggestion with the keyboard changes the U...
3197  471215 Cursor drawing broken
3198  472974 gtk-builder-convert doesn't set correctly the tab label f...
3199  472981 make gtk-builder-convert not remove some empty properties
3200  356630 Print to file dialog suggests "output.pdf" even for ps ou...
3201  447883 PATCH Documentation about SVN in HACKING and README.cvs-c...
3202  459340 GtkContainer API documentation refers deprecated gtk_widg...
3203  459732 build system: cups detection with only cups-config might ...
3204  460207 there are still references to deprecated gdk_pixbuf_rende...
3205  461483 Wrong check in gtk_window_group_remove_window
3206  472643 gtk_builder_add_from_file: *filename marked as constant b...
3207  474696 ToolbarContent should use GSlice
3208  459313 A few functions that don't appear in 2.12 new symbols
3209  468832 crash while reading ANI file
3210  470033 MS-Windows Theme doesn't apply styling to gtknotebooks wh...
3211  473340 gtk_print_operation_get_error() is listed twice
3212  473463 GtkButton doesn't have a GdkWindow like the docs say it does
3213  474282 Dead code in gtkmisc.c
3214  472951 gtkprintunixdialog should support custom tabs as buildable
3215  383003 Dragging text including non-ascii chars from epiphany to ...
3216  449371 Open with menu has no effect
3217  404541 GtkIconView crashes when I select icons with rubberband w...
3218  467324 Iter swapping causes segmentation fault
3219  475158 Random crash while scrolling trough notebook tabs
3220  450032 GtkRecentAction should have defaults
3221  458283 wrong tooltip on menutoolbutton
3222  467717 Extra trailing comma after last enum definition
3223  467719 config.h should always be included first if using AC_SYS_...
3224  474897 rendering problem with latest gtk+
3225  475400 Fix a typo in gtkentry.c
3226  436576 GtkFileChooserButton title from supplied dialog
3227  475439 gtk/gtksearchenginesimple.h is missing a G_BEGIN_DECLS
3228  105895 Please add common keybindings for the TreeView
3229  306445 stock icon for the "open recent" menu
3230  449371 Open with menu has no effect
3231  426246 "Spurious" expose events during asynchronous GtkWindow re...
3232  436576 GtkFileChooserButton title from supplied dialog
3233  474897 rendering problem with latest gtk+
3234  475400 Fix a typo in gtkentry.c
3235  476688 scale button uses wrong value type in getter
3236  476665 gtkcellrendereraccel missing property getter
3237  476689 gtktreeview tooltip column property getter uses wrong val...
3238
3239  * Updated translations
3240  - Bulgarian (bg)
3241  - Bengali (bn_IN)
3242  - Danish (da)
3243  - German (de)
3244  - Canadian English (en_CA)
3245  - Spanish (es)
3246  - Estonian (et)
3247  - Basque (eu)
3248  - Finnish (fi)
3249  - French (fr)
3250  - Irish (ga)
3251  - Gujarati (gu)
3252  - Hungarian (hu)
3253  - Italian (it)
3254  - Japanese (jp)
3255  - Kannada (kn)
3256  - Macedonian (mk)
3257  - Malayalam (ml)
3258  - Norwegian bokmÃ¥l (nb)
3259  - Dutch (nl)
3260  - Oriya (or)
3261  - Polish (pl)
3262  - Portugese (pt)
3263  - Brazilian Portugese (pt_BR)
3264  - Russian (ru)
3265  - Albanian (sq)
3266  - Serbian (sr, sr@Latn)
3267  - Swedish (sv)
3268  - Telugu (te)
3269  - Thai (th)
3270  - Ukrainian (uk)
3271  - Vietnamese (vi) 
3272
3273
3274 Overview of Changes from GTK+ 2.11.5 to 2.11.6
3275 ==============================================
3276
3277  * GtkBuilder:
3278  - The gtk-builder-convert script is more versatile
3279  - GtkBuilder suppports GdkPixbuf properties
3280  - GtkBuilder parses, but doesn't yet implement <accessibility> 
3281  - Support for accelerators in actions has been added
3282
3283 * GtkTooltips:
3284  - The old tooltips API has been deprecated
3285  - The has-tooltip property has getter and setter
3286
3287 * GtkTreeView: 
3288  - Convenience API to set tooltips: gtk_tree_view_set_tooltip_row(),
3289    gtk_tree_view_set_tooltip_cell(), gtk_tree_view_get_tooltip_context(),
3290    gtk_tree_view_set_tooltip_column()
3291
3292 * GtkIconView:
3293  - Convenience API to set tooltips: gtk_icon_view_set_tooltip_item(),
3294    gtk_icon_view_set_tooltip_cell(), gtk_icon_view_get_tooltip_context(),
3295    gtk_icon_view_set_tooltip_column()
3296
3297 * Bug fixes:
3298  452598 crash in Evolution: Added an Evolution attac...
3299  447966 Add builder support for GdkPixbuf properties
3300  453033 gnome-panel crashed with SIGSEGV in idle_populate_func()
3301  453365 gdk_pixbuf_get_file_info crashes on tif files
3302  361781 GtkViewport size request includes xthickness/ythickness f...
3303  427899 GtkFrame's label may exceed the frame area
3304  430049 gtk_selection_data_set_text() ignores length argument
3305  436965 Add files to /po[-properties]/POTFILES.in
3306  437281 gtk_button_set_image destroyes the old image
3307  448604 gtk+ printbackends build fix
3308  449311 GtkVolumeButton should use new tooltip API
3309  451164 I translate gnome-desktop. But i have no svn account and ...
3310  451575 (API) Changes needed for GtkTooltips deprecation
3311  452425 Setting "tooltip-text" property to NULL has bad effects
3312  452861 gtk_label_set_pattern() is not working anymore
3313  452988 error handling in GtkCellLayout custom parser
3314  453411 Button state not included in key events
3315  453413 Key event state is not right for modifier keys
3316  454654 Accelerator support for actions
3317  454700 Minor update for gdk_threads_enter
3318  454703 gdk_window_invalidate_rect accepts NULL
3319  454830 gtk-builder-convert not converting menus
3320  452056 GtkComboBox doesn't emit 'changed' signal when active row...
3321  452278 GtkBuilder API Documentation
3322  453316 small documentation fix in GtkDrawingArea API documentation
3323  453673 small doc quirk in gtk/gtktreeview.c
3324  453930 small doc quirk in gtk/gtktooltip.c
3325  454596 [patch] gdkpixbuf-scale slight api doc improvement
3326  454835 [patch] example in gdk-pixbuf-scaling using deprecated gd...
3327  457384 critical warning from entrycompletion
3328  112404 Problem with focus when closing transient window
3329  172424 Most GtkWidget events have no documentation
3330  408327 Improving tooltip positioning
3331  439480 translations
3332  439715 GtkFileChooser - recent files option takes up 100% CPU.
3333  455482 remove old tooltips work-around from uimanager
3334  455721 mem leak when adding shortcut
3335  455901 mem leak in path bar
3336  455984 need a way to convert to bin_window coordinates
3337  457720 assertion `G_IS_VALUE (value)' failed progmatically "tabb...
3338  458298 broken cursor movement with inline selection
3339  456258 GtkScaleButton: value parameter of signal "value-changed"...
3340  457774 GtkTreeView::test_expand_row and test_collapse_row
3341  455645 intern action names 
3342
3343 * Updated translations:
3344  Bengali (bn_IN)
3345  Greek (el)
3346  Spanish (es)
3347  Estonian (et)
3348  Finnish (fi)
3349  Galician (gl)
3350  Gujarati (gu)
3351  Hungarian (hu)
3352  Japanese (ja)
3353  Lithuanian (lt)
3354  Norwegian bokmÃ¥l (nb)
3355  Dutch (nl)
3356  Swedish (sv) 
3357  Thai (th)
3358  Vietnamese (vi)
3359  
3360
3361 Overview of Changes from GTK+ 2.11.4 to 2.11.5
3362 ==============================================
3363
3364 * OS X port:
3365  - Many improvements
3366
3367 * Win32 port:
3368  - Inconsistent checkboxes are drawn correctly now
3369
3370 * GtkBuilder:
3371  - Ship a Python script, gtk-builder-convert, to 
3372    convert glade files to GtkBuilder syntax
3373
3374 * GtkFileChooser:
3375  - Improved display of the time column
3376  - Support search on OS X, using Spotlight
3377
3378 * GtkTreeView:
3379  - New function gtk_tree_view_is_rubber_banding_active() to
3380    check whether rubber banding is active
3381
3382 * GtkVolumeButton uses the range 0.0 to 1.0, and
3383   correctly adapts tooltips to display percentages
3384
3385 * Bugs fixed:
3386  447967 Improve reference counting
3387  447995 Add a script that converts libglade files
3388  451428 GtkBuilder API changes
3389  449862 gdk_x11_display_get_xdisplay doesn't check pointers befor...
3390  451303 Crashes on empty property
3391  164809 Checkboxes with inconsistent status are not drawn properl...
3392  426987 Panel freezes after upgrading gtk icon cache
3393  439567 Add functions to transform pixbufs based on orientation tags
3394  448313 Block cursor problem on one-character line
3395  449016 Prevent C++ keyword clashes
3396  449167 faulty enter-leave compression
3397  450469 Draw no bevel when "GtkToolbar::shadow-type" is "none"
3398  451070 Broken CUPS SSL printing in gtk 2.10.13
3399  451345 gtk-demo does not open GtkBuilder example twice
3400  451353 Parsing properties broken
3401  451484 Miscalculation in GtkButtonBox CENTER_MODE
3402  451866 GtkVolumeButton range
3403  452046 some fixes for gdk composited window support
3404  452463 type-func attribute on wrong element ?
3405  452464 inconsistent handling of booleans
3406  452465 error handling in gtk_builder_value_from_string_type()
3407  452954 GtkBuilder documentation fixes/improvements
3408  446532 [patch] Improve performance of gtk_recent_manager_get_items
3409  451314 Warning message is wrong for delayed property assigning
3410  392283 GtkNotebook tabs drawn incorrectly with the Wimp theme
3411  449492 debug spew on toolbar focus move
3412  324543 GtkFileChooser: show file 'modified' TIMES, not just DATES
3413  327912 Many mouse cursors are not supported
3414  353805 Detecting Bidi Keyboard Layouts
3415  451527 Confusing GtkRadioButton variable names in some functions
3416  393579 Need tree view API for querying whether rubberbanding is ...
3417
3418 * Updated translations
3419  Spanish (es)
3420  Estonian (et)
3421  Hungarian (hu)
3422  Japanese (ja)
3423  Korean (ko)
3424  Norwegian bokmÃ¥l (nb)
3425  Russian (ru)
3426  Sinhala (si)
3427  Vietnamese (vi)
3428
3429
3430 Overview of Changes from GTK+ 2.11.3 to 2.11.4
3431 ==============================================
3432
3433 * The multipress input method correctly handles control keys
3434
3435 * The memory management of GtkRecentManager has been
3436   changed, deprecating the screen-related functions in favour
3437   of gtk_recent_manager_get_default().
3438
3439 * Bugs fixed: 
3440  448928 Some GtkBuildable methods named too generically
3441  448193 gtkbuilder.h causes compile error with C++
3442  354887 GtkFileChooserButton displays unnecessary authentication ...
3443  440450 GTK font selection minimum size is too large for 150dpi s...
3444  447214 gtk_tooltips_widget_remove() is slow
3445  448299 dgettext arguments interchanged
3446  448321 Drawing problems with block cursor
3447  448341 There is no GtkTooltip documentation in the gtk+ reference
3448  448484 GtkAccelGroup forgets to remove closure invalidate notifi...
3449  448544 Refcount issues in GtkCellRendererSpin
3450  412357 GtkMenuShell not defined as an abstract base type
3451  403717 print preview operation should pass settings to preview p...
3452
3453
3454 Overview of Changes from GTK+ 2.11.2 to 2.11.3
3455 ==============================================
3456
3457 * GtkBuilder: GTK+ supports constructing user interfaces 
3458   from XML descriptions now, similar to libglade.
3459
3460 * The new tooltip code now has convenience api to set
3461   text tooltips: gtk_widget_set_tooltip_text(),
3462   gtk_widget_set_tooltip_markup()
3463  
3464 * GtkTextView, GtkEntry:
3465  - gtk_widget_modify_cursor() is a new function in the 
3466    gtk_widget_modify family to override the style-provided 
3467    cursor colors
3468  - Use a block cursor in overwrite mode
3469
3470 * GtkFileChooser:
3471  - Use xdg-user-dirs to find the Desktop directory
3472  - gtk_file_system_create() is now public API
3473
3474 * GtkMenu:
3475  - GtkMenuItem gained a submenu property
3476  - GtkMenuShell obtained a move-selected signal 
3477
3478 * OS X port:
3479  - Many improvements
3480
3481 * Bugs fixed:
3482  445691 Crash when spawning a new process
3483  447163 Implicit pointer conversion gdk_font_ref()
3484  420249 deadlock on print operation
3485  440918 out-of-bound access on loading pnm
3486  142494 treeview coordinate systems need documentation/auditing
3487  343012 RC parser rejects lower-case identifiers.
3488  350460 Popup windows (esp. menus) misbehave wrt focus
3489  410815 Icon view gets confused when scaling down the pixbuf column
3490  435471 small GtkComboBox cleanup
3491  435840 GTK_WIDGET_SAVED_STATE inconsistency
3492  442617 gdk_spawn overrides envp, breaking child setup funcs whic...
3493  443913 When .recently-used.xbel is empty, recently-used uses %10...
3494  444097 Cannot compile gtksearchenginesimple.c
3495  444310 update_buttons_state on a bare assistant causes gtk+ to c...
3496  444734 Compact file-chooser folder selection not working with gt...
3497  444786 Error loading 'gtk-select-color' in Stock icons and Items
3498  445054 GtkScrolledWindow::scrollbars-within-bevel is drawing wrong
3499  445284 Custom (pixbuf etc.) cursor reverts to default cursor on ...
3500  445539 Unititialized var in gtkrc.c trunk
3501  445855 gtk_scale_button_new() uses private API.
3502  446138 Tiny doc update for gdk_window_get_pointer()
3503  446513 gtknotebook.h: create_window is wrong declaration
3504  446616 glib requirement insufficient
3505  447065 GtkMenuItem: add "submenu" property and some cleanup
3506  426192 Symbolic colors are not working under "engine" sections o...
3507  446107 tiff load dialogue has unreadable text
3508  447396 Typo in documentation of gtk_widget_modify_cursor
3509  79585  API to change cursor color
3510  80378  Visible (Cursor-shape) indicator for Overtype mode
3511  158008 Stock button for Dont Save, Discard Changes, Do Not Save
3512  334576 GtkCellRendererProgress ignores xalign attribute
3513  344836 Add orientation property to CellRendererProgress
3514  172535 Add support for UI builders in gtk+
3515  446833 gtk_menu_shell_move_selected should be a vcall
3516  447586 gtknotebook.c: decreasing unknown size pointer
3517
3518 * Updated translations
3519  Spanish (es)
3520  Swedish (sv)
3521
3522
3523 Overview of Changes from GTK+ 2.11.1 to 2.11.2
3524 ==============================================
3525
3526 * The GtkListStore and GtkTreeStore have new API
3527   to set values using vectors of columns and values
3528
3529 * Bugs fixed:
3530  389603 GtkFileChooserWidget crashes when the window is too narrow
3531  444351 metacity cores on startup
3532  379213 gtkaboutdialog.h causes warnings with GCC and -Wshadow
3533  442888 problem with GTK+ medialib integration
3534  444236 gtk-demo says invisible text doesn't work
3535  444457 Segfault in gdk_window_set_opacity when opacity < 1.0
3536  399071 add gtk_tree_store_set_with_valuesv
3537  434021 crash on startup with jhbuild
3538
3539 * Updated translations:
3540  Spanish (es)
3541
3542
3543 Overview of Changes from GTK+ 2.11.0 to 2.11.1
3544 ==============================================
3545
3546 * GtkTextView:
3547  - Marks can be created independent from buffers
3548  - Cursor color follows text color
3549
3550 * OS X port:
3551  - Many improvements
3552
3553 * GDK:
3554  - Add support for composited child windows
3555
3556 * Bugs fixed:
3557  347883 do-overwrite-confirmation does nothing in 2.10
3558  440890 Crash in gtktooltip.c (GTK+ 2.11.0)
3559  440982 crash in gtk due to missing stock icon gtk-clear
3560  418047 GtkIconView sizing is very broken
3561  438440 All tests for Gtk2 failing when installing from CPAN
3562  314172 gtk_toolbar_set_icon_size() should be 'undeprecated'
3563  348493 _gdk_quartz_copy_to_image needs implementing for pixmaps
3564  398414 Printing to file with multiple pages per sheet
3565  412882 gdkwindow should support the concept of "composited"
3566  430218 Some file names are being cut unnecessarily with RTL Inte...
3567  435405 text view recreates pangolayouts all the time
3568  439565 Crash in GtkIconView a11y code
3569  440040 Reference counting in GtkPrintOperation goes awry
3570  440511 xcursors.h: illegal initializing
3571  440780 GtkAction set_short_label might be broken
3572  441443 jpeg loader does not set error upon abortion
3573  442172 Small cleanup in gtk_notebook_set_current_page and fix ty...
3574  442183 Updated gdk/gdkkeysyms-update.pl
3575  443247 Two GtkNotebook cleanups
3576  441767 Icon cache isn't validated properly
3577  442326 Overview navigator traps mouse on wrong screen in dual mo...
3578  79585  GtkTextView API to change cursor color
3579  132818 Allow GtkTextMark subclasses to be used in GtkTextBuffer
3580  348065 [PATCH] Remove automagic status of xinerama dependency
3581  441443 jpeg loader does not set error upon abortion
3582  386935 gtk_notebook_set_window_creation_hook only allows one...
3583  414947 Move "move-focus" signal to GtkWidget
3584
3585
3586 * Updated translations:
3587  Thai (th)
3588  Spanish (es)
3589  Norwegian bokmÃ¥l (nb)
3590
3591
3592 Overview of Changes from GTK+ 2.10.x to 2.11
3593 ============================================
3594
3595 * Printing support:
3596  - Cups backend: Work with "BrowseShortNames Off"
3597  - Cups backend: Fix handling of multi-valued options
3598  - Cups backend: Work with raw printers
3599  - Cups backend: don't lock up when met with larger numbers of printers 
3600  - Improved sensitivity handling of controls in the unix dialog
3601  - Support half-open ranges
3602  - Add a test print backend for easier debugging
3603  - Add API to list paper sizes
3604  - Add API to serialize and deserialize page setups and print settings
3605  - Print settings can be passed to the preview command 
3606  - Make more GtkPrinter public
3607
3608 * GtkFileChooser:
3609  - Improve file chooser dialog size logic
3610  - Add a GtkFileChooserButton::file-set signal
3611  - Add a search mode with backends for Beagle, Tracker and simple search
3612  - Add recent files support
3613
3614 * New tooltips API, that allows complex tooltips (markup, images),
3615   tooltips on insensitive widgets, tooltips on treeviews, etc
3616
3617 * GtkScaleButton, GtkVolumeButton: new widgets for volume controls 
3618   frequently seen in multimedia applications
3619
3620 * Input Methods:
3621  - New Thai and Lao input method
3622  - New multipress input method for phone pads
3623
3624 * Recent files:
3625  - GtkRecentChooserMenu supports custom menu items
3626  - GtkRecentAction was added
3627
3628 * Keyboard navigation improvements:
3629  - Infrastructure for notification of failed keyboard navigation
3630  - Better support for restricted sets of keys
3631  - Only handle keys for notebook tab reordering and scrolledwindow 
3632    scrolling if it make sense
3633  - Add settings gtk-enable-accels and gtk-enable-mnemonics to disable  
3634    the display of accelerators and mnemonics
3635  - Popup/popdown of comboboxes is keybindable
3636
3637 * Windows port: 
3638  - Windows 9x/ME is not supported anymore 
3639  - Many ms-windows theme improvements
3640  - The file chooser uses native icons
3641  - Support drop shadows 
3642  - Use native cursors
3643
3644 * OS X port:
3645  - Many improvements
3646
3647 * Icon theme support:
3648  - Add api to list contexts of an icon theme 
3649  - The builtin stock icons have been replaced by a new set of icons 
3650    which are visually compatible with Tango
3651  - Support fallback to more generic icon names 
3652  - Validate icon caches when they are created and before they are used
3653
3654 * GtkRange has gained support for fill levels
3655
3656 * GtkEntry:  
3657  - inline-selection mode for entry completion that is closer to what 
3658    web browsers need
3659  - Add gtk_entry_set_cursor_hadjustment() to support automatic scrolling
3660
3661 * GtkTextView:
3662  - Support accumulative and negative margins
3663  - GTK_JUSTIFY_FILL works
3664
3665 * GtkLabel:
3666  - GTK_JUSTIFY_FILL works
3667
3668 * GtkStatusIcon: 
3669  - Multiscreen support
3670  - gtk_status_icon_position_menu() works on Windows
3671  - Don't take up space when invisible
3672
3673 * GtkCellRendererProgress:
3674  - Respect themes 
3675  - Support activity mode
3676
3677 * GtkNotebook: 
3678  - Support scrolling during tab DND
3679  - Allow dropping tabs anywhere
3680  - Deprecate numeric group-ids in favour of a more flexible group property
3681
3682 * GtkTreeView:
3683  - Lots of scrolling fixes
3684  - Add a gtk-alternative-sort-arrows setting for drawing sort arrows
3685    according to platform conventions
3686
3687 * GtkButtonBox:
3688  - Can center buttons now
3689
3690 * GtkComboBoxEntry 
3691  - Can add an arbitrary child widget
3692
3693 * GtkAboutDialog:
3694  - The "name" property has been replaced by "program-name" to avoid
3695    a clash with the preexisting "name" property on GtkWidget
3696
3697 * GDK changes:
3698  - Add gdk_event_request_motions() which works with input devices
3699  - Add API for changing startup notification id on a window
3700  - Add API for sending startup notification messages
3701  - Don't deadlock with xcb-based libX11
3702  - The handling of _NET_WM_USER_TIME has been changed to reduce
3703    the amount of root window property changes
3704  - New gdk_threads api() to allow fully threadsafe handling of idles 
3705    and timeouts
3706
3707 * gdk-pixbuf changes: 
3708  - Optional support for Sun mediaLib hardware acceleration
3709  - Support exif rotations in tiffs and jpegs
3710  - Allow arbitrary split between builtin vs modular loaders
3711  - Support v5 and OS/2 bmps
3712  - Support scaling animations
3713
3714 * Miscellaneous GTK+ changes:
3715  - New function gtk_window_set_opacity(), to set the opacity
3716    of toplevel windows
3717  - Allow to restrict drags within an application or widget 
3718  - Support opening/closing of submenus on click
3719  - Configurable cursor blinking timeout
3720  - Insensitive widgets don't install cursors
3721
3722 * Bug fixes:
3723  - too many to list here
3724
3725 * New and updated translations:
3726  Arabic (ar)
3727  Assamese (as)
3728  Belarusian Latin (be@latin)
3729  Bulgarian (bg)
3730  Bengali (bn)
3731  Catalan (ca)
3732  Czech (cs)
3733  Welsh (cy)
3734  German (de)
3735  Greek (el)
3736  Canadian English (en_CA)
3737  British English (en_GB)
3738  Esperanto (eo)
3739  Spanish (es)
3740  Estonian (et)
3741  Finnish (fi)
3742  French (fr)
3743  Gujarati (gu)
3744  Hebrew (he)
3745  Hindi (hi)
3746  Hungarian (hu)
3747  Indonesian (id)
3748  Italian (it)
3749  Kurdish (ku)
3750  Lithuanian (lt)
3751  Latvian (lv)
3752  Macedonian (mk)
3753  Malayalam (ml)
3754  Marathi (mr)
3755  Norwegian bokmÃ¥l (nb)
3756  Nepali (ne)
3757  Oriya (or)
3758  Brazilian Portugese (pt_BR)
3759  Romanian (ro)
3760  Russian (ru)
3761  Slovenian (sl)
3762  Serbian (sr) 
3763  Serbian Latin (sr@Latn)
3764  Swedish (sv)
3765  Tamil (ta)
3766  Thai (th)
3767  Turkish (tr)
3768  Ukainian (uk)
3769  Vietnamese (vi)
3770  Walloon (wa)
3771  Simplified Chinese (zh_CN)
3772  Chinese (Hong Kong) (zh_HK)
3773  Chinese (Taiwan) (zh_TW)
3774
3775
3776 Overview of Changes from GTK+ 2.10.1 to 2.10.2
3777 ==============================================
3778
3779
3780 * Many fixes and improvements for the OS X backends
3781
3782 * Revert to using gtk modules with global binding,
3783   since the local binding that was introduced in 
3784   2.10 breaks the accessibility support of current 
3785   OpenOffice.org releases.
3786
3787 * GtkRecenManager 
3788  - Poll for changes to the XBEL file
3789  - Fix initial bad placement of recent files menu
3790  - Show nonexisting resources by default, and do 
3791    not mark them as insensitive
3792  - Allow adding a filter to GtkRecentChooserMenu
3793
3794 * GtkFileChooser
3795  - Improve the fallbacks for icons
3796  - Make  / and ~ activate the location entry again
3797
3798 * Bugs fixed:
3799  348828 Segmentation Fault in gtk_combo_box_menu_setup 
3800         when removing combobox child
3801  349552 problem with parsing (enum) style properties
3802  351581 API Documentation issues with 2.15 release
3803  348652 reorder() from ComboBoxEntry produces Gtk+ assert 
3804         error
3805  349128 Fix docs about GtkTreeModel::row-deleted
3806  350605 Crash caused by the recent menu
3807  348096 GtkStyle leaks GtkRcContext
3808  348145 Background images not working with Quartz backend
3809  329752 Problem with has_selection notification when 
3810         deleting the selection
3811  347856 gtk_recent_chooser_add_filter not implemented 
3812         for GtkRecentChooserMenu
3813  348245 Disabling pdf printing doesn't hide option
3814  348278 textview doesn't update on hinting setting change
3815  348289 Filechooser is blocked by higher priority idle
3816  348478 entry completions needs to reset the IM context 
3817         before emitting action-activate signal
3818  348538 Remove old email addreses from the tutorial
3819  348626 drag-to-child should not work
3820  348634 IconView does not update background
3821  348706 don't allow dnd onto arrows
3822  348740 configure script does not honour PKG_CONFIG variable
3823  348787 Segfault in gtk_font_button_update_font_info()
3824  348824 test attached calendar-sane-timer patch in head
3825  348971 gtk_status_icon_get_geometry returns bogus data
3826  349382 valgrind uninitialized memory warnings setting 
3827         partly uninitialized X properties
3828  349570 notebook arrow PRELIGHT drawing doesn't work
3829  349834 Memleak from gtk_tree_view_set_enable_tree_lines
3830  349858 Leak of ShmPixmapInfo from get_shm_pixmap_for_image
3831  349859 gtk_paint_tab doesn't work when widget is now 
3832         option menu
3833  349997 Indirect leak from XkbGetMap
3834  350039 GtkFileChooserEntry leaks sources
3835  350050 GdkGC leak from GtkRuler
3836  350139 Should use evince preview mode
3837  350258 Memory leak in gtk_entry_drag_data_received()
3838  350329 The CUPS printer backend in GTK+-2.10.1 fails 
3839         with CUPS 1.1.
3840  350517 reset_style_idle() interferes with application 
3841         idles
3842  350860 Balloon messages sent to tray do not have the 
3843         correct window in XEvent
3844  350938 TreeViewColumn rendering off when "spacing" 
3845         property set
3846  351112 gtk_notebook_set_current_page fails when the 
3847         notebook has not yet been shown
3848  351519 Directfb backend fails to build
3849  165714 GtkEntryCompletion doesn't complete on paste
3850  168737 Different button sizes in About dialogs
3851  345666 The icons of file, directory and device at 
3852         GtkFileChooser
3853  349429 spin button does not use correct value for 
3854         inner_border
3855  349501 fix in the documentation of function 
3856         gtk_list_store_insert_with_values()
3857  350072 stdout output from colorselection
3858  351759 Wrong range value in documentation of 
3859         gtk_color_selection_set_current_alpha
3860  349277 Wrong message for problems with serializing 
3861         texts
3862  346800 Rework sort/filter models to use indices to 
3863         parents instead of pointers
3864  349120 Small error in doc
3865  350911 gdk_pixbuf_new_from_file_at_scale() should 
3866         skip when there's enough image data 
3867  348728 GtkTable Row and Column Spacing
3868  351241 swapped argument description
3869  350023 "Running GTK+ Applications" chapter does not 
3870         document new GTK_DEBUG possibilities
3871  351812 file print backend filename encoding issue
3872
3873 * New and updated translations (bg,bn_IN,de,dz,el,es,
3874   et,eu,fi,gu,hu,ko,ku,ja,lt,mk,ml,nb,ne,nl,or,pl,po,
3875   sv,th,tr,tt,uk,zh_HK,zh_TW)
3876
3877
3878 Overview of Changes from GTK+ 2.10.0 to 2.10.1
3879 ==============================================
3880
3881 * Drop Pango requirement 1.12.0
3882
3883 * Many fixes and improvements for the OS X 
3884   and directfb backends
3885
3886 * The printing framework now supports a subset
3887   of the Cups 1.2 custom PPD option spec
3888
3889 * Bug fixes:
3890  348134 box gaps on left and right can be drawn wrong
3891  348014 crash on Epiphany Web Browser
3892  348063 _gtk_icon_cache_get_icon crashes when no 
3893         cache available
3894  348096 GtkStyle leaks GtkRcContext
3895  157439 The "adding to panel" is buggy when switching 
3896         to an rtl environment
3897  346751 symbolic colors can't be use in properties
3898  347976 Context menus appear in strange locations
3899  348001 xid / fid X11 font id's are used intermixed
3900  348049 Tabs "magically" re-order
3901  348094 Adjustment leak from gtkiconview
3902  348115 improve notebook visuals when dragging
3903  348120 gtkentrycompletion leaks action_view
3904  348227 gtkimcontextsimple doesn't terminate a string 
3905         with null
3906  348424 mem leak in GtkPrintSettings
3907  348089 Missing chaining up in gtk_recent_chooser_menu_finalize
3908  348090 Reference leak in gtk_text_layout_set_contexts
3909  348095 gtk_menu_stop_scrolling does work even if we 
3910         were not scrolling...
3911  142582 Add animation xsetting
3912  346427 xbm loader returns false, fails to set error
3913  346733 GList of visuals is always empty and causes 
3914         crashes in gdk_rgb_choose_visual()
3915  347048 crash on using GtkAssistant
3916  164884 GtkTreeView row drag is sometimes started 
3917         spuriously
3918  302127 GtkTreeView gets angry when items deleted 
3919         from a test_expand_row handler
3920  346092 gtk_tooltip_set_delay documentation wrong
3921  346428 Be robust against broken loaders failing to 
3922         set error on failure
3923  346467 gtkwindow state assignments bug
3924  346598 modeline takes too much memory
3925  346603 Context menus only work once
3926  346639 treeview memleak
3927  346668 symbolic colors are broken when specifying 
3928         engine
3929  346713 quartz backend is missing functions that 
3930         pygtk needs
3931  346721 XBM reading in quartz backend is broken
3932  346836 Tabs jump around when opening menus
3933  347018 missing GDK_QUARTZ_ALLOC/RELEASE_POOL calls
3934  347277 gtk_drag_get_ipc_widget() and window groups
3935  347315 SYNC extension check failing
3936  347902 GtkRange doesn't reliably update stepper 
3937         sensitivity
3938  335012 gtkcellrenderertext - gtkeditable: bad 
3939         interaction when ypad is set to hi value
3940  337910 gdk_pango_layout_get_clip_region is inefficient
3941  346605 Modifier-key events are not sent
3942  346970 gtkfilechooserbutton leaks an empty list
3943  347032 documentation of gtk_print_context_get_height() 
3944         has typo
3945  347037 GObject info missing for GtkRecentManager and 
3946         GtkRecentChooser* in gtk-doc API reference
3947  347041 documentation of gtk_paper_size_is_equal() 
3948         has a typo
3949  347043 Reference leaks in GtkFileChooserButton
3950  347066 gimp 2.3.9/2.2.12 GTK+ assertion fails on 
3951         open file dialog
3952  347211 documentation of gtk_print_job_send() has a 
3953         typo
3954  347710 new GtkCellRendererSpin misses a lot of API 
3955         documentation
3956  347711 slight glitches in GtkAssistant API documentation
3957  347065 Fix in-line doc typos
3958  311399 relative to the window string can be better 
3959
3960 * Updated translations (bg,bn_IN,cs,de,dz,es,et,
3961   eu,fi,fr,gu,he,ko,or,th)
3962
3963 Overview of Changes from GTK+ 2.9.4 to 2.10.0
3964 =============================================
3965
3966 * Printing:
3967   - A PREVIEW capability has been added to allow hiding the
3968     preview button
3969
3970 * Bug fixes:
3971  321393 Incorrect size request after changing the font
3972  327164 (GtkRBNode *)node becomes NULL inside GtkTreeView
3973  344074 Feature request: get printer list, and get default print
3974  344876 refcount leak when using ComboBox.set_cell_data_func
3975  345644 gtk+-2.9.4 requires CUPS-1.2.x
3976  345663 gtkaction(group)?.c: using functions without prototype declaration
3977  346079 gtk receives all sorts of events from the X server
3978  343841 Misguided iter assertion in gtk_list_store_insert_with_values()
3979  346113 unix print dialogue always has preview button
3980  346237 Possible leak in gtkprintunixdialog.c
3981  346027 cancelling printer enumeration
3982  346312 gtk 2.9.4 tarball lacks the files gtkwin32embedwidget.h 
3983         and gtkprint-win32.h
3984  346341 Memory leak in gtk_tree_model_sort_finalize: User data not freed
3985
3986 * Updated translations (cs,cy,dz,es,gu,hi,ko,mk,nb,nl,ru,th,ur)
3987
3988 Overview of Changes from GTK+ 2.9.3 to 2.9.4
3989 ============================================
3990
3991 * GtkPrintOperation:
3992  - UI improvements in the print dialog
3993  - Make printing work without a display connection
3994  - Replace "Print to PDF" by "Print to file" that
3995    can generate PDF or PostScript
3996  - Add a function to the low-level API to 
3997    enumerate all printers
3998
3999 * GtkNotebook tab DND has been improved
4000
4001 * GtkProgressbar supports text in activity mode 
4002
4003 * GtkLabel allows to set the wrap mode
4004
4005 * GtkStatusIcon supports transparency
4006
4007 * Bugs fixed:
4008  344850 Dragging a GtkTreeViewColumn segfaults when 
4009         using certain GtkTreeViewColumnDropFunc
4010  342458 Stock menu items without icons are broken in 
4011         recent GTK+ releases.
4012  335873 notebook DND + popup windows
4013  337882 gtk_progress_bar_set_text() does nothing in 
4014         activity mode
4015  339456 unix print dialogue help button bug
4016  339702 Make sure printing works without a display
4017  341571 tabs too easily reordered
4018  344074 New Feature: get printer list, and get default print
4019  344743 gtk_targets_include_text() should initialize atoms
4020  344838 Allow func to be NULL in 
4021         gtk_tree_view_set_search_position_func
4022  344891 GtkPrintOperationPreview signal defs correction
4023  345008 Need updated cairo req
4024  345093 print preview temp file issues
4025  345107 Memory leak in gtk_entry_completion_finalize: 
4026         User data not freed
4027  345194 gdk_window_set_functions() docs need to be updated
4028  345456 grid-lines property is wrongly registered and 
4029         get/set.
4030  314278 strings in gtk-update-icon-cache are not marked 
4031         for translation
4032  344707 size group with widgets in hidden container
4033  344897 Entry completion model NULL handling should be 
4034         documented
4035  345038 gtk_print_job_set_status' status
4036  345106 dialog button box spacings
4037  345176 GtkIconView doc about drag and drop
4038  345275 doc imporovements for gtk_window_move
4039  345320 Two very similiar strings should be made equal
4040  345321 Add meaning of "shortcut" as translator comment
4041  320034 transparency gtkstatusicon
4042  339592 Add print-to-postscript
4043  344867 custom paper file could use keyfile
4044
4045 * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th)
4046
4047 Overview of Changes from GTK+ 2.9.2 to 2.9.3
4048 ============================================  
4049
4050 * GtkPrintOperation: 
4051  - Introduce an allow-async property 
4052  - Introduce a GtkPrintOperationAction enumeration
4053  - Rename pdf_target to export_filename
4054  - Allow to hide "Print to PDF" in the low-level API
4055
4056 * GtkNotebook:
4057  - Add a destroy notify to 
4058    gtk_notebook_set_window_creation_hook.
4059
4060 * GtkTreeView:
4061  - Support grid lines
4062
4063 * GtkRange:
4064  - Add a number of new stle properties which allow more
4065    fexible stepper theming
4066
4067 * Bugs fixed:
4068  153212 Have the Paste kbd shortcut jump to the location in 
4069         the buffer
4070  337491 _gdk_win32_drawable_release_dc: DeleteDC() called on 
4071         a GetDC() handle
4072  339739 gtk/gtkprintoperation-win32.c: 3 compile error
4073  342339 GtkRange::stepper-spacing style property not 
4074         implemented correctly
4075  343945 Buttons of a GtkAssistant are not accessible
4076  344148 Wrong reqs for ATK
4077  344209 gtk_notebook_set_window_creation_hook() has no destroy 
4078         func.
4079  344232 GtkEntry's "Delete" context menu item is sensitive on a 
4080         non-editable GtkEntry
4081  344244 Window resizing not working when keeping the aspect 
4082         fixed
4083  344288 gtk_print_operation_preview_is_selected must return 
4084         a value
4085  344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h
4086  344496 CRLF converting via Clipboard
4087  344504 GtkPrintCapabilities not in gtktypebuiltins.h
4088  344505 Wrong signal registration for create_custom_widget
4089  344512 cvs build issue
4090  344513 pdf print module's print_stream not calling destroy 
4091         notify
4092  344518 NULL unref in page setup dialogue
4093  344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint 
4094         directly
4095  344560 gtk_print_settings_[sg]et_scale shouldn't be in percent
4096  344607 memory leaks in gtkrecentchooserdefault.c and 
4097         gtkrecentchoosermenu.c
4098  344624 Memory leak in gtk_tree_model_filter_finalize: User 
4099         data not freed
4100  337603 Possible off-by-one in 
4101         gdk_pango_layout_line_get_clip_region
4102  344239 Wrong filename for gtk-find stock item.
4103  344528 comma at end of GtkPrintOperationAction enum causes 
4104         mozilla compilation error
4105  344290 horizontal-padding not take into account when placing 
4106         submenus
4107  344558 document print dialogue response codes
4108  339592 Add print-to-postscript
4109  342249 Allow to draw upper and lower sides of GtkRange's 
4110         trough differently
4111  344530 gtk_recent_chooser_widget_new_for_manager and 
4112         gtk_recent_chooser_menu_new_for_manager should 
4113         allow NULL manager arg
4114
4115 * Updated translations (es,fi,gu,ko,th,wa)
4116
4117
4118 Overview of Changes from GTK+ 2.9.1 to 2.9.2
4119 ============================================
4120
4121 * GtkPrintOperation
4122  - Support asynchronous pagination with the ::paginate signal
4123  - Add gtk_print_operation_cancel
4124  - Support application-specific widgets
4125  - Allow disabling features based on application capabilities
4126  - Optionally show progress
4127  - Change some function names in GtkPrintContext to be longer 
4128    and better
4129  - Support preview, the default implementation spawns evince,
4130    but the api allows for an internal preview implementation
4131
4132 * GtkCellView
4133  - Add a model property
4134
4135 * GtkStatusIcon
4136  - Allow to obtain screen geometry 
4137
4138 * GtkTreeView
4139  - Many bug fixes, in particular for RTL handling
4140  - Separate sensitive and selectable properties of rows
4141  - Optionally allow rubberband selection
4142
4143 * GtkButton
4144  - Add image-spacing style property
4145  - Add image-position property 
4146
4147 * GtkToolButton
4148  - Add icon-spacing style property
4149
4150 * Make GTK+ work as an untrused X client
4151
4152 * Bugs fixed:
4153  343838 gtkprintoperationpreview.h guards
4154  305530 Crashes while creating source code w/GtkFontSelection
4155  341327 Memory corruption inside glib
4156  341734 cursor blocked to dnd mode after using shift and 
4157         dnd on a GtkCalendar
4158  343453 G_DEFINE_TYPE messes up internal typenames of 
4159         GdkWindow and GdkPixmap
4160  136571 Problems running as untrusted client
4161  168105 the right edge tab does not appear when switching tab
4162  172535 Add support for UI builders in gtk+
4163  302556 GtkTreeView widget signals are badly documented
4164  324480 Selecting first item with keyboard is difficult
4165  340428 small cleanup
4166  340444 don't run the custom page size dialogue
4167  340839 Critical warnings in GtkTreeModelFilter
4168  341898 gtk_tree_view_insert_column_with_attributes doesn't 
4169         work with fixed_height_mode
4170  342003 DnD: Conditional jump or move depends on uninitialised value
4171  342072 Wrong drop location in GtkEntry
4172  342096 GtkImage animation CRITICALS on switching themes
4173  342513 widget class style property with type module
4174  342529 gdk should set resolution on PangoCairoFontmap, 
4175         not PangoCairoContext
4176  342535 Add documentation for new GtkWidget style properties 
4177         (including Since tags)
4178  342543 can't compile gtk+ on opensolaris using sun cc
4179  342569 Typo in decl of gdk_color_parse
4180  342752 Need a way to specify custom tab label for custom page 
4181         in Print dialog
4182  342754 print-editor: font button dialog doesn't get focus if 
4183         main window has a window group
4184  342781 GtkPrintUnixDialog: Collate should be insensitive unless 
4185         Copies is > 1
4186  342783 GtkPrintUnixDialog: Range textinput area should be 
4187         insensitive unless range radiobutton is selected
4188  342894 Use after free inside gtk_text_view_set_buffer
4189  342930 GtkButton should offer a way to position the image 
4190         relative to the text
4191  343088 Some typos in the PO file
4192  343425 "grab-notify"-signal is not correctly propagated for 
4193         internal children
4194  343438 gtk_color_button_set_color() doesn't emit "color-set" 
4195         signal
4196  343475 page setup unix dialog confusion
4197  343625 allow to get only some info from gtk_status_icon_get_geometry
4198  343677 GtkWindow chains key-release to key-press
4199  320431 Text too close when using East/West in a GtkToolButton
4200  321523 GtkTreeView's test_expand_row signal emitting impractical 
4201         on row expand all
4202  342007 Warning in gtk_paned_compute_position
4203  343233 gdk_rectangle_intersect doc
4204  333284 expander animation not working in RTL mode
4205  343444 change color of gtk-demo source-buffer comment color 
4206         from red to DodgerBlue
4207  343630 Small inconsistence in migration documentation
4208   80127 Rubberbanding for GtkTreeView
4209  341450 status icon + libnotify
4210  341679 Allow absolute filenames in the options entries
4211
4212 * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja,
4213                         nb,nl,pt_BR,th,vi)
4214
4215
4216 Overview of Changes from GTK+ 2.9.0 to 2.9.1
4217 ============================================
4218
4219 * GtkPrintOperation
4220  - Many user interface improvements in the unix dialogs
4221  - gtk-demo has a printing demo
4222  - Don't unload print backends for now, since that has
4223    deadlock issues
4224  - Asynchronous page rendering is done in an idle
4225
4226 * GtkImage has an image property 
4227
4228 * GtkTextBuffer has a cursor-position property
4229
4230 * Arrow sizes in scrolled menus and notebooks are themable
4231
4232 * GDK keysyms have be synced with Xorg 7.1
4233
4234 * Bugs fixed:
4235  340676 print backend type modules not correctly re-registering 
4236         their types
4237  340870 gdk_window_get_toplevels docstring error
4238  323956 Unwanted accelerate key in the action-based toolbar
4239  340527 Tooltips not shown for toolbar buttons created with 
4240         uimanager/actions
4241  340516 status icon property getter assertions
4242  341091 a couple of spelling errors in gtk+
4243  335707 notebook DND with event boxes in tab labels
4244  337306 Add a GtkMessageDialog::image property
4245  139628 GtkLayout In GtkScrolledWindow does not receive the 
4246         scroll_event
4247  334412 Add cursor-position property for getting notified 
4248         about cursor movement
4249  341217 langinfo.h #include'd unconditionally stops build
4250  333632 use GtkMenu::scroll-arrow-height instead of 
4251         MENU_SCROLL_ARROW_HEIGHT
4252  325282 Add GtkNotebook::tab-overlap style property
4253  341247 possible crash with tab_label = NULL
4254  321896 Sync gdkkeysyms.h/gtkimcontextsimple.c with X.org 6.9/7.0
4255  341416 Save FileChooserDialog doesn't response
4256  336774 gtk_recent_manager_add_full
4257  340401 critical warnings when using window groups
4258  341661 misplaced g_assert in gtk_text_view_allocate_children
4259  341692 Semicolons after G_DEFINE_TYPE
4260  341665 several misplaced g_assert
4261  341578 reverse page order issues
4262  341332 Unset background in more places
4263  341896 gtktreeview has RTL problems with toggle buttons if using 
4264         gtktreestore as a model
4265  341028 crash in new async code
4266  341035 file chooser crash
4267  340722 GtkToolbar::max-child-expand style property
4268  339589 Tooltips on orientation icons in page setup dialog
4269  340951 faq: How do I internationalize a GTK+ program? doesn't 
4270         mention glib-I18N
4271  341855 Little typo in the Tree and List Widget Overview
4272  153212 Have the Paste kbd shortcut jump to the location 
4273         in the buffer
4274  335729 Invisible rows and 
4275         gtk_tree_model_filter_convert_child_*_to_*
4276  106406 GtkTreeView Grid Lines?
4277  339592 Add print-to-postscript
4278
4279 * Updated translations (de,es,gl,gu,nl)
4280
4281
4282 Overview of Changes from GTK+ 2.8.x to 2.9.0
4283 ============================================
4284
4285 * GtkStatusIcon, a cross-platform "tray icon" API
4286
4287 * GtkAssistant, a widget for creating multi-step wizards
4288
4289 * GtkLinkButton, a widget that displays a clickable hyperlink
4290
4291 * GtkRecentChooser, widgets to display and select recently used files
4292
4293 * GtkPrintOperation, cross-platform printing support
4294
4295 * A framework for rich text copy and paste and DND
4296
4297 * GtkCellRendererAccel, a cell renderer for key combinations
4298
4299 * GtkCellRendererSpin, a cell renderer which edits numeric values 
4300   using a spin button
4301
4302 * GtkAction works with named icons in addition to stock icons
4303
4304 * GtkNotebook supports DND, allowing to reorder tabs, move tabs
4305   between notebooks and drop tabs on the desktop to open a new window
4306
4307 * GtkTreeView:
4308   - Enhanced customizability (e.g. grouping) with the
4309     show-expanders and level-indentation properties
4310   - Allow to embed the search popup
4311   - Better search popup positioning
4312
4313 * GtkFileChooser:
4314   - Communication with backends is now asynchronous to avoid
4315     blocking on file system operations. Due to the required interface
4316     changes, the GTK+ ABI version has been bumped to 2.10.0. Third-party
4317     file system backends have to be ported to the new interface, other
4318     modules, such as theme engines, input method modules or pixbuf loaders 
4319     have to be rebuilt so that they are installed in the right place
4320     for GTK+ to find them.
4321   - The location entry (popped up by C-L) has been integrated in the
4322     main dialog.
4323     
4324 * Reworked hex Unicode input now requires Ctrl-Shift-U
4325
4326 * Animations can now be globally controlled by settings
4327
4328 * The gtk-touchscreen-mode setting controls a number of changes
4329   that make GTK+ work better on touchscreens
4330
4331 * Password entries can optionally show the last entered character
4332   for a short while, controlled by the password-hint-timeout setting
4333
4334 * GTK+ can now consult an additional fallback icon theme before
4335   falling back to hicolor
4336
4337 * Improved themability:
4338   - GTK+ supports symbolic colors, which can be set system-wide
4339     using a setting, and can be modified and used in rc files
4340     and theme engines
4341   - GTK+ sets window type hints on override-redirect windows to 
4342     help compositing managers apply proper bling
4343   - Paths in rc files can now refer to all subclasses of a class 
4344   - GtkRange steppers will appear insensitive when the slider
4345     is at the end; applications which need to handle this case
4346     (e.g. to extend the range) can opt out of this.
4347   - GtkRange::activate-slider style property allows themes
4348     to draw sliders differently while they are being dragged
4349   - GtkNotebook::tab-overlap and GtkNotebook::curvature style
4350     properties allow more flexible notebook theming
4351   - The spacing of buttons around children can be themed with
4352     the GtkButton::inner-border style property. Apps can override
4353     this per-widget using the corresponding inner-border property 
4354   - GtkMenu has acquired a horizontal-padding style property 
4355   - There are style properties for the color of hyperlinks,
4356     GtkWidget::link-color and GtkWidget::visited-link-color
4357   - GtkTreeview row hinting now takes the selection into account
4358   - Scrolling menus can be forced to always display both arrows,
4359     using the GtkMenu::double-arrows style property
4360   - Separators can be themed using the wide-separators, separator-width
4361     and separator-height style properties
4362   - GtkTreeView allows more flexible theming with the row-ending-details
4363     property
4364   - The pixbuf theme engines supports customized drawing of expanders
4365     and resize grips
4366
4367 * GDK changes:  
4368   - OS X backend
4369   - DirectFB backend 
4370   - Closing displays works
4371   - gdk_screen_is_composited to check for running compositing manager
4372   - Support for Super, Hyper and Meta modifiers
4373
4374 * gdk-pixbuf changes: 
4375   - Supports saving tiff 
4376   - Supports loading 16-bit pnm
4377   - Doesn't load entire gif animation to get first frame
4378
4379 * Bug fixes
4380   - Too many to list them here
4381
4382 Overview of Changes from GTK+ 2.8.1 to GTK+ 2.8.2
4383 =================================================
4384 * Fix a crash with custom icon themes, which affected
4385   the gnome-theme-manager. [Kjartan Maraas]
4386 * Make sure font and cursor settings are propagated down
4387   to the screen initially. [Frederic Crozat]
4388
4389 Overview of Changes from GTK+ 2.8.0 to GTK+ 2.8.1
4390 =================================================
4391 * gtk-update-icon-cache no longer stores copies of symlinked
4392   icons, and it has a --index-only option to omit image data
4393   from the cache [Matthias]
4394 * Make large GtkSizeGroups more efficient [Michael Natterer]
4395 * Improve positioning of menus in GtkToolbar [Christian Persch,
4396   Paolo Borelli]
4397 * Make scrolling work on unrealized icon views [Jonathan Blandford]
4398 * Avoid unnecessary redraws on range widgets [Benjamin Berg]
4399 * Make sure that all GTK+ applications reload icon themes
4400   promptly. [Chris Lahey]
4401 * Ensure that gdk_pango_get_context() and gtk_widget_get_pango_context()
4402   use the same font options and dpi value [Michael Reinsch, Owen]
4403 * Multiple memory leak fixes [Kjartan Maraas, Matthias]
4404 * Other bug fixes [Owen, Allin Cottrell, Tor Lillqvist, Jonathan
4405   Blandford, Christian Persch, Jonas Bonn, Brett Atoms, Guillaume 
4406   Cottenceau, Sebastien Bacher, Robin Green, Benoit Carpentier,
4407   Hans Breuer, Kjartan Maraas, Manish Singh, Robert Jeff Mitchell,
4408   Markku Vire, Kristian Rietveld, Tommi Komulainen]
4409 * Documentation improvements [Olexiy Avramchenko, Matthias]
4410 * Updated translations (es,et,hu,ko,lt,ro,uk)
4411
4412 Overview of Changes from GTK+ 2.7.5 to GTK+ 2.8.0
4413 =================================================
4414 * Require cairo 0.9.2 [Matthias]
4415 + Extend ABI checks to cover exported variables [Matthias]
4416 * Bug fixes [Benjamin Berg, Christian Persch]
4417 * Documentation improvements [Matthias]
4418 * New and updated translation (cy,de,el,id,te,zh_TW)
4419
4420 Overview of Changes from GTK+ 2.7.4 to GTK+ 2.7.5
4421 =================================================
4422 * Rename the default theme to "Raleigh" [Thomas Wood]
4423 * Add a performance testing framework [Federico Mena Quintero]
4424 * Catch format errors in translations. This may cause 
4425   "make check" to fail when using older versions
4426   of gettext [Matthias]
4427 * Win32
4428  - Implement the urgency hint [Tor Lillqvist]
4429  - Update ms-windows theme [Dom Lachowicz]
4430  - Improve tablet handling [Robert Ã–gren]
4431  - Bug fixes [Kazuki Iwamoto, Tor Lillqvist, Tim Evans, 
4432    J. Ali Harlow, Hans Breuer]
4433 * Other bug fixes [Callum McKenzie, Matthias, Kjartan Maraas, 
4434   Elijah Newren, Morten Welinder, Owen Taylor, Johan Dahlin,
4435   Peter Zelezny, Dan Winship, Damien Carbery, Alex Graveley,
4436   Mike Morrison, David Odin]
4437 * Documentation improvements [Fabrice Bauzac, Claudio Saavedra,
4438   Federico Mena Quintero]
4439 * New and updated translation (ar,bg,cs,de,fi,gu,ja,nb,nl,no,
4440   pl,pt,sq,zh_CN,zh_TW)
4441
4442 Overview of Changes from GTK+ 2.7.3 to GTK+ 2.7.4
4443 =================================================
4444 * Make svg icon themes work better [Matthias]
4445 * GtkPlug/GtkSocket: Make these cross-platform
4446   and implement them for Win32 [Tor]
4447 * Make font rendering xsettings work with pangocairo [Owen]
4448 * Fix sporadic segfaults in the GtkTreeModelSort [James
4449   Bramford, Markku Vire, Kristian Rietveld]
4450 * Improve gdk-pixbuf's ability to recognize 
4451   svg images. [William Jon McCann]
4452 * Win32 
4453  - Build fixes [Tor Lillqvist]
4454  - Fix clipping issues [Robert Ã–gren]
4455  - Bug fixes [Peter Zelezny]
4456 * Other bug fixes [Christian Persch, Arkady L. Shane, 
4457   Matthias, Tommi Komulainen, Alexander Larsson, Owen,
4458   Thomas Vander Stichele, Robert Ã–gren]
4459 * Documentation improvements [Steve Chaplin, Matthias,  
4460   Federico Mena Quintero]
4461 * New and updated translations (en_CA,fr,hy,lt,nl,sk,th,zh_CN)
4462
4463 Overview of Changes from GTK+ 2.7.2 to GTK+ 2.7.3
4464 =================================================
4465 * Make sure that gtk_window_present() moves the window to the 
4466   current desktop [Elijah Newren]
4467 * GtkFileChooser
4468  - Add overwrite confirmation for SAVE mode [Federico Mena Quintero]
4469 * GtkTreeView
4470  - Add gtk_tree_view_get_visible_range() [Mikael Hallendal]
4471  - Add gtk_tree_view_column_queue_resize() [Morten Welinder]
4472  - Add gtk_tree_row_reference_get_model() [Stefan Kost]
4473  - Make page up/down behave as in the text view [Owen Taylor]
4474  - In typeahead search, allow Ctrl-G to move to the
4475    next match.  [Matt T. Proud]
4476  - Interpret Ctrl-Backspace as "Move focus to parent [Kathy
4477    Fernandes]
4478  - Speed up gtk_tree_selection_selected_foreach [Kristian Rietveld]
4479 * GtkTextView 
4480  - Make double-clicking between words select whitespace [Mike 
4481    Miller, Paolo Borelli]
4482  - Show dragged text in drag icon [Kevin Duffus, Carlos 
4483    Garnacho Parro]
4484  - Make invisible text work well enough to remove the
4485    remove the warning about it being unsupported.  [Matthias]
4486 * GtkEntry
4487  - Make double-clicking between words select whitespace [Matthias]
4488  - Show dragged text in drag icon [Kevin Duffus, Carlos Garnacho Parro]
4489  - Fix the sizing of the entry completion popup [Ross Burton, Kris]
4490 * Win32
4491  - Build fixes [Tor Lillqvist]
4492  - Fix handlink of Aiptek tablets [Robert Ã–gren]
4493 * Bug fixes [Kris, Jorn Baayen, Billy Biggs, Tomislav Jonjic, 
4494   Owen Taylor, Vincent Noel, Carlos Garnacho Parro, Mark McLoughlin. 
4495   Mikael Magnusson, Luis Villa, Brian Bober, Bernd Demian, Manish 
4496   Singh, Akira Tagoh, Barbie LeVille, Hans Oesterholt]
4497 * Documentation improvements [Torsten Schoenfeld, Rodney Dawes,
4498   Park Ji-In]
4499 * New and updated translations (cs,es,et,he,hu,nb,nl,no,sk)
4500
4501 Overview of Changes from GTK+ 2.7.1 to GTK+ 2.7.2
4502 =================================================
4503 * GtkAboutDialog
4504  - Clean up the "trail" in the path bar when set_current_folder
4505    is called explicitly [Jonathan Blandford, Matthias Clasen]
4506  - Accept dropped files and directories on the file list [Sven 
4507    Neumann, Matthias]
4508 * GtkTreeView
4509  - Make reusing cell renders work as well as it did in 2.6,
4510    but document it as being unsupported. [Kristian Rietveld]
4511 * GtkAboutDialog
4512  - Optionally wrap the license [Christian Rose, Christian Persch]
4513 * Menu
4514  - Make image menu items work in vertical menubars [Matthias]
4515  - Make orientation changes of menubars work [Matthias]
4516 * Win32
4517  - Implement named cursors and other new GDK apis [Hans Breuer]
4518  - Implement getting cursor images [Tor Lillqvist]
4519 * Bug fixes [J. Ali Harlow, Matthias, Diego Gonzalez, 
4520   Kazuki IWAMOTO, Paul Cornett, Sebastien Bacher, Tor]
4521 * Documentation improvements [Benjamin Berg, Matthias,
4522   Steve Chaplin, Peter van den Bosch, Tim-Philipp Müller]
4523 * New and updated translations (en_CA,sr,sr@Latn)
4524
4525 Overview of Changes from GTK+ 2.7.0 to GTK+ 2.7.1
4526 =================================================
4527 * GtkTreeView
4528  - Change the keynav for header reordering and resizing 
4529    to Alt-arrows and Shift-Alt-arrows  [Calum Benson]
4530 * GtkTextView
4531  - Make movement by paragraphs up/down symmetric [Behnam 
4532    Esfahbod]
4533  - Improve invisible text support [Matthias Clasen]
4534 * Some new stock items: GTK_STOCK_INFO, GTK_STOCK_FULLSCREEN,
4535   GTK_STOCK_LEAVE_FULLSCREEN [Kristof Vansant]
4536 * Handle broken grabs in many places [John Ehresman, Matthias]
4537 * GDK
4538  - Add a function to move a region [Søren Sandmann]
4539  - Fix endianness issues in the pixbuf drawing 
4540    code [David Zeuthen, Owen Taylor]
4541  - Add a GrabBroken event that is emitted when grabs
4542    are broken [Simon Cooke, John Ehresman, Matthias]
4543  - Track implicit grabs [Matthias]
4544 * Win32 
4545  - Improve and simplify line segment rendering [Tor Lillqvist] 
4546 * Bug fixes [Georg Schwarz, Fabricio Barros Cabral, 
4547   Benoit Carpentier, Markku Vire, Ryan Lortie, Matthias,
4548   Morten Welinder, Dan Winship, Manish Singh, Tom von
4549   Schwerdtner, Kjartan Maraas, Euan MacGregor, William Jon 
4550   McCann, David Saxton, Padraig Brady]
4551 * Documentation improvements [Matthias, Ross Burton]
4552 * New and improved translations (es,et,nl,sk,th,zh_TW)
4553
4554 Overview of Changes from GTK+ 2.6.x to GTK+ 2.7.0
4555 =================================================
4556 * GtkTreeView
4557  - Kris is back !!!
4558  - Lots of scrolling/validation fixes [Kristian Rietveld]
4559  - Allow to "unsort" columns. [Richard Hult]
4560  - Support wrapping in GtkCellRendererText [Matthias Clasen]
4561  - Support tinting in GtkCellRendererPixbuf [Jorn Baayen]
4562  - Make enable-search control only typeahead search,
4563    not C-f search. [Sven Neumann]
4564  - Make double-click autosize treeview columns again [Matthias]
4565  - Fix insensitive appearance [Billy Biggs, Matthias]
4566 * GtkFileChooser
4567  - Don't select the first item in folder modes [Christian Neumair,
4568    Federico Mena Quintero]
4569  - Make save mode work again [Federico]
4570  - Allow bookmarks to be renamed [Sean Middleditch]
4571  - Ellipsize the preview label [Jeroen Zwartepoorte]
4572  - Use smaller icons [Vincent Noel]
4573  - Avoid a size allocation loop [Milosz Derzynski, Robert Ã–gren]
4574  - Don't stat children of /afs or /net network directories [Federico]
4575  - Improve sorting of filenames [Matthias]
4576  - Treat backup files like hidden files, and support
4577    .hidden files in the Unix backend [Sean Middleditch, Jan Arne Petersen]
4578  - Improve the re-rooting behaviour of the path bar [Benjamin Otte]
4579 * GtkIconView
4580  - Many fixes for scrolling and selection handling [Mathias Hasselmann]
4581  - Implement GtkCellLayout, use cell renderers [Matthias]
4582  - Support editing [Matthias]
4583  - Support DND [Matthias]
4584  - Add API to determine the visible part of the 
4585    model [Jonathan Blandford]
4586 * GtkAboutDialog
4587  - Visual improvements, HIG compliance [Jorn Baayen]
4588 * GtkCalendar
4589  - Use nl_langinfo() to determine the first day of week,
4590    when it is available [Vincent Untz, Tommi Komulainen, Pierre Ossman]
4591  - Allow localization of the year format [Paisa Seeluangsawat]
4592 * GtkEntry
4593  - Allow completion popups to be wider than the entry [Ross Burton]
4594  - Add a property to suppress the popup for single matches [Matthias]
4595  - Don't blink the cursor if not editable [Nikos Kouremenos]
4596 * GtkTextView
4597  - Add a GtkTextBuffer::text property [Johan Dahlin]
4598  - Allow to set a paragraph background color [Gustavo Carneiro,
4599    Jeroen Zwartepoorte]
4600  - Don't blink the cursor if not editable [Nikos Kouremenos]
4601  - Make invisible text work a bit better [Jeroen]
4602 * GtkAlignment
4603  - Flip padding in RTL mode [Maciej Katafiasz]
4604 * GtkUIManager
4605  - Support invisible, expanding separators [Christian Persch]
4606  - Allow to construct menu tool buttons [Sven Neumann]
4607 * GtkIconCache
4608  - Cache image data and metadata as well [Anders Carlsson]
4609 * GtkMenu
4610  - Support vertical menubars [Matthias]
4611  - Make scrolling more efficient [Jorn Baayen, Søren Sandmann]
4612  - Allow to pop up menus without grabbing the keyboard [Michael 
4613    Natterer]
4614  - Allow setting background images on menus [Benjamin Otte]
4615 * gtk-demo
4616  - Add demos for 2.6 features [Matthias, Mark McLoughlin]
4617 * Allow custom translation function for stock labels. [Funda Wang,
4618   Diego Gonzalez]
4619 * Add 16x16 versions for some some icons which were missing
4620   them [Jakub Steiner, Tuomas Kuosmanen, Vincent Noel]
4621 * Move a lot of constant data to the .rodata section [Matthias]
4622 * Don't copy property names, nicks and blurbs [Matthias]
4623 * Use Cairo for most drawing [Owen Taylor]
4624 * Allow themes to draw outside the widget's allocation [Owen]
4625 * Allow key names to be translated [Christian Rose]
4626 * Make all cursors used by GTK+ themeable [Matthias]
4627 * Support the ICCCM urgency hint [Havoc Pennington]
4628 * GDK
4629  - Work with XRender < 0.4 [Albert Chin, Billy Biggs]
4630  - Add API to warp the pointer [Matthias]
4631  - Support _NET_VIRTUAL_ROOTS [Carsten Haitzler]
4632  - Add API to obtain the last user interaction time [Elijah
4633    Newren]
4634  - Make some large arrays const [Ben Maurer, Tommi Komulainen]
4635  - Support Cairo drawing [Owen, Carl Worth]
4636  - Support Visuals with alpha channel [Owen, Keith Packard]
4637  - Support named cursors and cursor themes [Matthias]
4638 * gdk-pixbuf
4639  - Support saving BMP [Ivan Wong Yat Cheung]
4640  - Allow to specify compression level when saving
4641    in PNG format [Sven Neumann]
4642  - Add a way to construct animations from frames [Dom Lachowicz]
4643  - Accept BMP v4 [Matthias]
4644 * Win32 changes
4645  - Improve keyboard handling [Tor Lillqvist]
4646  - Improve clipboard handling [Ivan Wong]
4647  - Do delayed rendering for transferring images 
4648    through the clipboard [Ivan Wong]
4649  - Improve tablet handling [Robert Ã–gren]
4650  - Initialize input devices lazily [Robert Ã–gren]
4651  - Make big windows work on NT [Ivan Wong]
4652  - Implement dashed lines correctly [Ivan Wong, Hans Breuer]
4653  - Handle 16 color display mode [Tor] 
4654  - Support RGBA cursors [Tim Evans]
4655  - Fix DND on multi-monitor systems [Tor]
4656  - Use alternative button order [Tor]
4657  - Build fixes [Hans]
4658  - Bug fixes [Ivan Wong, Dave Neary, Daniel Atallah, Takuro Ashie, 
4659    Robert Ã–gren, Kevin Stange, Tim Evans]  
4660 * Other bug fixes [Alexander Hunziker, Alexander Larsson, Anders
4661   Carlsson, Andreas Volz, Arjan van de Ven, Billy Biggs, Chris Lee, 
4662   Christian Neumair, Christian Persch, Crispin Flowerday, Damon Chaplin, 
4663   David A. Knight, David Costanzo, Dennis Cranston, Diego Gonzalez, 
4664   Dom Lachowicz, Doug Morgan, Doug Quale, Elijah Newren, Fabricio Barros 
4665   Cabral, Federico, Felipe Heidrich, Felix Riemann, Frank Naumann, 
4666   Frederic Crozat, Gary Kramlich, Gustavo Carneiro, Hans-Wolfgang Loidl, 
4667   Havoc, Hazael Maldonado Torres, Ian Wienand, Ismael Juma, Jaap A. Haitsma, 
4668   Jacob Kroon, Jakub Jellinek, Jean Marie Favreau, Jeff Franks, Jens Finke, 
4669   Jim Evins, Joerg Sonnenberger, John Ellis, John Finlay, Jonathan, 
4670   Jorn Baayen, Kazuki Iwamoto, Kirk Bridger, Kjartan Maraas, Leonard 
4671   Michlmayr, Lorenzo Gil Sanchez, Manish Singh, Marc Meissner, Matthias, 
4672   Michael Natterer, Mikael Hallendal, Milosz Derezynski, Morten Welinder, 
4673   Murray Cumming, Nickolay V. Shmyrev, Niko Tyni, Nguyen Thai Ngoc Duy, 
4674   Olaf Vitters, Olivier Sessink, Owen, Paolo Borelli, Patrick Fimml, 
4675   Peter Bloomfield, Peter Wainwright, Phil Blundell, Philipp Langdale, 
4676   Priit Laes, Reinout van Schouwen, Remus Draica, Richard Hult, Robert 
4677   Staudinger, Rodney Dawes, Rodrigo Moya, Roman Kagan, Ryan Lortie, 
4678   Samuel Hym, Seven Walter, Søren, Stefan Kost, Stepan Kasal,
4679   Stephen Kennedy, Sven Neumann, Theerud Lawtrakul, Thomas Leonard,
4680   Thomas Zajic, Tim-Philipp Müller, Tomislav Jonjic, Tommi Komulainen,
4681   Torsten Schoenfeld, Tristan Van Berkom, Victor Osadci, Vincent Ladeuil, 
4682   Vincent Noel, Vincent Untz, Yury Puzis]
4683 * Documentation improvements [Alex Graveley, Ali Akcaagac, Bill
4684   Haneman, Billy Biggs, Christian Persch, Christian Rose, Dan Winship,
4685   George Kraft IV, Ghorban M. Tavakoly, Hubert Sokolowski, Jeff Franks,
4686   Jianfei Wang, Johan Dahlin, Jon-Kare Hellan, Karel Kulhavy, Ken
4687   Siersma, Maciej Katafiasz, Masao Mutoh, Mathias Hasselmann, Matthias,
4688   Michal Suchanek, Morten Welinder, Murray Cumming, Oliver Sessink, Owen, 
4689   Richard Hult, Roger Light, Sebastian Bacher, Steve Chaplin, Sven Neumann, 
4690   Torsten Schoenfeld, Vincent Untz, Worik Stanton]
4691 * New and improved translations (bg,ca,cs,cy,da,de,el,en_CA,en_GB,es,et,
4692   eu,fa,fi,hu,id,ja,nb,ne,nl,nn,no,pl,pt,pt_BR,ro,ru,rw,sk,sq,sr,sr@Latn,
4693   sv,th,uk,vi,xh,zh_CN,zh_TW)
4694
4695 Overview of Changes from GTK+ 2.6.0 to GTK+ 2.6.1
4696 =================================================
4697 * GtkFileChooser
4698  - Fix some possible threading deadlocks [Matthias Clasen]
4699  - Don't return errors from the private GTK_FILE_SYSTEM_ERROR
4700    domain [Murray Cumming]
4701  - Fix some crashes with unreadable directories [Federico Mena 
4702    Quintero]
4703  - Add an "Open Location" item to the context menu [Federico]
4704 * GtkTreeView
4705  - Make sorting work again in list stores [Marcin Krzyzanowski]
4706  - Restrict column reordering to button 1 [Jonathan Blandford]
4707 * GtkComboBox
4708  - Make the button prelight [Ricardo Veguilla]
4709  - Fix state propagation [Carlos Garnacho Parro]
4710 * GtkMessageDialog
4711  - Don't show secondary label until it is set [Christian Persch]
4712 * GtkMenu
4713  - Make items activate immediately on button release [Søren Sandmann]
4714  - Submenus inherit their cascading direction [Matthias]
4715 * gdk-pixbuf
4716  - Fix a possible threading deadlock when loading
4717    animations [Callum McKenzie]
4718  - Make Hyper interpolation work again [Dennis Nezic]
4719 * Win32
4720   - Improve handling of UNC paths [Tor Lillqvist]
4721   - Show the correct Desktop folder in the file chooser [Tor]
4722   - Bug fixes [Tor]
4723 * Bug fixes [Torsten Schoenfeld, Morten Welinder,
4724   Marcin, Seth Nickell, Jonathan, Owen Taylor, Søren, 
4725   Iñigo Serna, John Finlay, Zeeshan Ali, Robert Ã–gren,
4726   Billy Biggs, Brian Tarricone, Tor, Christian, Tristan 
4727   Van Berkom, Elijah Newren, Federico, James M. Cape,
4728   Matthias, Arnaud Charlet]
4729 * Documentation improvements [Masao Mutoh, Torsten,
4730   Billy, Alessio Dessi, David Bourguignon, Tommi Komulainen,
4731   Dave Bordoley, Robert Ancell, Kentaro Fukuchi, Matthias,
4732   Christian Biere, Jonathan, Tommi, Stefan Kost]
4733 * New and improved translations (cs,cy,da,de,en_CA,es,ja,lt,nl,sq,sv,zh_CN)
4734
4735 Overview of Changes from GTK+ 2.4.x to GTK+ 2.6.0
4736 =================================================
4737
4738 * New widgets
4739   - GtkIconView
4740   - GtkAboutDialog
4741   - GtkCellView 
4742   - GtkFileChooserButton
4743   - GtkMenuToolButton 
4744
4745 * New cell renderers
4746   - GtkCellRendererCombo 
4747   - GtkCellRendererProgress
4748
4749 * Changes in GtkFileChooser
4750   - Many tweaks to keynav and other behaviour
4751
4752 * Changes in GtkTreeView 
4753   - Hover selection
4754   - Hover expand
4755   - Separators 
4756   - Insensitive rows
4757   - Typeahead
4758
4759 * Changes in GtkComboBox
4760   - Allow trees in combo boxes
4761   - Hover selection
4762   - Hover expand
4763   - Separators 
4764   - Insensitive rows
4765   - Scrolling
4766
4767 * Changes in GtkLabel
4768   - Rotated text
4769   - Ellipsisation
4770   - Dnd from selectable labels
4771   - Selectable labels in the focus chain
4772   - Obey the Pango backspace-deletes-character attribute
4773
4774 * Changes in GtkTextView
4775   - Rotated text
4776   - Obey the Pango backspace-deletes-character attribute
4777
4778 * Changes in Clipboard/Selection/DND handling
4779   - Selection ownership change notification
4780   - API to handle text, image and file targets
4781   - Support text/plain target
4782   - Support clipboard persistence
4783   - Support xdnd v5
4784   - Reduce clipboard timeout to 30 seconds
4785
4786 * Theming
4787   - Follow icon theme specification for directory locations
4788   - Themed window icons
4789   - Themed images in GtkImage
4790   - Allow themes to displace focus rectangles on click
4791   - Various new stock icons
4792
4793 * Window Manager interaction
4794   - Support do-not-focus-on-map hint
4795   - Support _NET_WM_USER_TIME
4796
4797 * gdk-pixbuf:
4798   - License information for image loaders
4799   - Disable loaders
4800   - Simple rotation
4801   - Make thread-safe
4802
4803 * Performance improvements
4804   - Increase chunk size for incremental selection transfers
4805   - Get rid of many PLT entries
4806   - Icon theme caching
4807   - Sync counter mechanism to speed up resizes
4808   - Reimplement GtkListStore on top of a splay tree
4809   - Fix algorithmic problems in GtkUIManager
4810
4811 * Win32-specific changes
4812   - Integrate IME input method module
4813   - Integrate ms-windows (Wimp) theme engine
4814
4815 * Other changes
4816   - API for HIG-conform dialogs
4817   - API for stock-like buttons
4818   - New init API based on GOption
4819   - Setting for alternative button order
4820   - Setting for modules to load
4821   - Integrate pixbuf theme engine
4822   - Change notebook tabs with the scroll wheel
4823   - Ellipsisation in GtkCellRendererText, GtkProgressBar, GtkStatusbar
4824   - Clean up abi and enforce list of exported symbols
4825
4826 Overview of Changes from GTK+ 2.5.6 to GTK+ 2.6.0
4827 =================================================
4828 * GtkListStore
4829   - Emit rows_reordered if the list is reordered [Matthias Clasen]
4830   - Add functions to allow inserting rows with values [Matthias]
4831 * GtkTextView
4832   - Add function which allow to determine the character
4833     at a position [Padraig O'Briain, Matthias]
4834 * GtkFileChooser
4835   - Center select row during typeahead [Federico Mena Quintero]
4836   - Reset filters when necessary [Carlos Garnacho Parro]
4837 * GtkMenu
4838   - Make mnemonics without Alt work in menubars [Owen Taylor]
4839   - Scroll wheel scrolling [Matthias]
4840 * GtkLabel
4841   - Add a max-width-chars property to specify the maximal 
4842     width of a label in characters [Christian Persch]
4843 * GtkIconView 
4844   - Arrange items in a grid [Matthias]
4845   - Convert hard coded spacing constants into properties [Matthias]
4846 * GtkCellRendererText
4847   - Add ::width-chars property [James M. Cape]
4848 * Win32
4849   - Implement keynav for the color picker [Hans Breuer]
4850   - Use GLib stdio wrappers [Tor Lillqvist]
4851 * Bug fixes [Kazuki IWAMOTO, Damon Chaplin, Matthias, Christian, 
4852   Michael Natterer, Jonathan Blandford, Manish Singh, John Finlay, 
4853   Robert Ã–gren, Mariano Suárez-Alvarez, Marco Pesenti Gritti,
4854   Tommi Komulainen, R. McFarland, Alexander Larsson, Dennis Cranston,
4855   Jorn Baayen]
4856 * Documentation improvements [Matthias, Jay Camp, Paolo Borelli,
4857   David Lodge]
4858 * New and improved translations (bg,nb,no,nso,pt_BR,zh_CN)
4859
4860 Overview of Changes from GTK+ 2.5.5 to GTK+ 2.5.6
4861 =================================================
4862 * GtkFileChooser
4863   - Improve key bindings [Davyd Madeley, Federico Mena Quintero]
4864   - Speed up loading of large directories [Federico]
4865   - Move "Browse for other folders" expander up [Federico]
4866   - Support DND from the path bar [Federico]
4867 * GtkColorSelectionDialog
4868   - Add keynav to the color picker [Frances Keenan, Matthias Clasen]
4869 * GtkButton
4870   - Allow construction of stock-like buttons  [Matthias,
4871     Jonathan Blandford]
4872 * GtkLabel
4873   - Support DND for selectable labels [Matthias]
4874   - Support rotated text [Owen Taylor, Hans Breuer]
4875 * GtkTextView
4876   - Support rotated text [Owen Taylor]
4877   - Make it possible to select the first/last line
4878     when moving by lines  [Paolo Borelli]
4879 * GtkTreeView
4880   - Make sorting of GtkListStore stable again [Søren Sandmann]
4881   - Change the behaviour of gtk_tree_sortable_get_sort_column_id() 
4882     slightly to be more useful [Matthias]
4883 * GtkUIManager
4884   - Make some functions virtual to make deriving 
4885     GtkUIManager easier [Michael Natterer]
4886 * GtkSettings
4887   - Handle changes to gtk-menu-images and gtk-button-images
4888     much more efficiently [Matthias]
4889 * GtkClipboard
4890   - Reduce timeout to 30 seconds [Billy Biggs]
4891 * Add pixbuf theme engine [Owen]
4892 * GDK 
4893   - Compile against X11R5 [Matthias]  
4894   - Add GdkPangoRenderer [Owen]
4895   - Support rotated text [Owen]
4896   - Add dead_hook and dead_horn keysyms [Samuel Thibault]
4897   - Determine direction of XKB groups from their content 
4898     [Behdad Esfahbod, Ilya Konstantinov]
4899 * Win32
4900   - Notice when drives are plugged in or removed [Hans]
4901   - Ms-windows theme improvements: no tearoff menu items,
4902     button order, toolbar and statusbar grips, combobox 
4903     arrows [Dom Lachowicz]
4904   - Fix im module loading [Tor Lillqvist]
4905 * Bug fixes [Vasco Alexandre da Silva Costa, Kazuki IWAMOTO,
4906   Erwann Chenede, Tim Janik, Gavin Romig-Koch, Jonathan,
4907   Manish Singh, Morten Welinder, Billy Biggs, Matthias, Owen,
4908   John Finlay, Christian Neumair, Sven Neumann, Felipe
4909   Heidrich, Martin Jeppensen, Kristian Høgsberg, Olivier 
4910   Andrieu, Jody Goldberg, Søren, Dan Winship, Federico,
4911   Alex Larsson, James Henstridge, James M. Cape, Frederic Crozat,
4912   Dennis Cranston, Marcel Telka, Robert Ã–gren]
4913 * Documentation improvements [Matthias, Jonathan, Owen, Masao Mutoh,
4914   Billy Biggs]
4915 * New and updated translations (bg,ca,cs,da,de,en_CA,en_GB,es,hu,ja,nb,nso,rw,sq,zh_CN)
4916
4917 Overview of Changes from GTK+ 2.5.4 to GTK+ 2.5.5
4918 =================================================
4919 * gdk-pixbuf
4920   - Make thread safe [Colin Walters]
4921 * GtkFileChooser
4922   - Make tooltips work better [Matthias Clasen]
4923   - Show files (grayed out) in folder modes [Nickolay V. Shmyrev]
4924   - Add predefined filter for image files [Anders Carlsson]
4925   - Support mime subclasses, aliases and superclasses 
4926     like text/* [Tommi Komulainen, David A. Knight, Matthias]
4927 * GtkFileChooserButton
4928   - Remove support for CREATE_FOLDER and SAVE modes 
4929     until a more satisfactory UI for these can be found [Seth Nickell,
4930     Matthias]
4931   - Make file DND work better [Christan Persch]
4932 * GtkAction
4933   - Add a function to obtain the accel path [Michael Natterer]
4934 * GtkUIManager
4935   - Major performance improvement [Dave Neary, Michael, 
4936     Sven Neumann, Soeren Sandmann, Matthias]
4937 * GtkIconView
4938   - Make scrolling work with large icon views [Matthias]
4939 * GtkWindow
4940   - As a last resort, allow to use mnemonics without 
4941     modifier [Pasupathi Duraisamy, Owen Taylor]
4942 * GtkProgressBar
4943   - Support ellipsizing the text [Morten Welinder, Matthias]
4944 * GtkStatusbar
4945   - Avoid resizing if the text of the label changes [He Qiangqiang,
4946     Owen, Christian]
4947   - Draw the resize grip better [Matthias, Christian]
4948   - Ellipsize the text [Matthias]
4949 * GtkClipboard
4950   - Add API for image transfer via copy-and-paste [Matthias]
4951 * DND
4952   - Fix DND to embedded windows (e.g. panel applets) [James Henstridge, 
4953     Matthias]
4954 * Stock icons
4955   - Add RTL variants of the media icons [Bastien Nocera]
4956 * Win32
4957   - Build fixes [Hans Breuer, Tor Lillqvist]
4958   - Implement resize grips [Robert Ã–gren]
4959   - Bug fixes [Robert, Tor, J. Ali Harlow]
4960 * Bug fixes [Paolo Borelli, Kjartan Maraas, Olivier Andrieu,
4961   Torsten Schoenfeld, Matthias, Philip Langdale, Christian,
4962   Frances Keenan, Owen, Murray Cumming, Christophe Fergeau,
4963   Tristan Van Berkom, Adam Hooper, James M. Cape, Carlos Garnacho
4964   Parro, Mariano Suárez-Alvarez, John Finlay, Jonathan Blandford]      
4965 * Documentation improvements [Masao Mutoh, Matthias, 
4966   Torsten Schoenfeld, Matthew H. Plough, Salvador Fandiño, 
4967   Owen, Vincent Untz, Jonathan, Bastien]
4968 * Updated translations (cs,da,en_CA,es,hu,ja,nl,sq)
4969
4970 Overview of Changes from GTK+ 2.5.3 to GTK+ 2.5.4
4971 =================================================
4972 * GtkFileChooser
4973  - Make path bar arrows larger [Matthias Clasen]
4974  - Make SELECT_FOLDER mode work [Matthias]
4975  - Speed up the completion popup, pop it up
4976    again after Tab [Matthias, Jens Bech Madsen]
4977  - Add some tooltips [Matthias]
4978  - Make path bar scroll [Matthias]
4979  - Improve preview updating [Tommi Komulainen]
4980  - Make the key / pop up the location dialog even
4981    on French keyboards, insert the /. [Frederic Crozat, Warren Togami]
4982 * GtkFileChooserButton
4983  - Show icons next to entry [James M. Cape]
4984  - Improve ellipsisation [James]
4985 * GtkMessageDialog
4986  - API additions to create HIG-conform dialogs [David Bordoley, Carlos
4987    Garnacho Parro]
4988 * Keyboard navigation
4989  - Put selectable labels in the regular tab focus 
4990   chain [David Hawthorne, Matthias]
4991  - Skip selectable labels when looking for the initial 
4992   focus widget in dialogs [Matthias]
4993 * Icon themes:
4994  - Use an mmap()ed cache for directory data. [Martijn Vernooij,
4995    Owen Taylor, Anders Carlsson]
4996 * Clipboard, DND: 
4997  - Add convenience API for image and file transfers. [Matthias]
4998  - Add API for clipboard persistence [Anders]
4999  - Don't loose clipboard contents if a text buffer is
5000    finalized [Anders]
5001 * Add a GtkMenuToolButton widget which displays a
5002  dropdown menu from a toolbar button.  [Paolo Borelli]
5003 * Make menus scroll faster [Soeren Sandmann]
5004 * Allow themes to displace focus rectangles in buttons
5005  on click [Soeren, Matthias]
5006 * Add a public setting for button ordering [Owen Taylor, Matthias]
5007 * GtkImage
5008  - Support named icons [James Henstridge]
5009 * GtkAboutDialog
5010  - Support named icons [James Henstridge]
5011 * Add a function to obtain the string representation of
5012  accelerators used in GtkAccelLabel [John Spray, Matthias]
5013 * Win32 bug fixes [Robert Ã–gren]
5014  - Fix command line option handling [Tor Lillqvist]
5015  - Make IME input method work better [Tor]
5016 * Other bug fixes [Joel Fredrikson, Darren Creutz,
5017  Manish Singh, Matthias, Tristan Van Berkom, Christian Persch,
5018  Padraig O'Briain, Owen, Jonathan Blandford, 
5019  Michèle Garoche, Milosz Derezynski, Christopher Blizzard,
5020  Paolo, John Austin, Maryn Russell, Ken Harris, Reinout van 
5021  Schouwen, Morten Welinder, Ross Burton, Bernd Demian, Gustavo 
5022  Carneiro, John Finlay, Tim Janik, Damon Chaplin,
5023  Peter Zelesny, Soeren, John Cupitt, Federico Mena Quintero,
5024  Manuel Baena García, William Jon McCann, Olexiy Avramchenko,
5025  Sebastien Bacher, Kazuki IWAMOTO, Dan Williams, Vincent Noel,
5026  Billy Biggs, Olivier Andrieu, Thomas Fitzsimmons]
5027 * Documentation improvements [John Finlay, Billy Biggs, Matthias,
5028  Martyn Russell, Dave Cook, Jonathan, Owen, Shaun McCance, Anders]
5029 * New and updated translations (az_IR,cs,en_CA,en_GB,es,nb,nl,no,pt_BR,
5030   sq,sr,sr@Latn,zh_TW)
5031
5032 Overview of Changes from GTK+ 2.5.2 to GTK+ 2.5.3
5033 =================================================
5034 * GtkFileChooser
5035  - Work better with older version of the gnome-vfs backend [Zack Cerza]
5036  - Keynav improvements [Jonathan Blandford]
5037  - Make position of pathbar down button stable [Jonathan]
5038  - Make autocompletion less annoying in save mode [Owen Taylor]
5039 * GtkFileChooserButton
5040  - Allow mnemonic activation [Dennis Cranston, James M. Cape]
5041 * GtkComboBox
5042  - Work without a model [Mariano Suarez-Alvarez
5043 * GtkTreeView
5044  - Allow sorting of tree models to be turned off [Torsten Schoenfeld]
5045 * GtkRange
5046  - Add a::change-value signal [Thomas Fitzsimmons]
5047 * GtkEntryCompletion
5048  - Improve positioning of popups [Matthias]
5049 * Make input methods respect editability [Noah Levitt]
5050 * Add an setting to specify modules to load [Alex Graveley]
5051 * Use GOption for command line argument parsing [Anders Carlsson]
5052 * Default theme
5053  - Improve drawing of expanders [Matthias Clasen]
5054 * Add a configure option to disable the use of ELF visibility 
5055   attributes for PLT reduction
5056 * Make selection handling robust against invalid UTF-8 [Owen]
5057 * gdk-pixbuf
5058  - Add a variant of gdk_pixbuf_new_from_file_at_size() which 
5059    optionally ignores aspect ratio [Dom Lachowicz]
5060  - Fix saving of pixbufs with alpha-channel as jpeg [Emmanuel Pacaud]
5061  - Security fixes [Chris Evans]
5062 * Win32
5063  - Improve tablet handling [Robert Ã–gren]
5064  - Make tablets work on multi-monitor systems [Robert]
5065  - Handle screen resolution changes [Arjohn Kampman, Tor Lillqvist]
5066  - Add IME input method [Takuro Ashie, Kazuki IWAMOTO]
5067  - Add ms-windows (Wimp) theme engine [Raymond Penners, Dom Lachowicz,
5068    Havoc Pennington]
5069  - Fix loading of input modules on Win32 [Kazuki IWAMOTO]
5070  - Build fixes [Tor Lillqvist, Robert]
5071 * Other bug fixes [Hans Petter Jonsson, Tim Janik, Manish Singh,
5072  Soeren Sandmann, Bill Haneman, Padraig O'Briain, Olexi Avramchenko,
5073  Jonathan, Frederic Croszat, Matthias, Christian Persch, Felipe Heidrich,
5074  Lorenzo Gil Sanchez, Richard Hoelscher, Owen, Olivier Andrieu,
5075  Morten Welinder, Jean Bréfort, Alexander Larsson]
5076 * Documentation improvements [Matthias, Jonathan]
5077 * New and updated translations (ang,ar,en_CA,es,ne,pt_BR,ro,ru,uk)
5078
5079 Overview of Changes from GTK+ 2.5.1 to GTK+ 2.5.2
5080 =================================================
5081 * GtkFileChooserButton
5082  - New widget to go along with GtkFontButton and GtkColorButton
5083    for use in preference dialogs.  [James M. Cape]
5084 * GtkFileChooser
5085  - Add getter and setter for the ::show-hidden property [Jeff Franks]
5086  - Allow paths to be entered as part of the file name. [Federico Mena Quintero]
5087  - Make separator in bookmarks pane unselectable [Matthias Clasen]
5088  - Improve activation on focus [Federico]
5089  - Avoid warnings when opened on non-default screens [Abel Daniel]
5090  - Fix some memory leaks [Federico]
5091 * GtkEntryCompletion
5092  - Warn if text column has wrong type [Fernando San Martin Woerner,
5093    Gustavo Carneiro]
5094 * GtkTextView
5095  - Obey the Pango backspace_deletes_character 
5096    attribute [Noah Levitt, Teppitak Karoonboonyanan]
5097 * GtkTreeView
5098  - Add hover-expand mode [Matthias]
5099  - Fix fixed height mode [Michael Vogt, Tim-Philipp Müller, Pawel Salek]
5100  - Reimplement GtkListStore on top of a splay tree [Soeren Sandmann]
5101 * GtkEntry
5102  - Track the selection more accurately when dragging and
5103    selecting [Soeren]
5104 * GtkComboBox
5105  - Support trees in combo boxes [Matt Walton, Matthias]
5106  - Optimize non-spanning gridded layouts [Lorenzo Gil Sanchez, Matthias]
5107  - Handle sensitivity changes properly [Matthias]
5108  - Add a ::focus-on-click property [Matthias]
5109 * GtkIconView
5110  - Fix BROWSE selection mode [Matthias]
5111  - Make accessible [Padraig O'Briain]
5112 * GtkAboutDialog 
5113  - Change the API to be more binding-friendly [Oliver Andrieu]
5114 * GtkUIManager
5115  - Accept paths with leading '/' everywhere. [David Malcolm]
5116  - Make GtkActionEntry* arguments const [Mariano Suarez-Alvarez]
5117  - Add a way to suppress overflow menu items [Christian Persch]
5118 * GtkPlug/GtkSocket
5119  - Use the sync counter mechanism to speed up resizes  [Soeren]
5120 * GDK
5121  - Support XDND v5 [Owen Taylor, Matthias]
5122  - Complete the _NEW_WM_USER_TIME implementation [Elijah Newren]
5123  - Update the _NET_ACTIVE_WINDOW implementation [Elijah]
5124 * gdk-pixbuf
5125  - Avoid infinite loops for bad BMPs [Chris Evans, Manish Singh]
5126  - Fix a problem with GDK_INTERP_NEAREST scaling which caused
5127    Nautilus thumbnails to be misdrawn [Christoph Fergeau]
5128  - Avoid segfaults in gdk-pixbuf-csource [Matthias]
5129  - Fix progressive loading of 8bit pcx files [Magnus Bergman]
5130  - Handle edge pixels consistently [Brian Cameron, Matthias]
5131  - Handle OS/2 BMPs [Jon-Kare Hellan]
5132 * Performance 
5133  - Get rid of many PLT entries for internally used exported symbols,
5134    and clean up the ABI at the same time and make make check check the
5135    list of exported symbols.  [Arjan van de Ven, Matthias]
5136 * Look up icon themes in the directories specified in the
5137   icon theme spec  [Matthias]
5138 * Win32 bug fixes [Robert Ã–gren, Hans Breuer, Tor Lillqvist, Tim Evans]
5139 * Other bug fixes [Matthias, Soeren, Pawel, David, Tor, Gustavo,
5140   Olivier, Manish, Robert, Christian Biere, Markku Vire, Markus Lausser, 
5141   Thomas Leonard, Morten Welinder, Torsten Schoenfeld, Tim Janik, 
5142   Tomislav Jonjic, Tommi Komulainen, Philip Langdale, Rich Wareham,
5143   Christian Persch, Vincent Noel, Christophe Fergeau]
5144 * Documentation improvements [Matthias, Mariano, Axel Simon, 
5145   Jonathan Blandford]
5146 * New and updated translations (ang,br,bs,eu,lt,wa,zh_CN)
5147
5148 Overview of Changes from GTK+ 2.5.0 to GTK+ 2.5.1
5149 =================================================
5150 * GtkTreeView
5151  - Support ellipsisation in GtkCellRendererText [Vincent Untz, 
5152   Jonathan Blandford, Anders Carlsson]
5153  - Add a GtkCellRenderer::editing-started signal [Matthias Clasen]
5154  - Typeahead support [Jonathan]
5155  - Align the entry in GtkCellRendererText [Matthias]
5156  - Make DND work again [Ernst Persson, Matthias]
5157  - Improve appearance of search popup [Matthias]
5158 * GtkFileChooser
5159  - Activate the last focused widget [Federico Mena Quintero]
5160  - Add an "Add to shortcuts" item to the context menu [Federico]
5161 * GtkCombobox
5162  - Support scrolling in list mode [Matthias]
5163  - Add necessary API to make GtkComboBox accessible [Padraig O'Briain]
5164  - Change the API for separators to use a callback function 
5165    instead of a boolean model column [Matthias]
5166 * GtkNotebook
5167  - Ignore scroll events from page content [Gabriel de Perthuis]
5168 * GtkAboutDialog
5169  - Visual improvements [Anders]
5170 * GtkIconView
5171  - Use XRender to draw selection rectangle [Anders]
5172 * GtkLabel
5173  - Support ellipsisation [Tim Van Wassenhove, James M. Cape]
5174 * Expose the menubar accel key as an XSetting [Scott James Remnant]
5175 * Add example code for clipboard handling to gtk-demo [Anders]
5176 * Bug fixes [Peter Zelesny, Guilherme Salgado, John Finlay, 
5177  Tommi Komulainen, Matthias, Crispin Flowerday, Padraig,
5178  Morten Welinder, Olivier Sessink, Dafydd Harries, Soeren Sandmann,
5179  Michael Natterer, Nicolas Deves, Matthew Garrett, Lorenzo Gil Sanchez]
5180 * Documentation improvements [Federico, Matthias]
5181 * Updated translations (gu,hi,pt_BR,ru,sv,uz)
5182
5183 Overview of Changes from GTK+ 2.4.1 to GTK+ 2.5.0
5184 =================================================
5185 * New widgets: 
5186  - GtkIconView [Anders Carlsson]
5187  - GtkAboutDialog [Matthias Clasen]
5188  - GtkCellView [Matthias]
5189 * GtkFileChooser
5190  - change to newly-created folders [Federico Mena Quintero]
5191  - always show icons [Federico]
5192  - bug fixes [Federico, Christian Neumair, Alex Roitman]
5193 * GtkComboBox, GtkComboBoxEntry
5194  - add missing getters and some more convenience API [Matthias, 
5195   Christian Neumeir, Oliver Andrieu]
5196  - improve placement and sizing of popups [Matthias]
5197  - support insensitive items [Matthias]
5198  - support separators [Matthias]
5199  - handle empty or unset models better [Mariano Suarez-Alvarez]
5200  - bug fixes [Matthias, Jonathan Blandford, Oliver Andrieu, Paul 
5201    Pongonyshev, Christian Persch]
5202 * GtkEntryCompletion
5203  - ignore enter events when the window pops up under the 
5204    pointer [Anders]
5205  - bug fixes [Matthias]
5206  - support inline autocompletion [Matthias]
5207 * GtkUIManager
5208  - fix signal registration [Michael Natterer]
5209  - make generated XML parsable [Sven Neumann]
5210  - fix get_widget to return menus [Matthias]
5211 * GtkTreeView
5212  - hover-selection mode [Matthias]
5213  - support insensitive cells [Matthias]
5214  - support separators [Matthias]
5215  - make entry context menu work in editable text cells [Owen Taylor, 
5216   Kristian Rietveld]
5217  - make DND work with treeviews in modal dialogs [Federico]
5218  - make empty treeviews focusable [Federico]
5219  - new GtkCellRendererProgress [Matthias, Tommi Komulainen, 
5220   Christian Persch]
5221  - new GtkCellRendererCombo [Matthias]
5222  - bug fixes [Matthias, Federico]
5223 * GtkNotebook
5224  - allow to change tabs with the mouse wheel [Gabriel de Perthuis]
5225 * GtkWindow
5226  - support named themed window icons [Matthias, Calum Benson]
5227 * New stock icons: file, directory, about, edit, connect, disconnect,
5228   and media player icons for forward, next, pause, play, previous,
5229   record, rewind and stop
5230 * GDK
5231  - support do-not-focus-on-map hint [Elijah Newren]
5232  - fix RGBA cursors [Michael Natterer]
5233 * gdk-pixbuf
5234  - reorganize headers [Matthias, Jeff Franks, Havoc Pennington]
5235  - flag to mark loaded images as scalable [Dom Lachowicz]
5236  - license information for loaders [Matthias]
5237  - simple multiple-of-90° rotation support [Matthias]
5238  - allow to disable loaders [Matthias]
5239  - bug fixes [Kouichirou Hiratsuka, Sven, Brian Cameron,
5240   Manish Singh, Morten Welinder]
5241 * X11 selections 
5242  - make incremental transfer of MULTIPLE work [Matthias]
5243  - don't do incremental transfer in 4k chunks [Matthias]
5244  - add selection ownership change notification [Matthias]
5245  - support text/plain targets [Matthias]
5246 * Win32 
5247  - bug fixes [Hans Breuer, John Ehresman, Tor Lillqvist, 
5248   Robert Ã–gren, Benoît Carpentier, J. Ali Harlow, Laurent Sansonetti]
5249 * Performance improvements
5250  - predict exposes for override-redirect windows [Søren Sandmann]
5251  - unset the background when mapping or unmapping windows [Søren]
5252  - support the update counter spec for smoother resizing [Søren]
5253 * Misc bug fixes [Matthias, Owen, Søren, Anders, Padraig O'Briain, 
5254   Crispin Flowerday, Michal Pasternak, Scott Tsai, Morten,
5255   Michael Natterer, Dmd Ljungmark, Sven, Billy Biggs, 
5256   Mark McLoughlin, Sam Stephenson, John Finlay, David Hawthorne, 
5257   Kent Sandvik, Davyd Madeley, Alexander Winston, Jean-François Wauthy, 
5258   Jeff Franks, Philip Kendall, Baris Cicek Yevgen Muntyan, 
5259   Bastien Nocera, Tim Janik, John Ehresman, Theppitak Karoonboonyanan, 
5260   Nickolay V. Shmyrev, William Jon McCann, Paolo Maggi, Lorenzo Gil 
5261   Sanchez, Jan-Marek Glogowski, Pawel Salek, Felipe Heidrich, Dmitry 
5262   M. Shatrov, Alex Larsson, Michael Hallendal, Scott Bronson, Kjartan 
5263   Maraas, Damien Carbery, Elke Meier]
5264 * Doc improvements [Matthias, Federico, Owen, Steve Chaplin, Tommi 
5265   Komulainen, Bastien Nocera, Billy Biggs, Sampo Nurmentaus, Steffen 
5266   Röcker, Doug Quale, Oliver Andrieu]
5267 * Updated translations (bg,lt,ne,tk,wa,en_GB)
5268
5269
5270 Overview of Changes from GTK+ 2.4.0 to GTK+ 2.4.1
5271 =================================================
5272 * GtkFileChooser
5273  - bug fixes [Morten Welinder, Federico Mena Quintero]
5274  - pre-fill the location entry [Federico]
5275  - internal api changes to allow setting a busy cursor
5276    while loading [Federico]
5277  - improve pathbar button sizing [Owen Taylor]
5278  - add keybindings for removing bookmarks [Federico]
5279 * GtkComboBox, GtkEntryCompletion
5280  - fix repositioning logic [Niklas Knutsson]
5281  - make keynav wrap around [Matthias]
5282  - improve theme compliance [Matthias, Brian Cameron]
5283 * GtkUIManager
5284  - accept unnamed <separator>s [Anders Carlsson]
5285  - robustify against gtk_widget_show_all() [Murray Cumming]
5286  - warn if an accelerator cannot be parsed  [Jody Goldberg]
5287 * Win32
5288  - fix DND positioning [Hans Breuer]
5289  - update gtkfilesystemwin32 [Tor Lillqvist, J. Ali Harlow]
5290  - make filechooser work on Windows [Tor]
5291  - draw arcs more correctly [Tor]
5292  - disable tables support by support, add --use-wintab to
5293    get it back  [Tor]
5294 * Make color wheel accessible [Padraig O'Briain]
5295 * Support _NET_WM_USER_TIME [Elijah Newren, Soeren Sandmann]
5296 * Doc improvements [Federico, Matthias, Christian Persch]
5297   Olexiy Avramchenko, Tim-Philipp Müller]
5298 * Misc bug fixes [Alex Converse, Owen, Jacques Garrigue,
5299   Jonathan Blandford, Anders Carlsson, Christian, Hans,
5300   Matthias, Morten, Philip Langdale, Brian, Pedro Rodriguez,
5301   Soeren, Torsten Schoenfield, Dongho Shin, Andrew E. Makeev,
5302   Todd Goyen, Tim Gerla, John Finlay, Theppitak Karoonboonyanan,
5303   John Ehresman, Chris Sherlock, Jody]
5304 * Updated translations (af,ar,az,bn,br,ca,cs,cy,da,de,el,en_CA,
5305   en_GB,es,et,eu,fi,fr,ga,gu,he,hr,hu,id,is,it,ja,ko,lt,mi,ml,
5306   mn,mr,ms,ne,nl,nn,no,pa,pl,pt,pt_BR,sk,ru,sq,sr,sr@ije,sr@Latn,
5307   sv,tr,uk,uz,wa,zh_CN)
5308
5309 Overview of Changes from GTK+ 2.3.6 to GTK+ 2.4.0
5310 =================================================
5311 * GtkFileChooser
5312  - Handle icon theme changes [Federico, Jonathan]
5313  - Add reordering bookmarks via DND [Federico]
5314  - Cache filesystem data inside GtkFileSystemUnix backend [Morten Welinder]
5315  - Implement local-only mode so that apps don't get remote paths
5316    they don't expect [Owen Taylor]
5317  - Add Alt-Down keybinding [Mark McLoughlin, Owen]
5318  - Major rewrite of location dialog completion code [Jonathan]
5319  - Bug fixes [Federico, Jonathan, Morten, Mark, Owen, Anders Carlsson, 
5320    Soeren Sandmann, Olivier Andrieu]
5321 * GtkComboBox [Matthias Clasen]
5322  - Handle the case of no-active-row properly
5323  - Improve positioning of popup
5324  - Miscellaneous bug fixes
5325 * Win32 [Tor]
5326  - Handle different install locations for gdk-pixbuf loaders
5327  - Bug fixes [John Ehresman, Bruce Hochstetler, Dave Neary]
5328 * Improve handling of foreign GdkWindows on destruction [Soeren, Owen]
5329 * Require Control-Tab to focus labels [Owen]
5330 * RTL flipping for GtkArrow [Semion Chichelnitsky]
5331 * Support justifcation with wrapping off in GtkTextView [Owen, Felipe Heidrich]
5332 * Change layout algorithm for mixed gridded/non-gridded menus
5333   to fix performance problems [Soeren, Owen, Christian Persch]
5334 * Doc improvements [Matthias, Owen]
5335 * Misc bug fixes
5336 * Updated translations (ar,az,ca,cs,da,de,es,fr,ga,hr,it,ja,lt,no,nl,pt,ro,
5337   ru,sq,uk,zh_CN)
5338
5339 Other contributors: Dave Bordoley, Hans Breuer, David L. Cooper II, 
5340   Dennis Cranston, Dov Grobgeld, Niklas Knuttson, Kjartan Maraas, 
5341   Michael Natterer, Nils O. SelÃ¥sdal, Philip K Warren, Dan Winship
5342
5343 Overview of Changes from GTK+ 2.3.5 to GTK+ 2.3.6
5344 =================================================
5345 * GtkComboBox
5346  - Make menu positioning more like GtkOptionMenu [Matthias Clasen]
5347  - Improve keybindings [Matthias]
5348  - Bug fixes [Matthias, Owen, Damon Chaplin]
5349 * GtkFileChooser
5350  - Keep child directories in pathbar when changing to a parent
5351  - Reroot pathbar inside home directory, use icons [Jonathan]
5352  - Make the user actually select a file before hitting OK [Federico]
5353  - Fix folder mode to not have tree [Jonathan]
5354  - Add gboolean return values to operations that can fail [Federico]
5355  - Improve internal error handling [Morten Welinder, Federico]
5356  - Bug fixes [Federico, Jonathan, Morten, Anders Carlsson, Damon,
5357    Alex Larsson]
5358 * GtkTextView bug fixes [Paolo Borelli]
5359 * Win32 
5360  - Implement/stub missing GDK functions [Tor]
5361  - .defs file updates [Tor, J Ali Harlow]
5362  - Misc fixes [Hans Breuer]
5363 * Fix problem with excess symbol exports on Linux [James Henstridge]
5364 * Fix problem with 32-bit BMPs [Matthias]
5365 * Include config.h first everywhere [Morten]
5366 * Fix performance problem destroying menus [Soeren, Marco Pesenti Gritti]
5367 * Doc fixes and improvements [Matthias, Murray Cumming, Henning Nielsen Lund, 
5368   Vitaly Tishkov]
5369 * Updated translations (az,cs,cy,da,de,el,en_CA,es,fi,fr,ga,hu,ja,ko,lt,mn,
5370   nl,no,pl,pt,sq,sr,sr@ije,sr@Latn,sv,th,zh_CN)
5371 * Misc bug fixes
5372
5373 Other contributors: Crispin Flowerday, Mark McLoughlin, Michael Meeks, 
5374   Michael Natterer,Christian Neumair, Padraig O'Briain, Geoff Reedy, 
5375   Olivier Ripoll
5376
5377 Overview of Changes from GTK+ 2.3.4 to GTK+ 2.3.5
5378 =================================================
5379 * GtkFileChooser [Federico Mena Quintero]:
5380  - Enable DND in the shortcuts list [Federico]
5381  - More folder modes [Jonathan R Blandford]
5382  - Resizing toplevel as contents change [Jonathan] 
5383  - Make the backend settable via GtkSetting [Alex Larsson, Owen Taylor]
5384  - Miscellaneous fixes.  [Jonathan, Morten Welinder, Alexander Larsson]
5385  - Add combo box to pick folder in Save mode. [Jonathan, Federico]
5386 * GtkComboBox
5387  - Memory leak/crash fixes [Damon Chaplin, Matthias Clasen]
5388  - Always grab when popping the list up [Damon, Matthias]
5389  - Fixes for dynamic changes to the model [Owen]
5390  - Improve popup positioning [Matthias]
5391 * Implement computation of bidi-base direction from text
5392   in GtkEntry, GtkTextView, GtkLabel [Dov Grobgeld, Owen Taylor]
5393 * Add gtk_entry_set_alignment() [Egon Andersen, Steffen Gutmann,
5394   Owen]
5395 * Fix wrong interpretation of new_order array for
5396   gtk_tree/list_store_reorder() [Owen]
5397 * Improve space allocation in menubars [Soeren Sandmann]
5398 * Improve key bindings in GtkEntryCompletion [Matthias]
5399 * Hide XCursor dependency [Soeren]
5400 * Make mouse wheel scrolling usable [Soeren]
5401 * Use resize cursors for resize grips [Soeren]
5402 * Set the right window group for menu and combo popups [Frederic Crozat,
5403   Jean-Philippe Chancelier, Soeren]
5404 * Add a way to list the mnemonic labels of a widget [Owen]
5405 * Add a group-changed signal to GtkRadioButton [Owen, Padraig O'Briain]
5406 * Export insertion cursor drawing functionality [Alexander Larsson, Owen]
5407 * Support squiggly red underlines in text views [Nicolas Setton, Owen]
5408 * Export GtkWindow key-press-event internals to allow 
5409   custom implementations [Tim Janik]
5410 * Add gtk_drag_source_set/get_target_list() [Mitch Natterer]
5411 * Fix drag-and-drop in GtkTextView to move [Paolo Borelli, Paolo Maggi]
5412 * Memory leak fixes [Owen]
5413 * Win32 fixes [Hans Breuer]
5414 * Misc. fixes [George Bronnikov, Simon Budig, J. Ali Harlow, David Hawthorne, Tim,
5415   Tomasz Lloczko, Mitch, Manish Singh, Owen]
5416 * Documentation improvements [Matthias, Federico, Torsten Schoenfeld]
5417 * Updated translations (ar,cs,da,de,en_CA,es,et,fi,fr,it,ja,ko,nl,pt,ru,sr,sr@ije,
5418   sr@Latn,sq,sv,th,zh_CN)
5419
5420 Overview of Changes from GTK+ 2.3.3 to GTK+ 2.3.4
5421 =================================================
5422 * Fix broken gtk_binary_age setting causing wrong soname [Owen Taylor]
5423 * Add some extra GtkExpander docs [Federico Mena Quintero]
5424 * Misc bug fixes [Matthias Clasen, Damon Chaplin, Owen, Uwe Zeisberger]
5425 * Updated translation (ga)
5426
5427 Overview of Changes from GTK+ 2.3.2 to GTK+ 2.3.3
5428 =================================================
5429 * GtkFileChooser [Federico Mena Quintero]:
5430  - Support bookmarks in GtkFileSystemUnix. [Jan Arne Petersen]
5431  - Correctly handle typed-in filenames in save mode, folder mode, and
5432    multiple-selection mode in all combinations.
5433  - Don't erase the filename in the entry when changing folders.
5434  - Support icons in GtkFileSystemUnix.
5435  - GtkFileChooserDialog now comes up at a reasonable size.
5436  - GtkFileSystemUnix now notifies correctly on ::create_folder().
5437  - Slight GUI reorganization.
5438  - File system module support. [Alexander Larsson]
5439  - Pathbar widget. [Jonathan R. Blandford]
5440  - Miscellaneous fixes. [Christian Persch, Jan Arne Petersen, Anders Carlsson,
5441    Padraig O'Briain, Alexander, Jonathan]
5442  - Win32 fixes, GtkFileSystemWin32 work. [Hans Breuer]
5443  - Memory leak fixes [Morten Welinder]
5444 * GtkTreeView:
5445  - Fix return values. [Federico, R. McFarland]
5446  - Properly cancel the arrow animation. [Michael Zucchi]
5447  - Allow custom icon sizes in pixbuf cell renderer. [Erik Grinaker]
5448  - Don't darken the sort column unless there are three visible columns
5449    [Jonathan]
5450 * GtkToolbar:
5451  - Improve the sliding implementation. [Soeren Sandmann]
5452  - Add writeonly ::group property to GtkRadioToolButton. [Soeren, 
5453    Olivier Andrieu]
5454  - Misc fixes. [Morten, Jeroen Zwartepoorte, Michel Meeks, Soeren]
5455 * Menus:
5456  - Make menus work better on Xinerama [Matthias]
5457  - Fix keynav in RTL mode. [Matthias]
5458  - Fix grid mode, removing of items. [Matthias, Vincent Noel]
5459  - Make tearoff menu items work anywhere in menus. [Matthias]
5460  - Improve popup/popdown behaviour. [Soeren]
5461 * gdk-pixbuf:
5462  - Fix some problems with indexed BMPs [Kazuho Okui, Matthias]
5463  - Work around some libjpeg header file craziness [Manish Singh]
5464 * Assume gravity works. [Soeren]
5465 * Cache GCs for drawing. [Brian Cameron, Soeren]
5466 * Handle focus adjustment correctly for deeply nested focus locations. 
5467   [Matthias, Owen Taylor]
5468 * Use reference counting for shared data in GtkActionGroup. 
5469   [Matthias, Adam Hooper]
5470 * Add a "use-separator" style property to GtkMessageDialog, and make
5471   it not resizable. [Federico]
5472 * Add 'const' to uses of GdkColor that need it. [Federico]
5473 * Put focusable labels in the focus chain. [Federico]
5474 * Make destroying widgets in focus-out-event work. [Owen, Grant Gayed]
5475 * Add properties to GtkAdjustment [Murray Cumming]
5476 * Add change notification to GtkAccelMap [Matthias, Owen]
5477 * Add settings to suppress icons in buttons and menus. [Matthias]
5478 * Add Xft settings for hinting and antialiasing. [Federico, Owen]
5479 * Make size of indicator in menu items themeable. [Bill Hanemann, 
5480   Narayana Pattipati, Matthias]
5481 * Fixes to GtkIconTheme [Torsten Schoenfeld]
5482 * Improve drawing of GtkExpander. [Mark McLoughlin]
5483 * Improve drawing of paned handles. [Soeren]
5484 * Remove broken hangul input module. [Changwoo Ryu]
5485 * Remove C++-style comments. [Damien Carbery]
5486 * Memory leak fixes. [Christian Persch, Richard Hult, Morten, Matthias]
5487 * RTL mode (flipping) fixes. [Mitsuru Chinen, Semion Chichelnitsky]
5488 * Accessibility improvements for tooltips, GtkScale. [Padraig]
5489 * Make the ZOOM_100 and ZOOM_FIT labels HIG-compliant. [Mariano Suarez-Alvarez]
5490 * Win32 fixes. [Tor Lillqvist]
5491 * Documentation:
5492  - New section on how to check for modifier keys correctly. [Federico]
5493  - Miscellaneous improvements.  [Pascal Haakmat, Jan Huelsbergen,
5494    Tim-Philipp Müller, Matthias]
5495 * New and updated translations (ar,az,cs,da,de,en_CA,el,es,fi,fr,ga,hr,it,ja,
5496   ko,mi,mn,ms,nl,nn,no,pl,pt,ru,sq,sr,sr@Latn,sv,ta,th,uz,uz@Latn)
5497 * Other contributors: Christian Biere, Christopher Blizzard, Paolo Borelli, 
5498   Dan Damian, Rodney Dawes, John Ellis, David Hawthorne, Marco Pesenti Gritti,
5499   Felipe Heidrich, Jonas Jonsson, Theppitak Karoonboonyanan, Tommi Komulainen,
5500   Julio M. Merino Vidal, Gregory Merchan, Benjamin Otte, Joshua N. Pritikin,
5501   Yu Shao, Yao Zhang
5502
5503 Overview of Changes from GTK+ 2.3.1 to GTK+ 2.3.2
5504 =================================================
5505 * GdkPixbuf
5506  - Add functions to save pixbufs to non-file locations.  [Tim Evans]
5507  - Add a function to determine the type and size of a file without
5508    loading it completely.  [Matthias Clasen]
5509  - Turn pixbuf attributes into construct-only properties. [Matthias]
5510  - Fix building gdk-pixbuf with --disable-modules --with-included-loaders.
5511    [Matthias, Owen Taylor]
5512 * Fix the logic for changing the toplevelness of a window.  [Soeren Sandmann]
5513 * Do not interpret distant clicks as double clicks, using a
5514   new double-click-distance setting.  [Matthias]
5515 * Improve the GDK API for dealing with group leaders. [Matthias]
5516 * Utility function for application launching in multi-screen scenarios.
5517   [Mark McLoughlin]
5518 * Support big and small and alpha-blended icons under Win32. [Tim Evans]
5519 * Misc Win32 improvements [Tor Lillqvist, Hans]
5520 * GtkFileChooser [Federico]
5521  - Fix new filename entry in Save mode [Jan Arne Petersen]
5522  - Improved the look of GtkFileChooserDefault. [Tuomas Kuosmanen]
5523  - Added support for file system volumes such as CD-ROMs, 
5524    floppies, and network shares.
5525  - Add a "New Folder" button for Save mode in GtkFileChooser.
5526  - Better support for Folder mode.
5527 * GtkTreeView
5528  - Speed up by adding a fixed height mode.  [Kristian Rietveld]
5529  - Add a single-paragraph mode and a language property to 
5530    GtkCellRendererText [Kristian Rietveld]
5531  - Add a editing-canceled signal to GtkCellRenderer [Federico Mena Quintero]
5532  - Misc GtkTreeView bug fixes [Kristian, Soeren, Jonathan Blandford]
5533 * Add a way to list the supported targets of a clipboard. [Dom Lachowicz]
5534 * Add stock icons: harddisk, indent, unindent.  [Hans Breuer, Jody Goldberg]
5535 * Improve the GtkCalendar drawing code.  [Matthias]
5536 * GtkCalendar supports starting the week on any day [Matthias]
5537 * Make GtkToolbar compatible with 2.2 again [Soeren]
5538 * Misc GtkToolbar fixes and API improvements [Christian Persch, 
5539   Olexiy Avramchenko, Jody, Soeren]
5540 * Misc GtkUIManager fixes and API improvements.  [Jody, Matthias, Jeff Franks]
5541 * Add a way to lock individual accelerator paths  [Matthias]
5542 * Add gtk_menu_shell_cancel() to emit the "cancel" signal on 
5543   a menu shell.  [Matthias]
5544 * Fix dynamic menus. [Matthias, Michael Meeks]
5545 * Add xalign, yalign properties to GtkButton. [Jody]
5546 * Implement or improve RTL support in GtkComboBox, GtkCellView, 
5547   GtkViewport [Semion Chichelnitsky, Matthias, Kristian]
5548 * Support for "no focus" windows. [Matthias]
5549 * Documentation improvements [Matthias, Federico, Manish, Murray Cumming, 
5550   Theppitak Karoonboonyanan]
5551 * FAQ updates [Tony Gale]
5552 * Split the translations into two domains: ui strings and
5553   error messages go to gtk20, property nicks and blurbs to 
5554   gtk20-properties. [Matthias]
5555 * New and updated translations (af,ar,bn,br,cs,cy,da,de,es,et,fa,fr,ga,hr,
5556   it,ja,ko,lt,mn,ms,nl,nn,no,pl,pt,pt_BR,ru,sr,sr@Latn,sv,sq,wa)
5557 Other contributors: Olivier Andrieu, Herman Bloggs, Anders Carlsson,
5558   Marco Pesenti Gritti, Bill Haneman, Alexander Larsson, Noah Levitt, 
5559   Kjartan Maraas, Evan Martin, Tim-Philipp Müller, Christian Neumair, 
5560   Joshua N Pritikin, Sebastian Rittau, Daniel Rogers, Manish Singh, 
5561   Torsten Schoenfeld, Alexander Winston, Johannes Weißl,  Morten Welinder, 
5562   Adam Wright
5563
5564 Overview of Changes in GTK+-2.3.1
5565 =================================
5566 * Improve sanity checks on gdk-pixbuf loaders [Matthias Clasen]
5567 * GDK
5568  - Add GDK_DEBUG=xinerama that fakes a 2x2 Xinerama mode [Matthias]
5569  - Make gdk_drawable_copy_to_image public [Matthias, Peter Zelezny]
5570 * Misc Win32 bug fixes [Tor Lillqvist, John Ehresman, Tim Evans]
5571 * Action-based menu/toolbar API [Matthias]
5572  - Add "name" construct-only parameter to GtkActionGroup
5573  - Bug fixes [Marco Pesenti Gritti, Christian Persch]
5574 * Change ranges for Saturation/Value to be 0-100 in GtkColorSelection
5575   [Gregory Merchan, Matthias]
5576 * GtkComboBox [Kristian Rietveld]
5577  - Make model and text_column properties not construct-only [Murray Cumming]
5578  - Fix sizing
5579  - Add mouse wheel support [Matthias]
5580 * Various GtkEntryCompletion bug fixes [Kristian, Piers Cornwell, Marco]
5581 * GtkExpander
5582  - Add a "use_markup" property, gtk_expander_set/get_use_markup
5583  - Fix bugs when unrealizing/destroying [Mark McLoughlin]
5584 * GtkFileChooser [Federico Mena Quintero]
5585  - Add a GtkFileSystemWin32 [Hans]
5586  - Use GtkEntryCompletion in GtkFileChooserEntry 
5587  - Add a render_icon to GtkFileSystemIface to allow the 
5588    GnomeVFS backend to supply appropriate icons
5589  - Improve selection handling in bookmarks list [Federico, Owen Taylor]
5590  - Support drops on the bookmarks list
5591  - Display error dialogs on failed operations
5592  - Many UI tweaks [Federico, Iain Holmes,Hans-Petter Jansson]
5593  - Ignore filters for folders [Dave Malcom]
5594  - Misc file chooser bug fixes [Owen, Christian Persch, Taavi Talvik]
5595 * Menus
5596  - Make torn-off menus transient-for the window they were torn from
5597    [Matthias, Jon-Kare Hellan]
5598  - Fix menu positioning for Xinerama, add gtk_menu_set_monitor()
5599    for use by position functions [Matthias]
5600  - Tweak menu delay parameters, add a default width [Soeren Sandmann]
5601 * Make g_message_dialog_new_with_markup() automatically escape
5602   arguments, add g_message_dialog_set_markup() [Owen]
5603 * Add read-only min-position/max-position properties to GtkPaned
5604 * GtkToolbar [Soeren]
5605  - Support gaps in the toolbar with expand=true/draw=false separators
5606  - Improve drop-location preview handling
5607  - Take a GtkRadioToolButton as the parameter to
5608    gtk_radio_tool_button_new_from_widget [Murray Cumming]
5609  - Many misc toolbar bug fixes [Soeren, Marco]
5610 * GtkTreeView bug fixes [Morten Welinder, David Hampton]
5611 * Add gtk_window_is_active()/gtk_has_toplevel_focus() getters
5612   to go along with properties [Owen Taylor]
5613 * Add gtk_widget_can_activate_accel() / ::can-activate-accel
5614   signal to fix handling of accelerators on insensitive parent
5615   menu-items. [Tim Janik]. (*Note*: the details here will probably
5616   change, since similar problems for mnemonics aren't handled.)
5617 * Implement or improve RTL support in GtkAlignment, GtkCombo, 
5618   GtkNotebook, GtkScrolledWindow, GtkTreeView, GtkViewport.
5619   [IBM L3 NLS Support Team]
5620 * Fix string setters for self-assignment [Matthias, Soeren]
5621 * Finish multi-head handling in gtk-demo [Matthias]
5622 * Fix install rules for generating gdk-pixbuf.loaders [Manish Singh]
5623 * Reference doc improvements [Matthias, Soeren,
5624   Federico Mena Quintero, Michael Natterer, Owen Taylor, Olexiy Avramchenko]
5625 * FAQ updates [Tony Gale]
5626 * New and updated translations (ca,cs,cy,de,el,es,ja,mn,nl,nn,no,pl,pt,sr,
5627   sr@Latn,sv,th)
5628
5629 Other contributors: Jorn Baayen,Damon Chaplin, Jeff Franks, Diego Gonzalez,
5630   Richard Hult, Egmont Koblinger, Thomas Leonard, Ross McFarland, 
5631   Padraig O'Briain, Tomas Ã–gren, Danilo Segan
5632
5633 Overview of Changes from GTK+-2.2.x to GTK+-2.3.0
5634 =================================================
5635
5636 * New Widgets
5637  - GtkFileChooser: a replacement for GtkFileSelection with 
5638    replaceable backends, many new API features, better user
5639    interface (UI is still a work in progress) [Owen Taylor, 
5640    Federico Mena Quintero]
5641  - New combo box widgets: GtkComboBox, GtkComboBoxEntry [Kristian Rietveld]
5642  - New "disclosure triangle" widget: GtkExpander [Mark McLoughlin]
5643  - "Picker button" widgets based on code from libgnomeui: 
5644    GtkFontButton, GtkColorButton [Matthias Clasen]
5645
5646 * Widget improvements:
5647  - Autocompletion for entries: GtkEntryCompletion [Kristian]
5648  - Add separate padding for all 4 sides of GtkAlignment [Murray Cumming]
5649  - Add input-only event boxes for trapping events [Alex Larsson]
5650  - Support RTL flipping for GtkHPaned, tab navigation [Soeren, Matthias]
5651  - Support up to four scroll arrows on GtkNotebook and make which
5652    ones are displayed themeable. [Matthias]
5653  - GtkCalendar improvements: make the arrows spin, support RTL flipping,
5654    automatic week start selection, DND support, improve API 
5655    for setting options [Matthias]; mousewheel support [Abigail Brady]
5656  - New properties: GtkButton::focus_on_click, GtkCheckMenuItem::draw_as_radio
5657    [Soeren, Matthias]
5658  - New functions: gtk_window_set_default_icon(), 
5659    gtk_message_dialog_add_buttons(), gtk_button_box_get_child_secondary()
5660    [Matthias]
5661  - Add missing "role", "decorated", "gravity" properties for GtkWindow,
5662    "has_resize_grip" for GtkStatusBar. [Matthias]
5663  - Add child properties for GtkPaned [Matthias, Soeren]
5664
5665 * Menus
5666  - New action-based menu API: GtkUIManager, GtkActionGroup, 
5667    GtkAction, etc. [James Henstridge, Matthias, Soeren Sandmann,
5668    Marco Pesenti Gritti, Philip Langdale]
5669  - Support for tabular menus [Kristian]
5670  - New positioning algorithm for popup menus [Soeren]
5671
5672 * GtkTextView [Matthias]
5673  - Add properties "accepts_tab" [Soeren], "overwrite" property 
5674    [Jeroen Zwartepoorte], "buffer"
5675  - Add gtk_text_buffer_select_range()
5676  - Implement drag-selection by words/lines (also for Gtkentry)
5677  - Some fixes to invisible text handling
5678  - Add support for GTK_WRAP_WORD_CHAR [David Brigada]
5679  - Clean up handling of horizontal paging
5680  - Fix scrolling with non-visible cursor
5681  - Add internals documentation [Havoc Pennington]
5682
5683 * GtkToolbar [Soeren]
5684  - Add a more consistent and extensible toolbar API; preserve
5685    old API for backwards compatibility [James, Anders Carlsson, Owen]
5686  - Support for sliding buttons like OS X
5687  - Keyboard navigation
5688  - Support "priority text"
5689  - Overflow menu
5690  - Better handling of really wide buttons [David Bordoley]
5691  - Drawing improvements
5692  - Support context menu
5693
5694 * GtkTreeView [Kristian Rietveld]
5695  - Handle RTL [Matthias, Jonathan]
5696  - Add expand flag to column packing parameters [Jonathan, Kristian]
5697  - gtk_tree_path_free now silently returns on NULL paths
5698  - Move row reference updating code to closures
5699  - Fix TreeView DnD: make TreeStore DnD work, make drops on empty views work,
5700    get rid of gtk-tree-model-drop-append.
5701  - Add a filtering tree model: GtkTreeModelFilter [Kristian]
5702
5703 * gdk-pixbuf
5704  - Add a loader for PCX files [Josh Beam]
5705  - Improve calculation of filter weights for scaling [Brian Cameron, Owen]
5706  - Support TGA files with arbitrary origins [Matthias]
5707  - Add gdk_pixbuf_loader_new_with_mime_type() [Dom Lachowicz]
5708    gdk_pixbuf_new_from_file_at_size() [Dom, Owen, Matthias]
5709  - Add saving support for ICO and CUR
5710  - Improve handling of GIFs with oversized frames [Matthias]
5711
5712 * GDK:
5713  - Support for full-color / alpha-channel cursors [Matthias]
5714  - Remove support for non-X fonts and for pango-1.0; always require Xft2 [Owen]
5715  - Fix handling of recursive calls to gdk_window_begin_paint() [Soeren]
5716  - Many small changes to reduce round trips on startup; 
5717    add gdk_display_flush() [Owen]
5718  - Use Xlib asynchronous APIs to reduce roundtrips on startup
5719    and during DND [Owen]
5720  - Other changes to improve DND for large-latency connections [Owen]
5721  - Add support for EWMH "above" and "below" states [Manuel Clos] (also
5722    in GtkWindow)
5723  - Add Add GDK_MOUSE_DEVICE envvar for linux-fb backend [Marc Welz]
5724  - Other small linux-fb fixes [Eric Warmenhoven]
5725
5726 * Miscellaneous
5727  - Add support for named themable icons; use this facility to 
5728    provide the default stock icon images [Owen Taylor, based
5729    on code by Alex Larsson]
5730  - Add gtk_widget_queue_resize_no_redraw() for more efficient
5731    resizing; use for GtkTextView. Redraw less on focus changes. [Soeren]
5732  - Add gtk_widget_queue_resize_no_redraw() [Soeren]
5733  - Default theme improvements, especially for menus. Add some
5734    more style properties. [Soeren]
5735  - Add authentication stock icon [Matthias, art by Jakub Steiner]
5736  - Allow "none" to be set for input method GtkSettings [Hidetoshi Tajima]
5737  - Convert build system to automake-1.7; many cleanups and
5738    improvements. [James Henstridge, Owen]
5739  - Win32 fixes for new widgets [Hans]
5740  - Add right-to-left variants of some stock icons [Matthias]
5741
5742 * Documentation
5743  - Use XML source for man pages; add man pages for tools that didn't
5744    have them before [Matthias]
5745  - Tutorial improvements [Sebastian Rittau, Tony Gale, Roger Leigh, Matthias]
5746  - FAQ improvements [Tony, Gonzalo Odiard, Owen]
5747  - Misc documentation improvements [Matthias, Frederic Lespez, Tomas Ogren, 
5748    Martin Pool, Mariano Suarez-Alvarez]
5749
5750 * Deprecations
5751  - GtkItemFactory [Replaced by GtkUIManager]
5752  - GtkCombo, GtkOptionMenu [Replaced by GtkComboBox]
5753  - Miscellaneous functions that were renamed in 
5754    GTK+-2.0 and GTK+-2.2 [Matthias, Manish Singh, Soeren]
5755
5756 Other contributors: Krasimir Angelov, Archit Baweja, Sebastien Bacher,
5757   Steve Chaplin, John Darrington, Daniel Elstner, Marco Pesenti Gritti, 
5758   Jody Goldberg, David Hampton, Richard Kinder, Christian Persch, 
5759   Roozbeh Pournader, Christian Reis, Christian Rose, Joe Shaw, 
5760   Vasilis Vasaitis, Morten Welinder
5761
5762 ----------------------------------------------------------------------
5763
5764 Overview of Changes in GTK+ 2.2.4
5765 =================================
5766 * Revert TreeView fix which broke context menus in different applications
5767   [Kristian Rietveld]
5768 * Typo fixes [Kjartan Maraas]
5769 * Make pressing END not put the menu in scrolling mode [Kris]
5770 * Misc bug fixes [Tor Lillqvist, Bruce Hochstetler, Kjartan, Tony Gale]
5771 * New and updated translations (sq, cy, hi, nl, de, es, zh_CN, ja, no, el)
5772
5773 Overview of Changes in GTK+ 2.2.3
5774 =================================
5775 * GdkPixbuf [Matthias Clasen]
5776  - Fix some problems with overflows when scaling down [Tomas Ã–gren]
5777  - Many GIF bug fixes [Matthias, Federico Mena Quintero]
5778  - Prefer 32-bpp ICOs, fix bugs with them
5779  - Fix problem with absolute filenames and gdk-pixbuf-query-loaders
5780    [Jens Elker]
5781  - Make gdk-pixbuf-csource include alignment magic [Brian Cameron]
5782 * Win32 [Tor Lillqvist]
5783  - Add multiple monitor support
5784  - Major event and key handling rewrite, including IME fixes
5785  - Fix handling of toplevel window positions
5786  - Add support for all window geometry hints (gridded geometry, etc.)
5787  - Fix DND to ignore drag window [Tony M Brown, Herman Bloggs]
5788  - Fix GdkImage memory leak [J. Ali Harlow]
5789  - Remove leftover OwnerGrabButtonMask emulation (fixes lots)
5790  - Misc bug fixes [Many from Hans Breuer, Tim Evans]
5791  - Build fixes and improvements [Peter Zelezny]
5792 * X11
5793  - Fix extremely common crash where we interpreted the timestamp
5794    field of a XKB event as a window ID and found a pixmap that matched.
5795    [Owen Taylor, with essential backtrace from Kjartan Maraas]
5796  - Fix CapsLock and NumLock for non-XKB [Robert Basch]
5797  - Fix problems with, eg. Ctrl-Alt-Backspace hiding Ctrl-Backspace [Owen]
5798  - Workaround Xinerama servers reporting wrong depths [Owen]
5799 * GtkTreeView [Kristian Rietveld]
5800  - Fix scrolling once more [Pedro Gimeno, Michael Natterer, Timo Sirainen]
5801  - Don't get confused by the Control key when handling selection
5802    from an accelerator like <Control>B [Michael Natterer]
5803  - Many misc fixes [Matthias, Marco Pesenti Gritti, Tim Janik, Alex Larsson, 
5804    Tim-Philipp Müller, Michael Natterer, Josh Parsons, Yann Rouillard,
5805    Rene Seindel, Owen Taylor, Alp Toker, Morten Welinder]
5806 * Input methods
5807  - Handle input methods exiting and starting while the 
5808    app is running [Hidetoshi Tajima]
5809  - Fix infinite loop when closing input methods [Owen,
5810    Takuro Ashie, Hidetoshi]
5811  - Add a 'cedilla' input method with c+acute => cedilla and use
5812    as the default for languages that use cedilla. [Gustavo De Nardin,
5813    Owen, Fco. Javier F. Serrador]
5814  - Fix status window for multihead [Owen, James Su]
5815  - Remember imcontext attributes when switching methods [Owen, 
5816    Botond Botyanszki]
5817 * GtkFileSelection [Owen]
5818  - Fix selection of "UntitledN" on initial map [Mark Finlay]
5819  - Fix an annoying bug with cursor positioning on failed completion
5820  - Misc Fixes [Owen, Tor]
5821 * Other widgets
5822  - Fix problem with GtkOptionMenus coming up in the wrong place [Kristian]
5823  - Fix problem with spinbuttons not getting enough space [Morten Welinder,
5824    Kristian]
5825  - Fix an infinite loop when resizing GtkTextView [Owen, Frederic Crozat]
5826  - Don't include menu labels in gtk_notebook_forall [Owen]
5827  - Fix problem with XEMBED (GtkPlug) clients that don't take focus stealing
5828    focus [Owen]
5829  - Accept color drops with wrong format from KDE [Matthias]
5830 * Fix problem from gnome-theme-manager playing tricks and
5831   making event->window a pixmap. [Anders Carlsson]
5832 * Ignore Caps-lock when matching accelerators
5833 * Fix 5-year-old bug where toplevels didn't fully refresh properly
5834   on theme change [Owen, Rajkumar Siva]
5835 * Don't require precompiled gdk-pixbuf-csource when cross-compiling
5836   from a tarball [Owen]
5837 * Documentation improvements [Matthias, Noah Levitt, Tor, Doug Quale, 
5838   Morten Welinder]
5839 * Misc bug fixes [Keith Bissett, Botond Botyanszki, Damien Carbery,
5840   Arno Charlet, Felipe Heidrich, Charles Kerr, George Lebl, Noah, Tor, 
5841   Callum McKenzie, Michael Meeks, Denis Mikhalkin, Thomas Mirlacher,
5842   Kristian, Masahiro Sakai, Soeren Sandmann, Benedikt Spranger, Owen, 
5843   Luis Villa]
5844 * New and updated translations (ar,az,cs,cy,be,de,es,fi,fr,he,hi,hu,id,is,it,
5845   ko,lt,ml,mn,nl,ne,no,pl,pt,pt_BR,ru,sk,sr,sr@Latn,ta,wa,zh_TW,zh_CN)
5846
5847 Overview of Changes in GTK+ 2.2.2
5848 =================================
5849
5850 * GdkPixbuf [Matthias Clasen]
5851  - Fix animation of slow-loading progressive GIFS
5852  - Fix long-standing animated GIF display bug with transparency
5853  - Misc bug and portability fixes [Rick Jones, Tim Mooney, Marijn Ross]
5854 * GDK [Owen Taylor]
5855  - Draw continuous underlines between Pango layout runs when 
5856    possible [Kang Jeong-Hee]
5857  - Fix gdk_pixbuf_from_drawable() for big endian [Christian Petig]
5858    Major rewrite of 16-bit handling for pixbuf_from_drawable()
5859 * X11 backend [Owen]
5860  - Fix build on X11R5 [Albert Chin]
5861  - Fix switching keyboard layouts while running [Egmont Koblinger]
5862  - Work around RENDER extension bugs on certain Sun X servers [Morten Welinder]
5863  - Zero unused fields in client messages we send Lubos Lunak]
5864  - Fix occasional segfault when drawing pixbufs [Hans Petter Jansson]
5865  - Fix wrong initialization that was keeping XShm from being used.
5866 * Win32 backend [Tor Lillqvist]
5867  - Tweak line drawing
5868  - Mouse/cursor fixes [Allin Cottrell]
5869  - Better handling of floppy drives in GtkFileSelection
5870  - Misc fixes [Arnaud Charlet, Cedric Gustin, Martyn Russell]
5871 * Input methods [Hidetoshi Tajima]
5872  - Add rules for Greek accents to GtkIMContextSimple [Vasilis Vasaitis]
5873  - Fix sorting of rules in GtkIMContextSimple [Vasilis]
5874  - Miscellaneous GtkIMContextXIM fixes 
5875  - Fix translation of input context names
5876 * Fix keyboard accelerators/bindings on Numeric Keypad [Owen, Olivier Ripoll]
5877 * Add Delete to GtkEntry context menu, Delete/Select All 
5878   to GtkTextView context menu [Matthias]
5879 * Keynav tweaks in GtkFileSelection, GtkColorSel [Matthias]
5880 * Add C-A-PgUp/Down as alternative notebook page switching keys [Matthias]
5881 * GtkTextView
5882  - Fix redrawing on color-only changes [Owen, Gustavo Giráldez]
5883  - Don't scroll to cursor on focus in [Paolo Maggi]
5884  - Fix spot location reported to input method [Owen, TOKUNAGA Hiroyuki, 
5885    Yao Zhang]
5886  - Miscellaneous bug fixes [Torbjörn Andersson, Matthias, Manual Clos,
5887    Padraig O'Briain, Owen]
5888 * GtkTreeView [Kristian Rietveld]
5889  - Fix prelighting [Sven Neumann]
5890  - Set drag cursor earlier to allow apps to override [Daniel Elstner]
5891  - Speed up insertions into GtkTreeModelSort [Owen, Jonathan Blandford]
5892  - Get background/cell area handling right in GtkTreeViewColumn [Vasco
5893    Alexandre da Silva Costa]
5894  - Bug fixes [Benjamin Bayart, Jonathan Blandford, Peter Bloomfield, 
5895    Dave Cook, Felipe Heidrich, Richard Hult, Markus Lausser, Michael Natterer,
5896    Mariano Suarez-Alvarez, Owen]
5897 * Fix handling of border width for GtkToolbar [Rodney Dawes]
5898 * Rewrite adjustment handling of GtkViewport, fixing many bugs
5899   [Owen, Thomas Leonard, Michael]
5900 * Misc bug fixes [Dennis Björklund, Jonathan, Dave Bordoley, Rich Burridge, 
5901   Anders Carlsson, Arnaud, Matthias, Vasco Alexandre da Silva Costa, 
5902   Tim Evans, Larry Ewing, John Finlay, Jeff Franks, Jody Goldberg, 
5903   Jason D. Hildebrand, Charles Kerr, Alex Larsson, Noah Levitt, Xan Lopez, 
5904   Loban Rahman, Richard Reich, Soeren Sandmann, Charles Schmidt, 
5905   Rajkumar Siva, Owen, Sergey V. Udaltsov, Morten Welinder, Michael Zucchi]
5906 * Code cleanups [Matthias, Glynn Foster, Britton Kerin, Sven Neumann, 
5907   Doug Quale, Manish Singh, Morten Welinder]
5908 * Switch to using libtool-1.5
5909 * Build fixes [Matthias, J. Ali Harlow, Rich Kinder, Jon Nall, Sven, 
5910   Christian Rose]
5911 * Documentation improvements [Matthias, Noah Levitt, Sven Neumann]
5912 * New and updated translations (am,az,be,ca,cs,cy,da,de,el,es,fa,fi,fr,id,
5913   it,ko,li,ml,mn,ms,nl,no,pl,pt,sr,sr@Latn,sv,ta,uk,yi,zh_TW)
5914
5915 Overview of Changes in GTK+ 2.2.1
5916 =================================
5917 * Win32 [Tor Lillqvist]
5918  - Improve setting of window position / decorations
5919  - Implement gdk_pixmap_foreign_new() [Naofumi Yasufuku]
5920  - Fix various file selection bugs
5921  - Improve scheme for locating pixbuf loader modules
5922  - Miscellaneous fixes [Alex Shaduri, Kenichi SUTO, Ed Woods]
5923 * GtkTreeView [Kristian Rietveld]
5924   - made GtkTreeSortable work as the documentation advertises [Jarek Dukat]
5925   - fixed gtk_tree_view_set_sort_column_id so you can disable sorting [Soeren
5926     Sandmann, Jarek Dukat]
5927   - TreeView search now works on all values transformable by GValue and not
5928     just strings [Muktha Narayan]
5929   - _move/_swap fixage in the Stores [Matthew Tuck, Paolo Maggi]
5930   - a lot of misc bug fixes [Alex Duggan, Carlos Garnacho Parro, Hans Petter
5931     Jansson, Kjartan Maraas, Soeren, Dave Camp, Murray Cumming, Dave Cook,
5932     Gaël Le Mignot, Vasco Alexandre da Silva Costa]
5933 * GtkTextView [Matthias Clasen]
5934  - Fix keynav with invisible cursor
5935  - Fix misdrawing of cursor [Owen Taylor] and selection
5936  - Many miscellaneous fixes [Narayana Pattipati, Daniel Elstner]
5937 * Fix problem with accidental inclusion of a main() [Matthias]
5938 * Documentation improvements [Matthias, Havoc Pennington]
5939 * Fix problem with GtkColorsel and pixmap themes [Daniel]
5940 * Fix race condition with GdkRGB in PseudoColor [Shivaram Upadhyayula]
5941 * Warning fixes [Manish Singh]
5942 * configure fixes [Akira Tagoh]
5943 * New and updated translations (ca,de,es,et,ko,mn,pl,pt,vi,zh_CN)
5944 * Miscellaneous bug fixes [Matthias, Daniel, Martin Gansser, Louis Garcia, 
5945   Tommi Komulainen, Thomas Leonard, Ian Peters, Arvind Samptur, 
5946   Soeren Sandmann, Hidetoshi Tajima, Owen]
5947
5948 ----------------------------------------------------------------------
5949
5950 Overview of Changes in GTK+ 2.2.0
5951 =================================
5952 * Fix problem with the DND code and event filters [Bolian Yin, Owen Taylor]
5953 * GtkTreeView bug fixes [Kristian Rietveld, Soeren Sandmann, Matthias Clasen]
5954 * Documentation improvements [Matthias Clasen, Eric Warmenhoven, 
5955   James M. Cape]
5956 * Example portability fix [Sven Neumann]
5957 * Updated translations (es,ja,lv,ms,nl,ru,sk,sv)
5958
5959 Overview of Changes in GTK+ 2.1.5
5960 =================================
5961 * GtkFileSel fixes [Owen Taylor]
5962   - Fix ..<tab> to go up a dir [Francisco Bustamante]
5963   - Fix UTF-8 operation, so that non-ASCII works [Kang Jeong-Hee]
5964   - Use g_utf8_collate() not strcmp for sorting [Gregory Merchan]
5965 * Only close dialogs on Escape if they have a cancel button. [James Willcox]
5966 * Fix problem with resizing gnome-terminal popup [Soeren Sandmann]
5967 * Add Home/End/Page_Up/Page_Down keybindings for menus [Owen,
5968   Narayana Pattipati, Marius Andreiana]
5969 * Xinerama fixes for GtkMenu [Matthias Clasen]
5970 * Fix long-standing problem with Ami and GtkEntry [Owen, Kang Jeong-Hee]
5971 * Documentation additions and fixes [Matthias]
5972 * New and updated translations (am,bg,da,fr,fi,de)
5973 * Miscellaneous bug and build fixes
5974
5975 Other contributors: Johan Dahlin, James Henstridge, Jon Nelson, 
5976    Bastien Nocera, Christian Reis, Arvind Samptur, Anand Subra, Simon Wong
5977
5978 Overview of Changes in GTK+ 2.1.4
5979 =================================
5980 * Improved default color scheme [Soeren Sandmann, with advise from
5981   Tuomas Kuosmanen and Garrett LeSage]
5982 * Make pixmap creation functions take a GdkDrawable not a GdkWindow
5983   [Kristian Rietveld]
5984 * Support move-resize emulation for all edges. [Matthias Clasen]
5985 * Many fixes for X11 gdk_colormap_alloc_colors [Naofumi Yasufuku, Owen]
5986 * Remove extra selections for ButtonRelease in XInput code 
5987   [Garry Osgood, Owen]
5988 * Another attempt at fixing X focus tracking [Owen]
5989 * linux-fb VT switch improvements [Eric Warmenhoven]
5990 * Win32 [Tor Lillqvist]
5991   - Bug and win98 portability fixes for new tile/stipple code [Hans Breuer]
5992   - Improve maximized/minimized tracking
5993   - Bug fixes
5994 * Fix problem with gtk_combo_set_popdown_strings() not changing
5995   the entry text [Owen]
5996 * Support RTL flipping for statusbars [Matthias]
5997 * GtkTreeView bug fixes [Kristian Rietveld, Juri Pakaste, Erik Simonsen,
5998   Richard Hult, Carlos Garnacho Parro]
5999 * Use octal escapes rather than literal UTF-8 in strings [Owen]
6000 * Make a lot of read-only data const. [Matthias, Morten Welinder]
6001 * Misc bug fixes
6002 * New and updated translations (cs,es,el,he,hu,lv,no,ro)
6003
6004 Other contributors: Anders Carlsson, Chris Blizzard, Stephen Brown, 
6005    Erwann Chenede, Jon-Kare Hellan, John Finlay, Jarred Keuch, 
6006    Kjartan Maraas, Christian Neumair
6007
6008 Overview of Changes in GTK+ 2.1.3
6009 =================================
6010
6011 GDK:
6012 * Win32 [Tor Lillqvist]
6013   - fixes to multihead API stubs 
6014   - Comprehensively implement tiles and stipples
6015   - Handle tracking minimized/maximized [Arnaud Charlet]
6016 * linux-fb fixes [Eric Warmenhoven]
6017 * Use g_get_application_name() for default window titles and
6018   for the title of the client leader window [Owen, Havoc Pennington]
6019 * Complete resize-grippy support, move-resize emulation 
6020   [Anders Carlsson, Matthias Clasen]
6021
6022 GTK+ Core:
6023 * On screen change, recreate the widget's Pango context [Owen]
6024 * Fix problems with focus ending up on unmapped widgets [Owen]
6025 * Make g_object_set (gtk_settings_get_default (), ...) to override
6026   settings from XSETTINGS and ~/.gtkrc [Jonathan Blandford]
6027 * Make GtkInputDialog multihead aware [Owen]
6028 * Add a ::screen-changed signal to GtkWidget [Owen Taylor]
6029
6030 Widget improvements:
6031 * Draw/check menu items insensitive [Soeren, Tim Evans]
6032 * Fix color usage for radio/check menu item indicators [Soeren]
6033 * Add ::snap-edge-set-property to GtkHandleBox [Owen, Matthias]
6034 * RTL flipping improvements for GtkHandleBox, GtkMenuItem, GtkOptionMenu,
6035   GtkCheckMenuItem [Matthias Clasen]
6036 * GtkCombo improvements [Owen]
6037   - Don't leave it behind when switching desktops [Matthias Clasen]
6038   - Fix longstanding bug with unwanted moving of selection [Mike Fulbright]
6039   - Don't change entry contents until window is popped back up
6040   - Keynav fixes
6041 * Menu scrolling behavioral improvements [Owen, Ettore Perazzoli]
6042 * GtkNotebook keynav improvements [Owen]
6043 * Handle painting text on dark-colored progressbars [Soeren]
6044 * GtkTreeView  [Kristian Rietveld]
6045   - Privatize gtk_tree_store_move(), add gtk_tree_store_move_before/after()
6046   - Add GTK_CELL_RENDERER_FOCUSED flag
6047   - Keynav fixes, including adding boolean return values for keybinding
6048     signals (API breakage for API that no one should have been using)
6049     [Narayana Pattipati]
6050   - Add gtk_tree_view_column_cell_get_position()
6051   - Add an inconsistent state for GtkCellRendererToggle
6052   - Various bug fixes [Murray Cumming, Daniel Elstner, Vitaly Tishkov,  
6053     Morten Welinder, Robert Kinsella, Soeren]
6054
6055 Input Methods:
6056 * Sort the input method list in the right click popup [Abigail Brady]
6057 * GtkIMContextXIM bug fixes [HideToshi Tajima]
6058
6059 General:
6060 * Make sure that parameters don't shadow system functions [Soeren Sandmann]
6061 * Deprecation cleanups [Manish Singh]
6062 * Don't grab the focus to the default button in a GtkDialog [Daniel Elstner]
6063 * Doc improvements, including adding Since: for 2.2. additions 
6064   [Matthias Clasen]
6065 * Bug fixes, cleanups [Anders Carlsson, Daniel, Vitaly Tishkov, Matthias, 
6066   Iain Holmes, Gregory Merchan, Havoc Pennington, Soeren, Morten Welinder]
6067 * Build fixes [Owen, Jeff Waugh, Dan Mills]
6068
6069 Overview of Changes in GTK+ 2.1.2
6070 =================================
6071
6072 * Fixes for GtkIMContextXIM [HideToshi Tajima, Owen Taylor]
6073 * Remove usage of XLookupString outside of GtkIMContextXIM [Owen]
6074 * Handle Shift/Caps/Num_Lock properly for non-Xkb [Owen]
6075 * Add a --screen option to set default screen [Balamurali Viswanathan, Owen]
6076 * Add simple support for startup notification [Havoc Pennington]
6077 * Handle focus indication for check and radio buttons without children
6078   [Dave Camp, Owen]
6079 * Much work on improve submenu navigation [Soeren Sandmann]
6080 * Add "selected_shadow_type" property for menus [Soeren]
6081 * Add "scrollbar_spacing" style property [Anders Carlsson, Owen]
6082 * Rework GtkPaned keynav [Soeren, Calum Benson]
6083 * Sensitivity and keynav fixes for GtkFileSelection [Muktha Narayan, Owen]
6084 * Removed mnemonics for GtkToolbar Items [Mikael Hallendal]
6085 * Tree view fixes and speedups 
6086   [Kristian Rietveld, Daniel Elstner, Havoc Pennington]
6087 * Allow themes to set GtkTreeView even/odd row colors [Kristian]
6088 * Doc fixes and improvements [Matthias Clasen, Vitaly Tishkov]
6089 * Win32 fixes [Tor Lillqvist]
6090 * Misc cleanups and bug fixes
6091
6092 Other contributors: Phil Blundell, Erwann Chenede, Jeremy Katz, 
6093    Padraig O'Briain, Havoc Pennington, Timo Sirainen, Nam SungHyun,
6094    Matt Wilson,
6095
6096 Overview of Changes in GTK+ 2.1.1
6097 =================================
6098 * Cleanup of use of deprecated functions in GTK+ [Manish Singh]
6099 * Add support for separately installed Pixbuf loaders [Matthias Clasen]
6100 * linux-fb improvements including window maximization. [Eric Warmenhoven]
6101 * Fix to compile again with Xft version 1 [Owen Taylor]
6102 * Fix handling of pointer on multiple screens [Owen]
6103   - Add gdk_event_set/get_screen() via evil hack
6104   - Add GdkDisplayPointerHooks to replace GdkPointerHooks
6105   - gdk_screen_get_window_at_pointer() => gdk_display_get_window_at_pointer()
6106   - Add gdk_display_get_pointer()
6107   - Make drag-and-drop between multiple screens work
6108 * Export gdk_event_new(), discourage stack allocated events [Owen]
6109 * gdk_draw_pixbuf() as better name for gdk_pixbuf_render_to_drawable() [Owen]
6110 * Basic support for RandR extension [Keith Packard, Owen]
6111 * Allow moving paned sliders all the way to the edge [Owen, Darin Adler]
6112 * Add tag_table construct property to GtkTextBuffer [Daniel Elstner]
6113 * gtk_window_set_[default_]icon_from_file [Owen, Havoc]
6114 * Fix handling of GtkSettings set from RC files on reload [Owen]
6115 * GtkTreeView work [Kristian Rietveld]
6116   - Stop editing on a focus out event for GtkCellRendererText 
6117     [Andreas J. Guelzow]
6118   - Don't accept drops on auto-sorted models
6119   - Fix evil bug with insertions to GtkTreeModelSort [Hans Petter Jansson]
6120 * Fixes for GtkIMContextXIM 
6121   [Takuro Ashie, Motonobu Ichimura, Owen, HideToshi Tajima]
6122 * Documentation fixes [Soeren Sandmann, Matthias Clasen; Joost Faassen, 
6123   Alexey A. Malyshev, Ben Martin, Havoc Pennington, Boris Shingarov, Owen, 
6124   Vitaly Tishkov, Dan Winship, Yao Zhang]
6125 * Some performance tweaks [Soeren, Padraig O'Briain]
6126 * Miscellaneous bug fixes
6127
6128 Other contributors: Jacob Berkman, Phil Blundell, Kenneth Christiansen, 
6129   Murray Cumming, Bill Haneman, Jon-Kare Hellan, Hema Seetharamaiah
6130
6131 Overview of Changes from GTK+-2.0.x to GTK+-2.1.0
6132 =================================================
6133
6134 Multihead support: [Erwann Chenede, Owen Taylor]
6135 * Multihead support 
6136 * Add GdkDisplay, GdkScreen structures
6137 * Add _for_display(), _for_screen() variants where needed in GDK and GTK+
6138   (In other cases, make the variants methods on GdkDisplay/GdkScreen
6139 * Adapt GTK+ widgets to be multihead safe
6140 * Allow initialization of GTK+ without opening a display with gtk_parse_args()
6141 * Add multihead support to demos/tests.
6142
6143 GDK:
6144 * Adapt win32 code to multihead reorganization [Hans Breuer, Tor Lillqvist]
6145 * Adapt linux-fb code to multihead reorganization [Eric Warmenhoven]
6146 * Miscellaneous linux-fb improvements [Eric]
6147 * Xinerama support [Erwann Chenede, Matthias Clasen]
6148 * Allow GDK backends to add custom argument parsing [Sven Neumann]
6149 * Add support for some addition NET window manager spec hints [Havoc Pennington]
6150 * Add ::keys-changed signal to GdkKeymap, handle keymap changes for keybindings [Owen]
6151
6152 GtkTreeView: [Kristian Rietveld]
6153 * Support stock pixbufs in GtkCellRendererPixbuf 
6154 * Allow setting the cell background for cell renderers
6155 * Support focusing individual cell renderers and other focus fixes
6156 * Make resizing tree views more efficient [Soeren Sandmann]
6157 * Add gtk_tree_model_get_string_from_iter
6158 * Improve gtk_list_store_remove API
6159 * API additions:
6160   gtk_tree_model_sort_iter_is_valid(), gtk_tree_view_expand_to_path() 
6161   Add gtk_tree_selection_get_selected_rows(),
6162   gtk_tree_selection_count_selected_rows() 
6163   gtk_tree_path_new_from_indices(),  gtk_{list,tree}_store_{reorder,swap,_move} 
6164
6165 GTK+:
6166 * Add style property for drawing menu items without shadow [Soeren]
6167 * gtk_widget_modify_color_component/font(): Allow clearing
6168   current modifications. [Owen]
6169 * Add GtkWidget::is_focus, GtkWindow::is_active properties [Owen]
6170 * Some XEMBED changes for standards compliance and Qt compatibility [Owen]
6171 * Fix menus resizing when popped up or torn off [Owen]
6172 * Improve label behavior when it gets a too small allocation [Soeren]
6173 * Add support for depth 8 StaticColor visuals to gdkrgb [Matthias]
6174 * Theme drawing improvements [Soeren]
6175 * Add types for GtkRowReference, GtkClipboard [Jonathan Blandford, James Henstridge, Owen]
6176 * Use G_TYPE_FLAG_ABSTRACT for abstract types [Matthias]
6177 * Add gtk_menu_shell_select_first() [Owen]
6178 * Add gtk_notebook_get_n_pages() [Havoc Pennington]
6179 * Allow accel_path = NULL for gtk_menu_item_set_accel_path().
6180 * Allow icon sizes to be changed via a GtkSetting [Bill Haneman, Brian Cameron, Owen]
6181
6182 GdkPixbuf:
6183 * Improve gdk-pixbuf loader tests [Soeren Sandmann]
6184 * Use iTXT chunks when necessary in PNG image saver [Matthias]
6185 * Add incremental loading for progressive jpegs [Matthias]
6186 * Add load-at-size functionality [Matthias]
6187 * Add a loader for .ANI animations [Matthias]
6188 * Load hotspot for .ICO files [Matthias]
6189
6190 Docs:
6191 * Convert docs to Docbook XML [Matthias]
6192 * Doc improvements and fixes [Matthias, Soeren, 
6193   Dennis Bj"orklund, Ross Burton, Manuel Clos, Alexey A. Malyshev, Brett Nash,
6194   Brian Tarricone, Owen, Vitaly Tishkov, Yao Zhang]
6195 * Tutorial improvements [Tony Gale]
6196
6197 General:
6198 * Add gtk-im-preedit-style/gtk-im-status-style XSETTINGS [Hidetoshi Tajima]
6199 * Clean up GDK and demos for deprecated functions [Manish Singh]
6200 * Misc fixes [Olexiy Avramchenko, Jacob Berkman, Anders Carlsson, David L. Cooper II, Robin Lu, 
6201   Eric Mader, Mark McLoughlin, Padraig O'Briain, Laszlo Peter, Hidetoshi, Vitaly Tishkov, 
6202   Shivaram Upadhyayula]
6203
6204 Overview of Changes in GTK+ 2.0.9
6205 =================================
6206 * Fix colormap refcounting, which caused frequent metacity crashes
6207   [Christopher James Lahey]
6208 * Lots of work on the Win32 backend [Tor Lillqvist]
6209  - Scrolling fixes
6210  - GdkGC clipping fixes and improvements
6211  - Started implementing all fill styles
6212 * GtkTreeView bug fixes [Kristian Rietveld]
6213  - Make TreeView reordering work on FreeBSD/Solaris [Heiner Eichmann]
6214 * Various bug fixes
6215
6216 Other contributors: Matthias Clasen, Arnaud Charlet, Vitaly Tishkov,
6217    Josh Parsons, Peter Bloomfield
6218
6219 Overview of Changes in GTK+ 2.0.8
6220 =================================
6221 * Fix typo in io-gif.c that broke loading GIFS [Akira Tagoh]
6222 * Improve redraws when scrolling on Win32 [Tor Lillqvist]
6223 * Fix problem with RENDER and XFree86-4.1 [Owen Taylor, Jamie Zawinski]
6224 * Fix problem with GtkImage placement [Owen, Sven Neumann, Soeren Sandmann]
6225 * Updated translation (el)
6226
6227 Overview of Changes in GTK+ 2.0.7
6228 =================================
6229 * Fix some memory leaks in gdk-pixbuf [Sven Neumann]
6230 * Pixbuf loader fixes  [Federico Mena Quintero, Elliot Lee]
6231 * Support depth 8 StaticColor in GdkRGB [Matthias Clasen]
6232 * Win32 fixes and improvements [Tor Lillqvist]
6233  - Keyboard handling fixes [Florent Duguet]
6234  - Fixes for building and running on Cygwin [Masahiro Sakai]
6235  - Fix gdk_window_scroll(), other GdkWindow fixes
6236  - Misc bug and build fixes [Soren Andersen, Florent, Tim Evans,
6237    J. Ali Harlow, Andreas Holzmann, Iwasa Kazmi]
6238 * Improve tracking of toplevel focus state [Owen]
6239 * XIM input method fixes [Takuro Ashie, HideToshi Tajima]
6240 * Fix the longstanding problem with <,> keys and XIM [Owen Taylor]
6241 * Fix GtkIMContextSimple for us-intl keyboards [Alexandre Oliva]
6242 * GtkIMContextSimple updates for Eastern Europe [Stanislav Brabec]
6243 * Fix the "key bindings randomly stop working" problem [Sebastian Ritau]
6244 * GtkTextView fixes [Gustavo Giraldez, Padraig O'Briain, Shivaram Upadhyayula]
6245 * GtkTreeView bugfixes [Jonathan Blandford, Kristian Rietveld]
6246   - Various memleak, ref counting fixes [Jonathan, Jorn Baayen, Daniel 
6247     Elstner, Morten Welinder]
6248   - gtk_tree_selection_selected_foreach now immediately returns if 
6249     the model is being changed [Havoc Pennington]
6250   - Fix evil bug with insertions to GtkTreeModelSort [Hans Petter Jansson]
6251 * GtkCombo fixes [Marco Pesenti Gritti, Zimler Attila, Matthias, Owen]
6252 * Fix 64-bit problem with GtkFundamentalType [Ross Alexander, Manish Singh] 
6253 * New and updated translations (am,be,bg,ca,cs,da,de,el,es,el,fa,fr,hi,hu,
6254   ja,ko,lv,ms,nl,no,pl,pt,pt_BR,ru,sk,sv,vi,zh_TW)
6255 * Many miscellaneous bug fixes
6256
6257 Other contributors: Jacob Berkman, Albert Chin, Chema Celorio,
6258    David L. Cooper II, Brent Fox, Tim Janik, Marco Pesenti Gritti, 
6259    Alex Larsson, Zenith Lau, Thomas Leonard, Gaute Lindkvist, 
6260    Paolo Maggi, Andy Wingo, Jami Pekannen, Joshua N Pritikin, 
6261    Soeren Sandmann, Vitaly Tishkov, Morten Welinder
6262
6263 Overview of Changes in GTK+ 2.0.6
6264 =================================
6265
6266 * GtkTreeView bug fixes [Jonathan Blandford, Kristian Rietveld, 
6267   Josh Green, Matthias Clasen]
6268 * Fix problem with keynav and insensitive menu items [Owen Taylor]
6269 * Fix pixbuf_from_drawable() for LSB -> MSB [Federico Mena Quintero]
6270 * Use GTK2_RC_FILES envvar instead of GTK_RC_FILES [Owen]
6271 * Focus check/radio buttons when activating with a mnemonic [Padraig O'Briain]
6272 * Cycle between multiple menubars with F10, not control-tab 
6273   [Calum Benson, Padraig]
6274 * Misc bug fixes [Jacob Berkman, Matthias Clasen, Manuel Op de Coul,
6275   Bill Haneman, Norihiro UMEDA, Shivaram Upadhyayula, Yao Zhang]
6276 * Build fixes for cross-compiling and portability [Arnaud Charlet, 
6277   J. Ali Harlow]
6278 * Updated translations (bg,ca,da,fr,ja,ko,lv,no,pl,ru,sk,sv,vi)
6279
6280 Overview of Changes in GTK+ 2.0.5
6281 =================================
6282
6283 * Fix a wrong assertion that broke gtk_file_selection_set_filename();
6284   also another fix from testing this function with non-UTF-8 filenames.
6285 * Fix incorrect property notification in GtkTextView. [James M. Cape]
6286
6287 Overview of Changes in GTK+ 2.0.4
6288 =================================
6289
6290 * Fix a number of types which were registered with the 
6291   type system with the wrong names [James Henstridge, Jonathan Blandford]
6292 * Support missing data types in GtkList/TreeStore [Daniel Elstner]
6293 * Misc GtkTreeView bug fixes [Dave Camp, Jonathan, Daniel Elstner, 
6294   Josh Parsons]
6295 * Drag and drop fixes, including a stuck grab. [Dave, Thomas Leonard, 
6296   Owen Taylor]
6297 * Calculate screen size on win32 from the "logical DPI" 
6298   [Joaquin Cuenca Abela, Tor Lillqvist]
6299 * Misc Win32 bug fixes. [Florent Duguet, Tor]
6300 * Fix theme changes for GtkMenu [Soeren Sandmann]
6301 * Fix gdk_pixbuf_from_drawable() for big endian. [Federico Mena Quintero]
6302 * Fix encoding handling for gtk_file_selection_set_filename()
6303   [Sebastian Ritau, Owen]
6304 * Fix crash with DND, Qt and Metacity [Cha Young-Ho, Havoc, Owen]
6305 * Fixes for DirectColor visuals [Shivaram Upadhyayula]
6306 * Memory leak and UMR fixes [Michael Meeks, Matthias Clasen, Valgrind]
6307 * Misc bug fixes
6308 * Updated translations (ca,cs,da,es,et,fr,ms,nl,pl,pt,pt_BR,ru,sv)
6309
6310 Other contributors: Nicholas Allen, Jacob Berkman, Remus Draica, 
6311   Nano Golveia, Tim Janik, Sergey Kuzminov, George Lebl, Garrett LeSage, 
6312   Robin Lu, Timo Meinen, Michel Selten, Boris Shingarov, Jeff Waugh
6313
6314 Overview of Changes in GTK+ 2.0.3
6315 =================================
6316
6317 * GtkTreeView fixes (Jonathan Blandford, Kristian Rietveld, Daniel Elstner)
6318 * Improve GdkRGB support for low color depths (Tor Lillqvist).
6319 * Tweak F10 behavior to focus GtkMenuBar. (Owen Taylor)
6320 * Include internal children when focusing. (Jonathan)
6321 * Win32 fixes (Tor Lillqvist, David Sterba)
6322 * Allow use of a pixmap as the drawable in gdk_pixmap_new(). (Kristian)
6323 * GdkPixbuf fixes (Matthias Clasen, Michael Natterer, Federico Mena Quintero)
6324 * GtkMenu fixes. (Soeren Sandmann)
6325 * Find gdk-pixbuf-csource when cross-compiling. (Michael Natterer)
6326 * Misc input-method related fixes (Yao Zhang, Federico)
6327 * Fix stuck grab during DND. (Dave Camp, Owen)
6328 * Remove in-bevel from scrolled-offscreen menus. (Ettore Perazzoli)
6329 * Various plug/socket fixes (Owen, Padraig O'Briain, Dave Camp, 
6330   Michael Meeks)
6331 * Handle Xlib internal connections (HideToshi Tajima)
6332 * Many miscellaneous bug fixes.
6333
6334 Other contributors: Jacob Berkman, Abigail Brady, Rich Burridge, 
6335 Anders Carlsson, Murray Cumming, Nalin Dahyabhai, James Henstridge, 
6336 David Highley, Ben Liblitt, Tim Janik, Bill Jannsen, Lauris Kaplinski, 
6337 Sergey Kuzminov, Alex Larsson, Sven Neumann, Havoc Pennington, Gareth Pearce, 
6338 Simon Floery, Thomas Leonard, Detlef Reichl, Martin Schulze, Christophe Saout,
6339 Timo Sirainen, Graham Swallow.
6340
6341 Overview of Changes in GTK+ 2.0.2
6342 =================================
6343
6344 * GtkTreeView cursor movement fixes [Kristian Rietveld]
6345 * GtkTreeModelSort iterator stamp fixes [Kristian Rietveld]
6346
6347 Overview of Changes in GTK+ 2.0.1
6348 =================================
6349
6350 * GtkTreeView fixes and performance improvements 
6351   [Kristian Rietveld, Jonathan Blandford, Mike Piepe, Dave Camp]
6352 * GtkTextView fixes [Havoc Pennington]
6353 * Fix problems with accelerators on Solaris [Padraig O'Briain]
6354 * Some fixes for key bindings on keypad keys [Owen Taylor]
6355 * Fix problem with RENDER use on big endian machines 
6356   [Owen Taylor, with help from Tuomas Kuosmanen]
6357 * Win32 fixes, especially dashed line drawing 
6358   [Tor Lillqvist, Hans Breuer]
6359 * Compile with -D_REENTRANT when appropriate [Sven Neumann]
6360 * Compiler warning cleanups [Erwann Chenede]
6361 * Fix handling of font-name XSETTING [Richard Hestilow]
6362 * Make linux-fb backend compile again [Carlo E. Prelz, Alex Larsson]
6363 * Fix problems with inappropriate menu scroll arrows [Owen]
6364 * Stock icon improvements [Jakub Steiner, Tuomas]
6365 * Much work on pixbuf loader robustness [Matthias Clasen]
6366 * Documentation improvements [Matthias, Vitaly Tishkov]
6367 * Fix some crashes in GtkWindow accelerator handling code 
6368   [Dave Camp, Matt Wilson]
6369 * Misc bug fixes
6370
6371 Other contributors: Jacob Berkman, Dennis Björklund, Seth Burgess,
6372   Murray Cumming, Johan Dahlin, John Ellis, Kang Jeong-Hee, 
6373   James Henstridge, Richard Hult, Thomas Leonard, LEE Sau Dan, 
6374   Alexey A. Malyshev, Mark McLoughlin, Michael Meeks, Sven Neumann, 
6375   Andras Salamon, Soeren Sandmann, Dan Winship, Yao Zhang
6376
6377 Overview of Changes in GTK+ 2.0.0
6378 =================================
6379
6380 * GtkTreeView fixes [Jonathan Blandford, Kristian Rietveld, Darin Adler]
6381 * Build fixes [Anders Carlsson, Tor Lillqvist, Manish Singh]
6382 * Bug fixes. [Thomas Leonard, Owen Taylor]
6383
6384 Overview of Changes in GTK+ 2.0.0 rc1
6385 =====================================
6386
6387 * GtkTreeView fixes [Kristian Rietveld, Jonathan Blandford, Richard Hult]
6388 * Text widget fixes [Havoc Pennington]
6389 * Efficiency fixes when using Xft [Owen Taylor]
6390 * Key handling fixes and other fixes for Win32 [Hans Breuer, Tor Lillqvist]
6391 * Try to fix key handling without XKEYBOARD extension [Owen]
6392 * Documentation fixes and improvements 
6393   [Matthias Clasen, Alexey Malyshev, Akira Tagoh, Vitaly Tishkov]
6394 * Widget drawing improvements [Soeren Sandmann]
6395 * Allow cycling between multiple menu bars with <Control>Tab [Owen]
6396 * Try to build libraries with only shared library dependencies on Xft to 
6397   deal with transition to Xft2 [Owen]
6398 * Portability fixes [Owen, Miroslaw Dobrzanski-Neumann]
6399 * Don't use red as the default cursor color [Owen]
6400 * Bug fixes, bug fixes, bug fixes.
6401
6402 Other contributors: Darin Adler, Jacob Berkman, Kevin Breit, Hans Breuer, 
6403   Anders Carlsson, Damon Chaplin, Finlay Dobbie, Jody Goldberg,
6404   Andreas J. Guelzow, Scott Guilbeaux, Vlad Harchev, James Henstridge,
6405   Tim Janik, Satyajit Kanungo, Charles Kerr, Sergey Kuzminov, Miles Lane, 
6406   Alexander Larsson, Paolo Maggi, Skip Montaro, Jan Mynarik, Sven Neumann, 
6407   Padraig O'Briain, Narayani Pattipati, Mark Patton, Havoc Pennington, 
6408   Ettore Perazzoli, Guillermo S. Romero, Manish Singh, Morten Welinder
6409
6410 Overview of Changes in GTK+ 1.3.15
6411 ==================================
6412
6413 * New stock and improved icon images
6414   [Tuomas Kuosmanen, Jakub Steiner, Anders Carlsson]
6415 * Widget drawing improvements for check and radio buttons,
6416   spinbuttons [Soeren Sandmann]
6417 * Clean up module search path algorithm, use GTK_PATH [Owen Taylor]
6418 * Add GtkSetting for font name. [Richard Hestilow]
6419 * Much improved key matching code, accelerators work independent
6420   of group [Owen]
6421 * Make mnemonics work for embedded GtkPlug widgets [Owen]
6422 * Keynav improvements for GtkTreeView [Kristian Rietveld]
6423 * Fix gtk_tree_view_scroll_to_cell() [Jonathan Blandford]
6424 * Rename gtk_tree_view_get_iter_root() and gtk_tree_path_new_root()
6425   to gtk_tree_view_get_iter_first() and gtk_tree_path_new_first(),
6426   add compatibility macros.
6427 * GtkTreeView bug fixes [Kristian, Anders, Damon Chaplin]
6428 * GtkTextView bug fixes [Havoc Pennington]
6429 * Pad class structures for future binary compatibility [Owen]
6430 * Tutorial improvements [Sven Neumann, Matthias Clasen]
6431 * Fixes for MULTIPLE selection target [Gregory Merchan, Owen]
6432 * Fix problems with initial widget size [Owen]
6433 * AIX compilation fixes [Miroslaw Dobrzanski-Neumann]
6434 * Win32 fixes [Hans Breuer, Tor Lillqvist]
6435 * Miscellaneous bug fixes
6436
6437 Other contributors: David L. Cooper, Eric Fischer, Jody Goldberg, 
6438   Satajyit Kanungo, Thomas Leonard, Mark Patton, Manish Singh, 
6439   Nicolas Setton
6440
6441 Overview of Changes in GTK+ 1.3.14
6442 ==================================
6443
6444 * Keyboard focus improvements [Owen Taylor]
6445 * Code cleanup [Matthias Clasen, Manish Singh, Darin Adler]
6446 * Fix accidentally exported variables [Mark McLoughlin]
6447 * GtkTreeView fixes [Jonathan Blandford, Kristian Rietveld, John Harper, Darin]
6448 * Default to yellow tooltips [Owen]
6449 * RC file fixes for reloading, priorities [Owen, Matthias]
6450 * GtkMenu behavior improvements and bug fixes [Owen, Arnaud Charlet]
6451 * GtkTextView fixes [Havoc Pennington, Daniel Elstner, Dennis Bjorklund]
6452 * Improve keynav for paned widgets, tooltips, spin buttons, notebooks, 
6453   scrolled windows [Soeren Sandmann, Padraig, Owen]
6454 * Add Emacs/Default key themes [Owen]
6455 * Win32 fixes [Hans Breuer, Tor Lillqvist]
6456 * Ethiopic input methods [Daniel Yacob]
6457 * Opaque paned window resizing [Soeren]
6458 * Tweak table expansion behavior [Tim Janik]
6459 * Fix GtkCalendar focus drawing [Bill Haneman]
6460 * Allow themeable cursor thickness [Bill]
6461 * Start of fixing of tutorial for GTK+-2.0 [Matthias]
6462 * Add a ::adjust-bounds signal to GtkRange to allow spreadsheet style
6463   scrollbars. [Jody Goldberg]
6464 * Add the ability to turn on multiple selection for GtkFileSel [Manish]
6465 * Bug fixes
6466
6467 Other contributors: Jacob Berkman, Padraig O'Briain, Anders Carlsson,
6468  Johan Dahlin, Richard Hult, Stefan Kost, Alex Larsson, Thomas Leonard,
6469  Paolo Maggi, Alexey Malyshev, Federico Mena Quintero, Skip Montaro,
6470  Sven Neumann, Havoc Pennington, Laszlo Peter, Christian Rose, Joe Shaw,
6471  Kevin Vandersloot,  Morten Welinder, Peter Williams
6472
6473 Overview of Changes in GTK+ 1.3.13
6474 ==================================
6475
6476 * Tree view fixes. [Kristian Rietveld, Jonathan Blandford, Anders Carlsson]
6477 * Tree view support for low-vision themes [Bill Haneman]
6478 * Text view bug fixes. [Havoc Pennington]
6479 * Win32 fixes and improvements.  [Tor Lillqvist, Hans Breuer, 
6480   Archaeopteryx Software]
6481 * Documentation improvements [Matthias Clasen, Havoc Pennington]
6482 * Accelerate alpha compositing using RENDER extension if present,
6483   and optimize the non-RENDER case a lot. [Owen Taylor]
6484 * Add support for "optional keybindings" (action signal returns FALSE) [Owen]
6485 * Fixed the infamous changing directory deletes filename bug 
6486   [Owen and a cast of thousands]
6487 * Add mouse cursor hiding for text widgets [Anders Carlsson]
6488 * Simple Hangul input module [Yusuke Tabata]
6489 * Removed the scary startup warning.
6490 * GdkPixbuf pixel handling fixes [Owen, Michael Hore, Jim Cape]
6491 * Converted GtkFileSelection and GtkFontSelection to use GtKTreeView widgets
6492   instead of the deprecated GtkCList [Owen]
6493 * gtkhsv.h was installed by mistake, fixed that. [reported by Ross Burton]
6494 * gdk_pixbuf_render_to_drawable() now also handles alpha pixbufs.
6495 * Made Gtkimage draw GtkPixmap, GtkImage, GdkPixbuf insensitive, prelighted,
6496   etc. [Havoc, Owen]
6497 * Marked gtk_item_factory_path_from_widget() G_CONST_RETURN. [Matt Wilson]
6498 * gtk_image_menu_item_new_from_stock() now falls back to
6499   new_with_mnemonic, for consistency with gtk_button_new_from_stock()
6500   [Havoc Pennington]
6501 * GdkModifierType is now consistently used for modifier mask parameters
6502   [Mark Patton]
6503 * gtk_widget_set_accel_path() is now publically exported.
6504
6505 Other contributors: Darin Adler, Jeffrey Baker, Damon Chaplin, Brian Cameron, 
6506   Murray Cumming, James Henstridge, Jacob Berkman, Arnaud Charlet, Jeff Franks, 
6507   Jeff Garzik, Jody Goldberg, Diego Gonzalez, Melvin Hadasht, Raja Harinath, 
6508   Tim Janik, Mike Kestner, Mathieu Lacage, Alex Larsson, Ryan Lovett, 
6509   Mark McLoughlin, Sven Neumann, Padraig O'Briain, Xavier Ordoquy, Chris Phelps, 
6510   Detlef Reichl, Guillermo S. Romero, Federico Mena Quintero, Manish Singh,
6511   HideToshi Tajima, Vitaly Tishkov, Jon Trowbridge, Sergey Vlasov.
6512
6513 Overview of Changes in GTK+ 1.3.12
6514 ==================================
6515
6516 * Fix problems with PNG saving [Michael Natterer]
6517 * Cleanups of deprecated usages [Sebastian Wilhelmi]
6518 * Win32 fixes [Tor Lillqvist]
6519 * Documentation improvements [Matthias Clasen, Havoc Pennington, 
6520   Vitaly Tishkov]
6521 * Frame buffer port fixes [Manish Singh]
6522 * GtkTextView bug fixes [Havoc Pennington, Chris Phelps]
6523 * Menu behavior improvements [Kristian Rietveld]
6524 * Make focus line width configurable, focus color work on 
6525   dark themes. [Bill Haneman, Owen Taylor]
6526 * Add state argument to gtk_paint_focus() [Bill]
6527 * Added incremental revalidation to tree view, for better apparent speed 
6528   [Jonathan Blandford]
6529 * Remove useless gtk_tree_view_column_cell_event() [Jonathan]
6530 * Display XIM status in a separate window [HideToshi Tajima]
6531 * Add GDK_DEBUG=nograbs to disable pointer, keyboard grabs [Jacob Berkman]
6532 * Add menu of Unicode control characters to GtkEntry, GtkTextView 
6533   [Dov Grobgeld, Havoc]
6534 * Pass key releases along to input methods [Owen]
6535 * Many bug fixes
6536
6537 Other contributors: Darin Adler, Fabrice Bellet, Chris Blizzard, 
6538   Hans Breuer, Anders Carlsson, Damon Chaplin, Murray Cumming, Jeff Franks, 
6539   James Henstridge, Tim Janik, Alex Larsson, George Lebl, Kjartan, Maraas, 
6540   Sven Neumann, Seth Nickell, Padraig O'Briain, Soeren Sandmann, Manish Singh, 
6541   Matt Wilson
6542
6543 Overview of Changes in GTK+ 1.3.11
6544 ==================================
6545
6546 * Massive rework of accelerator API and implementation (Tim Janik)
6547 * Major fixes to resizing and redrawing to eliminate hysteresis
6548   and optimize. (Owen Taylor, Soeren Sandmann)
6549 * Make many widgets NO_WINDOW to improve appearance and reduce
6550   drawing overhead (Owen)
6551 * Text view fixes (Havoc Pennington)
6552 * Make child widgets in GtkTextView work (Havoc)
6553 * GtkTreeModelSort fixage (Jonathan Blandford, Kristian Rietveld)
6554 * Clean up GtkTreeView drag and drop support (Owen)
6555 * Misc tree view fixes and improvements (Jonathan, Kristian, Anders, Matt Wilson)
6556 * Add gtk_window_get/set_focus(), gtk_window_set_default() as public
6557   functions (Owen, Damian Ivereigh)
6558 * Fixes to GtkPlug/GtkSocket (Michael Meeks, Owen)
6559 * Change button ordering in standard dialogs to correspond to 
6560   GNOME usability project proposal (Gregory Merchan)
6561 * Add support for context sensitivity in input methods (Owen)
6562 * Hook up gtk_im_context_set_use_preedit() (Hidetoshi Tajima)
6563 * Fix gdk_window_scroll() and other aspects of big windows (Owen)
6564 * Remove need for X connection for class initialization (Jacob Berkman)
6565 * Propagate key events to parents of focused widget (Owen)
6566 * Don't export normal GTK+ marshalers, export deprecated compat marshalers (Owen)
6567 * Many Win32 Fixes and improvements (Hans Breuer, Tor Lillqvist)
6568 * Bug and documentation fixing (Matthias Clasen, Anders Carlsson,
6569   Jacob Berkman, others.)
6570
6571 Other Contributors:
6572   Darin Adler, Marius Andreiana, Erwann Chenede, Murray Cumming, Janet Davis, 
6573   Daniel Egger, Daniel Elstner, Jeff Franks, Alex Larsson, George Lebl, 
6574   Sergey Kuzminov, Eric Lemings, Arkadiusz Miskiewicz, Padraig O'Briain, Sven Neumann, 
6575   Kristian Rietveld, Nicolas Setton, Manish Singh,  Vitaly Tishkov, Sebastian Wilhelmi, 
6576   Michael Natterer
6577
6578 Overview of Changes in GTK+ 1.3.10
6579 ==================================
6580
6581 * GtkTextView fixes [Havoc Pennington]
6582 * GtkTreeView fixes and improvements [Jonathan Blandford, Kristian,
6583   Manish Singh, Joshua Pritikin, Oleg Maiboroda, James Henstridge]
6584 * gtkdemo improvements [Kristian Rietveld]
6585 * Drag and drop fixes to generic code and widgets 
6586   [Owen Taylor, Damian Ivereigh]
6587 * Documentation improvement [Havoc Pennington, Matthias Clasen]
6588 * Spelling fixes [Jacob Berkman]
6589 * Move signals to the GtkEditable interface [Kristian]
6590 * Further stock image improvements [Jakub Steiner]
6591 * Support text chunks for the PGN loader, add gdk_pixbuf_get_option()
6592   [Sven Neumann]
6593 * Rename gdk_pixbuf_new_from_stream back to new_from_inline [Owen]
6594 * Automatically call setlocale(), unless explicitly disabled [Owen]
6595 * Property addition to various widgets [Michael Meeks, Owen]
6596 * Support building with automake-1.4 [James]
6597 * Make GtkRadioButton groups act as a single focus point [Owen]
6598 * Move gdk_window_lookup etc. to be cross-platform [Matthias]
6599 * Draw spinbuttons variably sized [Kristian]
6600 * Separate GdkAtom out from X atoms for compatibility with future
6601   multihead changes [Owen]
6602 * Require gdk_threads_init() to be explicitly called instead
6603   of piggybacking off of g_thread_init(). [Owen]
6604 * Improvements to text-view/label/entry popup menus [Damian, Jacob, Owen]
6605 * Bug fixes and cleanup [Matthias, others]
6606
6607 Other Contributors:
6608   Mark McLoughin, Mikael Hermansson, Soeren Sandmann, Anders Carlsson,
6609   Tim Janik, Murray Cumming, Hidetoshi Tajima, Padraig O'Briain, 
6610   Hans Breuer, Vitaly Tishkov, Dov Grobgeld
6611  
6612
6613 Overview of Changes in GTK+ 1.3.9
6614 =================================
6615
6616 * Add editable text cells to GtkTreeView.
6617   Keynav, drawing fixes in GtkTreeView [Jonathan Blandford]
6618 * Text widget no longer always has a \n in it. [Havoc Pennington]
6619 * Text widget bug fixes [Havoc, Dov Grobgeld, Hidetoshi Tajima]
6620 * Allow -1 for width/height in gdk_pixbuf_render_*(). [Matthias Clasen]
6621 * Minor fix for major resizing problems in recent releases [Owen Taylor]
6622 * Restore ability to set _set properties to TRUE for 
6623   GtkCellRendererText, GtkTextTag [Owen]
6624 * Cursor drawing improvements [Owen]
6625 * Win32 fixes [Hans Breuer]
6626 * Mark various functions as deprecated or private.
6627 * Misc bug fixes, portability fixes, and cleanups.
6628
6629 Other Contributors: 
6630  Vitaly Tishkov, Christian Rose, Frank Belew, Jeff Franks, Sven Neumann,
6631  Kristian Rietveld, Vitaly Tishkov, Joshua N. Pritikin, Matt Wilson, 
6632  James Henstridge, Detlef Reichl
6633
6634 Overview of Changes in GTK+ 1.3.8
6635 =================================
6636
6637 * GtkTreeView and GtkTreeModel API cleanups/improvements [Jrb]
6638 * GtkOptionMenu scrollwheel support [Alex]
6639 * GtkModule search paths [Owen]
6640 * Documenatation updates [Havoc,Jrb]
6641 * Major Gdk cleanup [Owen]
6642 * Miscellaneous other fixes/cleanups
6643
6644 Other Contributors:
6645   Joshua N Pritikin, Padraig O'Briain, Jakub Steiner, Matthias Clasen,
6646   Matt Wilson, James Henstridge
6647
6648 Overview of Changes in GTK+ 1.3.7
6649 =================================
6650
6651 * Many Pixbuf (loader) improvements [Matthias Clasen, Soeren Sandmann]
6652 * Added publically installed utility gdk-pixbuf-csource to generate
6653   inlined pixbufs in C source code [Tim Janik]
6654 * Optional movement of button children on press [Soeren, Owen Taylor]
6655 * Interactive searching in GtkTreeView [Kristian Rietveld]
6656 * Sorting/ordering improvements for GtkTreeView [Kris, Jonathan Blandford]
6657 * Animation of expander motion for GtkTreeView [Anders Carlsson]
6658 * Lots of misc GtkTreeView fixes and improvements [Jonathan]
6659 * New/improved stock icons [Jakub Steiner] 
6660 * Code and API rework for window resizing [Havoc Pennington]
6661 * Converted accel groups to GObject [James Henstridge]
6662 * More property support improvements
6663 * Add facility for "secondary" buttons in 
6664   GtkButtonBox/GtkDialog [Gregory Merchan]
6665 * Disentangled child visability from MAPPED state [Owen]
6666 * Plug/Socket improvements and port to the XEMBED protocol [Owen]
6667 * Added priorities for styles in RC files, 
6668   support multiple parse contents [Owen]
6669 * Made GdkVisual and GdkDevice GObjects [Alexander Larsson]
6670 * Key binding improvements [Havoc]
6671 * Added GtkWidget::event-after signal since normal event handling
6672   is now aborted as soon as a handler returned TRUE [Tim]
6673 * Dnd fixes and improved icon support [Owen]
6674 * Removed GtkPacker widget
6675 * Fixing missing paired getters/setters [Kris]
6676 * Nuked remaining GtkArg cruft, implemented container/child properties [Tim]
6677 * Added window grab groups [Owen]
6678 * Many frame buffer improvements [Alex]
6679 * Win32 fixes and improvements [Hans Breuer]
6680 * Warning fixes [Darin Adler]
6681 * Miscellaneous bug and API fixes [Matthias et. al]
6682
6683 Other Contributors:
6684   Joshua N Pritikin, Hidetoshi Tajima, Manish Singh, ERDI Gergo, Jens Finke,
6685   Chema Celorio, Lee Mallabone, Vitaly Tishkov, Sebastian Wilhelmi,
6686   Nicola Girardi, Sven Neumann, Padraig O'Briain, Michael Natterer,
6687   Suresh Chandrasekharan, Jonas Borgström, Jay Cox, Michael Meeks,
6688   Mathias Hasselmann, Peter Williams, Thomas Broyer, Kjartan Maraas,
6689   Joel Becker, Jeff Franks, Brian Cameron, Skip Montanaro
6690
6691 Overview of Changes in GTK+ 1.3.6
6692 =================================
6693
6694 * Properly renders strikethrough text
6695 * win32 fixes
6696 * Added "scale" property to GtkTextTag and GtkCellRendererText to do 
6697   relative font scaling
6698 * Added "format_value" signal to GtkScale to reformat value text
6699 * framebuffer fixes
6700 * Property support added to lots of widgets
6701 * Many GtkTreeView new features and API/implementation fixes
6702 * Lots of new_with_mnemonic() convenience functions
6703 * Change GtkImageMenuItem API to be more consistent/useful
6704 * Added lots of new stock items/icons
6705 * Rewrote GtkRange/GtkScale/GtkScrollbar, includes support for
6706   enabling/disabling extra scrollbar stepper arrows in gtkrc so NeXT
6707   themes won't need broken hacks
6708 * Convenience API for GtkRange similar to the one added to GtkSpinButton
6709   a while back
6710 * Make menubar/toolbar work properly with xthickness/ythickness of 1 or 0, 
6711   and move some attributes from program settings to user settings.
6712   Allows nice 1-pixel-bevel themes.
6713 * Moved ::focus virtual function from GtkContainer to GtkWidget
6714 * Plenty of bug fixes
6715
6716 Overview of Changes in GTK+ 1.3.5
6717 =================================
6718
6719 * New default theme based on Raleigh theme for 1.2.x.
6720 * Dependency on the ATK library added as a step to
6721   providing accessibility-enabling interfaces
6722 * XEMBED-based GtkPlug/GtkSocket now basically works.
6723 * Drag and drop of column headers in GtkTreeView
6724 * GtkColorSelector work: hooks for saving and propagating palette, UI tweaks,
6725   and API sanitation
6726 * Key binding fixes
6727 * Configurable padding/spacing in a lot of places
6728 * Invisible text in GtkTextView fixed
6729 * SHM segments now created with a mode of 0600
6730 * Bug fixes
6731
6732 Overview of Changes in GTK+ 1.3.4
6733 =================================
6734
6735 * Win32 fixes
6736 * GtkTreeView improvements and fixes
6737 * Fix glib-2.0.m4
6738 * Miscellaneous bug fixes
6739
6740 Overview of Changes in GTK+ 1.3.3
6741 =================================
6742
6743 [ 5600 lines of ChangeLog ]
6744
6745 * API cleanups
6746 * Win32 work (Tor, Hans Breuer)
6747 * Focus improvements (Owen)
6748 * Frame buffer improvements (Alex)
6749 * Work on GtkTextView (Havoc)
6750 * Much work on GtkTreeView (Jonathan)
6751 * Selectable labels (Havoc)
6752 * Converted many arguments to properties (Lee Mallabone, John Margaglione)
6753 * Add exact regions to GdkExposeEvent, propagate it. (Alex)
6754 * Added ability to have resize grips in status bars (etc.) using
6755   _NET_WM_MOVERESIZE protocol. (Havoc)
6756 * Added mnemnonic mechanism to make setting underline accelerators
6757   much easier. (Alex)
6758 * Add per-style property mechanism to allow themes to change 
6759   geometry parameters. (Tim)
6760 * Added global settings mechanisms for settings such as double-click
6761   time. (Tim, Owen)
6762 * Various support functions for new and old WM properties (Havoc, Alex)
6763 * Add TRUE-stops-returns for boolean-returning signals (Ron Steinke)
6764
6765 Overview of Changes in GTK+ 1.3.2
6766 =================================
6767
6768 GTK Core:
6769
6770 * New stock-icon and stock-item system. Use themeable pixbufs in
6771   dialogs, buttons, etc. [Havoc]
6772 * Theme engines reworked to use derivation and new object system. [Owen]
6773 * Added GtkClipboard object for simple selection handling. [Owen]
6774 * Make GtkEditable an interface, move implementation to GtkOldEditable for
6775   compat. [Owen]
6776 * Better handling of default directionality. [Robert]
6777 * Use GSignal as backend for GtkSignal and other GObject stuff. [Tim]
6778 * Move theme engines to GTypePlugin. [Owen]
6779
6780 GDK:
6781
6782 * Beginning of implementation of client parts of new window manager spec. [Owen]
6783 * Make gdk_drawable_get_image() work with backing store. [Havoc]
6784
6785 Widgets:
6786
6787 * New text widget [Havoc]
6788   - Adjustable tab handling.
6789   - Ability to have scrolling side areas in new text widget for tabs/line numbers.
6790   - Many cleanups and small improvements.
6791 * Improvements to submenu navigation [Nils Barth/David Santiago] and
6792   scrolling menus. [Alex]
6793 * Simplification of progress bar API. [Havoc]
6794 * Make GtkImage a generic image-display widget. [Havoc]
6795 * New GtkTreeView tree widget. Model/view architecture, flexible rendering,
6796   large datasets, etc. [Jonathan]
6797 * New GtkMessageBox widget for message display. [Havoc]
6798 * Allow labels to have contents set from XML-like markup language. [Havoc]
6799 * Make dialogs derive from GtkDialog and use stock buttons. [Havoc]
6800
6801 Internationalization:
6802
6803 * Proper character set conversion for clipboard/selection. [Owen]
6804 * New input method system via loadable modules; support on-the-spot
6805   preedit in GtkEntry and new text widget; allow switching input methods
6806   on the fly; include modules for XIM and demo Cyrillic-transliteration 
6807   module. [Owen]
6808 * VIQR, Thai, and Inuktitut input methods. [Robert]
6809 * Convert po files to UTF-8. [Robert]
6810
6811 gdk-pixbuf:
6812
6813 * Full-alpha compositing for gdk-pixbuf on drawable. [Havoc]
6814 * Add simple saving to gdk-pixbuf. [David Welton/Havoc]
6815 * Add improved error handling with GError to gdk-pixbuf. [Havoc]
6816
6817 Ports:
6818
6819 * Much work on Win32 Port. [Tor/Hans]
6820 * Much work on Linux-FB Port. [Elliot/Alex]
6821
6822 Misc:
6823
6824 * Start of new gtk-demo demo program. [Owen/Jonathan]
6825 * Bug fixes and more bug fixes.
6826
6827
6828 Overview of Changes in GTK+ 1.3.1:
6829
6830 * GTK+ now uses the Pango library for text manipulation. All
6831   strings in GTK+ now are in Unicode, languages written
6832   from right-to-left, and complex-text languages are now supported.
6833 * The gdk-pixbuf library for image loading and manipulation is 
6834   has been integrated with GTK+.
6835 * The GTK+ object system has mostly been moved to GLib, separating
6836   it from the GUI code. Many significant enhancements have been
6837   made as part of this.
6838 * A new text widget is now included. This started as a port
6839   of the Tk text widget, and includes such features of the Tk
6840   text widget as tags, marks, and unicode text support. It
6841   has been enhanced to support model-view operation and the
6842   full power of Pango.
6843 * The GDK library has been extensively revised to support multiple
6844   windowing systems. The only fully functional backend in 1.3.1
6845   is the X11 backend, however, ports to Win32, Linux-framebuffer,
6846   Nano-X, BeOS, and MacOS exist in various states of completion,
6847   and at least some of these will be finished and integrated in 
6848   before the final GTK+-2.0 release.
6849 * 32-bit coordinates are now supported throughout GDK and GTK+
6850   (they are emulated where not supported by the windowing system.)
6851 * Many minor bug fixes and enhancements. Incompatible changes
6852   are documented in docs/Changes-2.0.txt
6853
6854 Overview of Changes in GTK+ 1.2.8:
6855
6856 * GNU Make 3.79 bug workaround
6857 * FAQ and tutorial updates and improvements
6858 * Miscellaneous bug fixes: CList, Calendar, rc-files, FontSelection
6859
6860 Overview of Changes in GTK+ 1.2.7:
6861
6862 * More header cleanups.
6863 * Fixed activation bug for insensitive widgets.
6864 * Locale fixes to RC file parsing code.
6865 * Miscellaneous bugfixes for Item Factory, CList, CTree, X Selections,
6866   HScale, VScale, Pixmap, Viewport, OptionMenu, Entry and Notebook.
6867 * Upgrade to libtool 1.3.4.
6868
6869 Overview of Changes in GTK+ 1.2.6:
6870
6871 * container queue_resize fixes
6872 * gtk[vh]scale: minor fixups
6873 * rename idle to idle_id in testgtk to avoid conflicts with 
6874   broken libs
6875 * More consistent naming of gtkrc files
6876 * Added language support: ro, uk
6877
6878 Overview of Changes in GTK+ 1.2.5:
6879
6880 * more GtkCTree and GtkWindow bug fixes.
6881 * more redraw/resize queue fixes, better expose event
6882   discarding code.
6883 * more miscellaneous bugs fixed
6884 * new configure.in option --disable-rebuilds to completely disable
6885   rebuilds of autogenerated sources.
6886 * check for 5.002 now, to avoid failing autogeneration build rules due
6887   to old perl versions.
6888 * fonts (and fontsets) are cached now.
6889 * more autogeneration make rules and dependency fixups, we should be
6890   save with autogeneration up to make -j12 now ;)
6891 * new window position GTK_WIN_POS_CENTER_ALWAYS, which will recenter the
6892   GtkWindow on every size change.
6893 * major rework of window manager hints handling code, fixed a bunch of
6894   races with the new resizing code.
6895 * the new wm hints and resizing code is absolutely perfect and bug free now,
6896   it only lacks testing ;)
6897 * fixed up various rc style memory problems.
6898 * gtk_widget_modify_style() now properly changes the style of realized widgets
6899   and references the style passed into it. if people worked around this bug,
6900   this will introduce a slight memory leak in their code.
6901   The code should typically look like:
6902             GtkRcStyle *rc_style = gtk_rc_style_new ();
6903             [...]
6904             gtk_widget_modify_style (widget, rc_style);
6905             gtk_rc_style_unref (rc_style);
6906 * fix problems with positioning menus offscreen.
6907 * GtkText fixes for some crashes and drawing errors.
6908 * Better handling for unexpected window destroys in GDK and GTK+.
6909   This should make it possible to use a GtkPlug and catch the
6910   case where its parent socket is randomly killed.
6911 * FAQ updates.
6912 * FileSelection i18n patches, RadioButton fixups.
6913 * many translation improvements.
6914 * miscellaneous other bugs fixed.
6915
6916 Overview of Changes in GTK+ 1.2.4:
6917
6918 * DnD improvements (drags can be canceled with Esc now).
6919 * suppressed configure event reordering in Gdk.
6920 * rewrite of Gtk's configure event handling.
6921 * major improvements for the object argument system (Elena Devdariani).
6922 * major bugfixes for threading, GtkNotebook, GtkItemFactory, GtkCList and
6923   GtkCTree.
6924 * tutorial/FAQ updates, new file generation.txt on autogenerated sources.
6925 * configure's --with-glib= is "officially" unsupported.
6926 * upgrade to libtool 1.3.3.
6927 * various buglets fixed.
6928
6929 Overview of Changes in GTK+ 1.2.3:
6930
6931 * Upgrade to libtool 1.3
6932 * Check for dgettext (for systems with old versions of GNU Gettext)
6933 * Many bug fixes (see ChangeLog for details)
6934
6935 Overview of Changes in GTK+ 1.2.2:
6936
6937 * Improved Dnd behaviour with Motif applications.
6938 * Bug fixes for the Gtk selection code.
6939 * Minor bug fixes to the Gdk Atom cache and Dnd code (with --display option).
6940 * Bug fixes and leak plugs for the Gdk IM code.
6941 * Added gtk_object_get() facility to retrieve object arguments easily.
6942   The var args list expects ("arg-name", &value) pairs.
6943 * Fixed mapping for GdkInputCondition<->GIOCondition, this should fix
6944   problems where closed pipes were no longer signaling GDK_INPUT_READ on
6945   systems with a native poll().
6946 * Some cleanups to GtkLabel's memory allocation code (shouldn't leak memory
6947   anymore).
6948 * We don't attempt to lookup xpm color "None" anymore, this should prevent
6949   eXodus (commercial X windows server) from popping up a color dialog every
6950   time a transparent pixmap is created.
6951 * Fixed bug where Gtk timeout/idle handlers would execute without the global
6952   Gdk lock being held.
6953 * Other minor bug fixes.
6954
6955 Overview of Changes in GTK+ 1.2.1:
6956
6957 * Many Bug fixes have been applied to the menu and accelerator code.
6958 * GtkItemFactory can "adopt" foreign menu items now and manage their
6959   accelerator installation. This is often required to get GtkItemFactory
6960   like accelerator propagation between different windows with the same
6961   menu hierarchy and for centralized parsing and saving of accelerators.
6962 * GtkCList/GtkCTree buttons should always display correctly now.
6963 * Miscellaneous other bug fixes.
6964
6965 What's New in GTK+ 1.2.0 (since 1.0.x):
6966
6967 * New widgets: GtkFontSelector, GtkPacker, GtkItemFactory, GtkCTree,
6968   GtkInvisible, GtkCalendar, GtkLayout, GtkPlug, GtkSocket
6969 * Many new features and robustness for existing widgets
6970 * Theme support
6971 * New DND implementation
6972 * Internationalization of standard dialogs
6973 * New key binding system
6974 * Tearoff menus and menu accelerators
6975 * Wide character support for entry and text
6976 * Resizing code has been overhauled
6977 * Queued redraws of partial areas
6978 * Far better support for object arguments
6979 * Speed optimizations
6980 * Runtime loading of dynamic modules
6981 * Support for GLib log domains
6982 * Tutorial improvements
6983 * A bug fix or two
6984
6985 Overview of Changes in GTK+ 1.1.16:
6986
6987 * Major fixes and improvements for handlebox
6988 * A change to the way widget->requisition works. Now,
6989   widget->requisition is always what the widget requested,
6990   unmodified by the usize. See Changes-1.2.txt for details.
6991   This correct various bugs with gtk_widget_set_usize().
6992 * Fixes for XIM on X11R5 systems
6993 * Don't allow cut-and-paste of text in password-style entries
6994 * --enable-debug is now on by default for the development release.
6995   (When compiling for "production", use --enable-debug=minimum)
6996 * Handle systems where Helvetica is not present more gracefully
6997 * Fixes for memory leaks
6998 * CList and CTree fixes
6999 * Bug fixes for drawing problems. 
7000 * Miscellaneous bug fixes to GtkLabel, GtkCList, GtkCTree,
7001   GtkColorsel, Focusing, DND
7002 * Tutorial improvements
7003
7004 Overview of Changes in GTK+ 1.1.15:
7005
7006 * Tutorial Updates
7007 * Added --libs gthread to gtk-config 
7008 * Bug fixes
7009
7010 What is new in GTK+ 1.1.14:
7011
7012 * Additions to docs/Changes-1.2.txt
7013 * Just warn when loading theme engine fails
7014 * CLAMP GtkScale digits to a meaningful range
7015 * GTK_LOCALDIR is now defined in a better fashion
7016 * New functions (feature freeze, we know...):
7017     gtk_menu_set_title()
7018     gtk_toggle_button_get_active()
7019 * Some locale fixups in gtkrc code
7020 * Fixes to make gtk_radio_button_set_group() keep only
7021   one radio button in the group active
7022 * Foreign windows are now always treated as viewable; this fixes
7023   a problem where updating didn't occur properly in GtkPlug
7024 * DND fixes for 64 bit architectures, and for specifying operations 
7025   with modifier keys.
7026 * Major revisions to GtkLayout: avoid having to create window
7027   for NO_WINDOW children, adjust allocations of children as 
7028   scrolled so queued draws work, and a resize is queued instead
7029   of allocating directly in a put() or move()
7030
7031 What is new in GTK+ 1.1.13:
7032
7033 * Dnd and selection bug fixes and memory purification.
7034 * Widget sensitivity fixups.
7035 * Tooltips windows are now named "gtk-tooltips" so rc file rules
7036   can match tooltips windows. Fixed interaction of tooltips and NO_WINDOW
7037   widgets.
7038 * Spin buttons now update their values upon value retrieval.
7039 * Overhaul of the resizing vs. redrawing logic to reduce redrawing needs
7040   a lot. Gtk makes full use of the draw_area coalescing code now, which
7041   got minorly improved as well.
7042 * Containers map their Gdk windows after their children now to reduce
7043   expose event generation.
7044 * Gdk event queue fixups, this solves the double-click problems people were
7045   recently having.
7046 * Account for the fact that GSource's are only properly reentrant from
7047   within dispatch(), thus we don't do Gdk event processing from within
7048   check() or prepare() anymore.
7049 * Rc files feature a bg_pixmap value of "<none>" now.
7050 * Improved session management support in Gdk.  
7051 * Automatic disabling of NLS if no gettext is found should work now.
7052 * Removed deprecated functions, docs/Changes-1.2.txt gives an overview.
7053 * Gtk+ development now requires GNU autoconf 2.13, GNU automake 1.4
7054   and GNU libtool 1.2d.
7055 * More bug fixes all over the place.
7056
7057 What is new in GTK+ 1.1.12:
7058
7059 * Korean translation added
7060 * Fixed memory leaks
7061 * A few other bug fixes
7062
7063 What is new in GTK+ 1.1.11:
7064
7065 * Dutch, Japanese, Swedish, Polish, and Norwegian translations
7066 * Removed deprecated _interp variants: gtk_container_foreach_interp, 
7067   gtk_idle_add_interp, gtk_timeout_add_interp, gtk_signal_connect_interp
7068 * Lots of cast corrections
7069 * Many fixes 
7070
7071 What is new in GTK+ 1.1.9:
7072
7073 * Check for broken glibc 2.0 mb functions and avoid them
7074 * Label and Entry display fixes 
7075 * Move main thread back to GDK, for locking when translating events
7076 * Bug fixes
7077
7078 What is new in GTK+ 1.1.8:
7079
7080 * Added support for gettext and the localization of the standard
7081   dialogs.
7082 * Added line-wrapping for the label, and JUSTIFY_FILL
7083 * Support reordering via drag and drop in  CList and CTree.
7084 * Replaced GtkDrawWindow widget with a GTK_USER_DRAW flag
7085 * Extended gtkpaned API to support minimum sizes and proportional
7086   resizing.
7087 * Changed the handling of shared memory segments so as to 
7088   remove the need for GTK+ to set up signal handlers.
7089 * Re-implemented event loop in terms of the event loop
7090   that has been added to GLib 1.1.8
7091 * Added 'grab_focus' signal to allow keyboard accelerators
7092   for entries.
7093 * Load locale specific RC files if present.
7094 * Bug fixes.
7095
7096 What is new in GTK+ 1.1.7:
7097
7098 * Fixed memory mis-allocation in default files code
7099 * Various event handling fixes
7100 * Wide character support for entry and text
7101 * Destroy widgets _after_ propagating unrealize signals through 
7102   widget hierarchy
7103 * Only build XIM-support if available
7104 * Tutorial and examples updates
7105 * Added gtk_drag_source_unset()
7106
7107 What is new in GTK+ 1.1.6:
7108
7109 * The signal system now features emission hooks with special semantics,
7110   refer to the ChangeLog for this.
7111 * Minor? speedups and memory reductions to the emission handling of the
7112   signal system.
7113 * _interp() function variants are deprecated now. the corresponding *_full()
7114   variants are provided for a long time now.
7115 * Dnd abort timeout increased to 10 minutes.
7116 * GtkScrolledWindow inherits from GtkBin now.
7117 * GTK_POLICY_NEVER is implemented for scrolled windows now.
7118 * Lots of API clean ups.
7119 * Incremental freezing abilities.
7120 * Integrated widgets from the GNOME tree: GtkLayout, GtkPlug and GtkSocket.
7121 * New window functions for transient relationship, default size, and 
7122   geometry hints
7123 * Default rc files are now read in (<sysconfdir/etc/gtkrc and ~/.gtkrc)
7124   GTK_RC_FILES environment variable and functions are provided to configure
7125   this behavior
7126 * Read doc/Changes-1.2.txt to properly adapt your code.
7127 * Bug Fixes.
7128
7129 What is new in GTK+ 1.1.5:
7130
7131 * Theme integration
7132 * Widget style modification is now handled through GtkRcStyles
7133 * GtkPixmaps now grey out pixmaps when insensitive
7134 * Notebook enhancements
7135 * Shadow configurability for menubars and handleboxes
7136 * DND enhancements
7137 * gtkfilesel now supports automounters better
7138 * Implementation of expose compression
7139 * Queued redraws of partial areas
7140 * Scrolledwindow (+Viewport) source incompatibilities, children that are added
7141   to a scrolled window don't get an automatic viewport anymore. a convenience
7142   function gtk_scrolled_window_add_with_viewport() is supplied for this task
7143 * Deprecated functions will now issue a message, informing the programmer about
7144   the use of this function. These functions will get removed in future versions
7145 * Non-functional functions got removed entirely
7146 * gtk_widget_new() and gtk_object_new() will now auto-construct new objects.
7147   A new function gtk_object_default_construct() is provided now which should
7148   be called after every gtk_type_new() to perform the auto-construction
7149 * Improved argument support of several widgets
7150 * Bug Fixes
7151
7152 What is new in GTK+ 1.1.3:
7153
7154 * GtkCList/GtkCTree now have the ability to:
7155     - hide/show individual columns
7156     - disable/enable column resizing
7157     - set min and max for column widths
7158     - set expander style of the ctree
7159     - set/get row and cell styles
7160     - set spacing between tree expander and cell contents in ctree
7161     - toggle auto_resize for columns
7162 * Must enhanced DND support, removed old DND code
7163 * Idle functions are now implemented via GHook, giving a slight speed
7164   improvement
7165 * An environment variable GTK_MODULES which takes a colon separated
7166   list of module names GTK+ will now automatically load at gtk_init() startup
7167 * GtkFontSel now has support for an extra 'base' filter
7168 * New function gdk_window_set_root_origin to get the real geometry taking
7169   into account window manager offsets
7170 * New function gtk_text_set_line_wrap to toggle line wrapping
7171 * New function gtk_widget_add_events which safely adds additional
7172   events to a widget's event mask
7173 * New function gdk_event_get_time to get the timestamp from a generic
7174   event
7175 * New widget GtkCalendar
7176 * New widget GtkInvisible - InputOnly offscreen windows used for reliable
7177   pointer grabs and selection handling in DND code
7178 * New functions gtk_object_remove_no_notify[_by_id] to remove a certain
7179   data portion without invocation of its destroy notifier 
7180 * gtk_spin_button_construct is now deprecated, use gtk_spin_button_configure
7181   instead 
7182 * gtk_clist_set_border is now deprecated, use gtk_clist_set_shadow_type 
7183   instead
7184 * Removed functions gtk_object_set_data_destroy[_by_id] 
7185 * Documentation additions/updates 
7186 * HTML and plain text files are now included in the distribution
7187 * Bug fixes, typeness corrections, and general fixups
7188
7189 What is new in GTK+ 1.1.2:
7190
7191 * Gtk+ is now featuring runtime loading of dynamic modules via the
7192   --gtk-modules= command line switch. such modules have to export a
7193   G_MODULE_EXPORT void gtk_module_init (gint *argc, gchar ***argv);
7194   function which will be invoked to initialize the module. since such
7195   modules may create new widget types, they are always resident.
7196 * The tutorial has been updated again.
7197 * Changes to menus including tearoff menus and accelerators.
7198 * Better support for modal dialogs.
7199 * Removed CAN_FOCUS by default from scrollbars and button children of toolbar.
7200 * More improvements and fixes for GtkCList and GtkCTree (i.e. row sorting).
7201 * GtkCTree rows can be unselectable now.
7202 * The GtkCTree API has undergone major renames (see ChangeLog entry from Lars
7203   Hamann on Tue Aug 18 00:29:13 1998).
7204 * A bunch of varargs functions changed to get va_lists working on systems that
7205   implement va_lists as arrays.
7206 * Improvements to the gdkrgb code.
7207 * Improvements to Gdk color handling so we greatly reduce server traffic and
7208   don't leak colors anymore.
7209 * Improved internal widget tree iterators (the GtkContainer::foreach signal
7210   vanished because of this).
7211 * Option menus can have the keyboard focus now.
7212 * More fixups to the text widget.
7213 * GtkFileSelection should behave much more nicely in combination with AFS now.
7214 * Support for label underlining.
7215 * Support for GLib 1.1.3 log domains.
7216 * Documentation improvements.
7217 * Configuration fixes on various platforms.
7218 * Miscellaneous fixes to XInput support.
7219 * Build with shared library dependencies on Linux
7220 * Fix for a major bug in the type systems memory allocation code that could
7221   cause random crashes.
7222 * Libtool update to version 1.2b.
7223 * Lots of bugfixes and cleanups again ;)
7224
7225
7226 What is new in GTK+ 1.1.1:
7227
7228 * Tutorial updates and additions.
7229 * Key binding support for GtkListItems and GtkList.
7230 * Extended selection mode and autoscrolling for GtkLists.
7231 * A GtkCtree now operates on GtkCTreeNode* structures rather than GList*.
7232 * GtkCTreeNodes can now be created from GNode trees.
7233 * Bug fixes for GtkNotebook, GtkCList, GtkCombo and GdkWindow reparentation.
7234
7235
7236 What is new in GTK+ 1.1.0:
7237
7238 * New widget GtkFontSelector.
7239 * New featureful progress bar.
7240 * New container widget GtkPacker.
7241 * New object GtkItemFactory, GtkMenuFactory is deprecated.
7242 * New key binding system, configurable via rcfiles, similar to styles.
7243 * New widget GtkCTree with drag selections and keyboard movement and
7244   and horizontal scrolling. Features also implemented for GtkCList.
7245 * Significant speedups to widget creation and destruction through caching
7246   colormap and visual queries to the XServer.
7247 * Speedups for type creation and especially gtk_type_is_a() checks.
7248 * Speedups in signal lookup, creation and emissions and connection handling.
7249 * Minor speedups with object data allocation and destruction.
7250 * Additions to the signal handling API (e.g. *_emitv).
7251 * Support for rc-file reparsing.
7252 * Resizing logic is now implemented on container widget basis, rather than
7253   for toplevel GtkWindows only.
7254 * Buttons support relief styles now.
7255 * Some widgets are now allocated through memchunks to behave more memory wise.
7256 * Newly included file gtkfeatures.h which defines compatibility macros to
7257   test for certain API features upon program compilation.
7258 * Child arguments support for container widgets.
7259 * Far better support for object arguments, revamp of the underlying
7260   mechanism for speed and reusability. Child/object arguments don't
7261   need to be preceded by the "GtkType::" portion anymore.
7262 * Removed GtkAcceleratorTable in favour of GtkAccelGroup, accelerator display
7263   is now performed by a new widget GtkAccelLabel.
7264 * Overhaul of the resizing code. Resizing behaviour can now be specified
7265   on GtkContainer basis, so the underlying algorithm isn't only available
7266   for GtkWindows.
7267 * GtkTables are now fully resizable.
7268 * The GtkType system now supports an additional base class initialization
7269   function.
7270 * GtkStyles and key bindings can now be looked up depending on the base
7271   types of a widget, through a new keyword `class' in rc files.
7272 * GtkButton derives from GtkBin (finally).  
7273 * More descriptive error messages on rc parsing.  
7274 * Runtime information is available to query enum/flag definition values.
7275 * Upgrade to libtool-1.2
7276 * Legions of bug fixes, memory leaks, segfaults, of-by-something errors...
7277   including those that already went into the 1.0.x branch.
7278 * A big bunch of features and cosmetic fixups that just got lost in
7279   the masses of changesonfigure problem when cross-compiling