This commit is contained in:
Matthias Clasen 2020-03-21 20:38:56 -04:00
parent dabd09bc42
commit 92b50c5e2a
2 changed files with 27 additions and 18 deletions

43
NEWS
View File

@ -1,14 +1,6 @@
Overview of Changes in GTK 3.98.1 Overview of Changes in GTK 3.98.1
================================= =================================
* revealer: Fix size allocation at small scales
* GL: Share programs between renderers to speed up initialization
* clean up profiler marks
* OS X: Fix OpenGL extension detection
* GtkFileChooser: * GtkFileChooser:
- Remove filename/uri api - Remove filename/uri api
- Drop extra-widget - Drop extra-widget
@ -16,10 +8,14 @@ Overview of Changes in GTK 3.98.1
- Remove show-hidden property - Remove show-hidden property
- Remove local-only property - Remove local-only property
- Remove GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER - Remove GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER
- The portal file chooser supports selecting folders
* GtkSpinner: * GtkSpinner:
- Rename active property to spinning - Rename active property to spinning
* GtkRevealer:
- Fix size allocation at small scales
* GtkPopover: * GtkPopover:
- Drop :relative-to, it is always the :parent now - Drop :relative-to, it is always the :parent now
@ -31,15 +27,12 @@ Overview of Changes in GTK 3.98.1
- Drop margin property - Drop margin property
- Drop gtk_grab_add, gtk_device_grab_add - Drop gtk_grab_add, gtk_device_grab_add
* GDK: * GtkTextView:
- Drop gdk_surface_new_temp - Support overlines in GtkTextTag
- Make GdkEvent an immutable boxed type, not an object - Support visible spaces in GtkTextTag
- Remove GdkAtom and property- and selection-related apis - Support hyphenation control in GtkTextTag
- Introduce GdkPopup and GdkToplevel interfaces
- Rename gdk_surface_input_shape_combine_region to
gdk_surface_set_input_region
* Broadway: implement scaling * Split GtkEventControllerFocus from GtkEventControllerKey
* DND: * DND:
- Fix local DND to avoid serialization - Fix local DND to avoid serialization
@ -50,7 +43,23 @@ Overview of Changes in GTK 3.98.1
- Introduce GtkDropControllerMotion - Introduce GtkDropControllerMotion
- Remove GtkSelectionData - Remove GtkSelectionData
* Split GtkEventControllerFocus from GtkEventControllerKey * Performance:
- Clean up profiler marks
- Share GL programs between renderers
* GDK:
- Drop gdk_surface_new_temp
- Make GdkEvent an immutable boxed type, not an object
- Remove GdkAtom and property- and selection-related apis
- Introduce GdkPopup and GdkToplevel interfaces
- Implement them in backend-specific surface subtypes
- Rename gdk_surface_input_shape_combine_region to
gdk_surface_set_input_region
- Drop X11-only concepts such as sticky or keep-below
* OS X: Fix OpenGL extension detection
* Broadway: implement scaling
* Translation updates: * Translation updates:
Dutch Dutch

View File

@ -1,5 +1,5 @@
project('gtk', 'c', project('gtk', 'c',
version: '3.98.0', version: '3.98.1',
default_options: [ default_options: [
'buildtype=debugoptimized', 'buildtype=debugoptimized',
'warning_level=1', 'warning_level=1',