diff options
author | Logan Rathbone <poprocks@gmail.com> | 2023-01-25 12:00:45 -0500 |
---|---|---|
committer | Logan Rathbone <poprocks@gmail.com> | 2023-01-25 12:01:30 -0500 |
commit | 008c677ec2546cf9c3c267d9f1df0d248b41c630 (patch) | |
tree | 16764729f29839281597dc7d8ab332cfc81bcd4b | |
parent | 702de313a310242f4dc2662a0fd97c49aa282d1c (diff) | |
download | zenity-libadwaita-port.tar.gz |
Zenity 3.90.0libadwaita-port
-rw-r--r-- | NEWS | 44 | ||||
-rw-r--r-- | meson.build | 4 |
2 files changed, 44 insertions, 4 deletions
@@ -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') |