diff --git a/NEWS b/NEWS index db3f4dbaa5..2aa59ba3e5 100644 --- a/NEWS +++ b/NEWS @@ -16,9 +16,19 @@ Overview of Changes in GTK+ 3.19.7 * Themes: - Many Adwaita fixes +* GTK+ widget drawing scalability has been improved (for containers + with many children, like large list boxes or flow boxes). + +* Drag-and-Drop has been rearchitected to move the input handling into + GDK, where different backends can handle it according to their needs + and capabilities. The new, 'managed' DND is currently implemented + for X11 and Wayland. + * Wayland: - - Support kinetic scrolling, using the new events in - version 5 of the wl_pointer interface + - Support kinetic scrolling, using the new events in version 5 of the + wl_pointer interface + - Suppport DND actions and drag cancellation that were added in version + 3 of the wl_data_offer interface * Bugs fixed: 722727 Widget state CSS pseudoclasses should work with adjacent selectors @@ -47,6 +57,8 @@ Overview of Changes in GTK+ 3.19.7 760680 Emitting "shutdown" signal twice leads to a crash 760748 GtkTextView should allow hooks for reseting blink time 760754 gedit crashes detaching a tab + 756729 No kinetic scrolling on Wayland + 760370 GDK-ify drag and drop * Translation updates: Brazilian Portuguese diff --git a/configure.ac b/configure.ac index da280261ee..b032629d83 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ m4_define([gtk_major_version], [3]) m4_define([gtk_minor_version], [19]) -m4_define([gtk_micro_version], [6]) +m4_define([gtk_micro_version], [7]) m4_define([gtk_interface_age], [0]) m4_define([gtk_binary_age], [m4_eval(100 * gtk_minor_version + gtk_micro_version)])