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