From 008c677ec2546cf9c3c267d9f1df0d248b41c630 Mon Sep 17 00:00:00 2001 From: Logan Rathbone Date: Wed, 25 Jan 2023 12:00:45 -0500 Subject: Zenity 3.90.0 --- NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++-- meson.build | 4 ++-- 2 files changed, 44 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 4fc6c9b..b492ac9 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,45 @@ -Zenity 4.alpha.1 - - Initial port to GTK4 (Logan Rathbone) +Zenity 3.90.0 + - Initial alpha release based on libadwaita and GTK4 (Logan Rathbone) + +Zenity 3.44.0 + - scale: set a page increment so mouse wheel can be used on widget (Hg) + - build: Use GNOME module post_install() (Matt Turner) + - docs: Fix incorrect markup (Andre Klapper) + - build: Replace deprecated functions (Logan Rathbone) + - Translation updates: + Alexander Shopov (bg) + Jiri Grönroos (fi) + Nart Tlisha (ab) + Sabri Ünal (tr) + Sergej A (ru) + +Zenity 3.43.0 + - Documentation updates (Logan Rathbone) + - Bump WebkitGTK dependency to API 4.1, for GNOME 43 (Logan Rathbone) + - Translation updates: + Zurab Kargareteli (ka) + +Zenity 3.42.1 + - scale: Make OK button default (allows pressing Enter to accept selected + value) (hydrargyrum) + - Fix maximum width of message dialogs to 60 characters, and make message + dialogs non-resizable (fixes regression from 3b64d05e) (David King) + +Zenity 3.42.0 + - tree: Clicking row checks radio/checkboxes (Logan Rathbone) + - Fix search column selection with --imagelist (Janne Pulkkinen) + - Translation updates: + Asier Sarasua Garmendia (eu) + Efstathios Iosifidis (el) + Goran Vidović (hr) + Quentin PAGÈS (oc) + Alan Mortensen (da) + Daniel Mustieles (es) + +Zenity 3.41.0 + - Port to meson (Logan Rathbone) + - Code cleanups (Simon McVittie) + - Translation updates (various contributors; see git log history) Zenity 3.32.0 - Fix autotools warnings (Javier Jardón) diff --git a/meson.build b/meson.build index 222d264..3714c42 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('zenity', 'c', - version: '4.alpha.1', + version: '3.90.0', meson_version: '>=0.57.0', license: 'LGPL-2.1-or-later' ) @@ -9,7 +9,7 @@ resource_base_path = '/org/gnome/Zenity' version_arr = meson.project_version().split('.') zenity_version_major = version_arr[0].to_int() -zenity_version_minor = version_arr[1] +zenity_version_minor = version_arr[1].to_int() zenity_version_micro = version_arr[2].to_int() zenity_prefix = get_option('prefix') -- cgit v1.2.1