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