3.24.36
authorMatthias Clasen <mclasen@redhat.com>
Thu, 22 Dec 2022 13:25:53 +0000 (08:25 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 22 Dec 2022 14:01:18 +0000 (09:01 -0500)
NEWS
meson.build

diff --git a/NEWS b/NEWS
index 94d0497d21de477996ea3f019a33f943ae2eb10b..fdd44e6e773912b95477d0369373d9177afb6dfc 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,42 @@
+Overview of Changes in GTK+ 3.24.36, 12-22-2022
+===============================================
+
+This release is the first GTK 3 release to exclusively
+use the meson build system.
+
+* GtkLabel:
+ - Tweak selection behavior
+
+* GtkEmojiChooser:
+ - Properly handle empty recent section
+
+* GtkFileChooser:
+ - Make ~ key work regardless of dead keys
+
+* build:
+ - Improve handling of flaky tests
+ - Drop the autotools build
+
+* Wayland:
+ - Fix problems with X<>Wayland DND
+ - Revert cursor changes from 3.24.35
+ - Fix handling of surrounding text in input
+
+* Windows:
+ - Improve handling of line ends in clipboard
+
+* MacOS:
+ - Use NSTrackingArea
+
+* Translation updates:
+ Abkhazian
+ Basque
+ Brazilian Portuguese
+ Catalan
+ Interlingue
+ Persian
+
+
 Overview of Changes in GTK+ 3.24.35, 11-22-2022
 ===============================================
 
index 373c5f689f4295e5a001f90539b81f6b3aa287c1..aed48fc3f6dd3954810874b37dfc7ecc2293b2b5 100644 (file)
@@ -1,5 +1,5 @@
 project('gtk+', 'c',
-  version: '3.24.35',
+  version: '3.24.36',
   default_options: [
     'buildtype=debugoptimized',
     'warning_level=1'
@@ -53,7 +53,7 @@ gtk_version       = meson.project_version()
 gtk_major_version = gtk_version.split('.')[0].to_int()
 gtk_minor_version = gtk_version.split('.')[1].to_int()
 gtk_micro_version = gtk_version.split('.')[2].to_int()
-gtk_interface_age = 31
+gtk_interface_age = 32
 add_project_arguments('-DGTK_VERSION="@0@"'.format(meson.project_version()), language: 'c')
 
 add_project_arguments('-D_GNU_SOURCE', language: 'c')