summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2023-08-10 12:26:22 -0400
committerLogan Rathbone <poprocks@gmail.com>2023-08-10 12:26:22 -0400
commite9a591aa1d182e220013d9ab50dcc7607734d7b1 (patch)
treeaaa1a66d3397c5b03be6e6ae9af8f54aa9386453
parenttree: Set search column to 1 for check/radiolists (diff)
downloadzenity-e9a591aa1d182e220013d9ab50dcc7607734d7b1.tar.gz
zenity-e9a591aa1d182e220013d9ab50dcc7607734d7b1.tar.bz2
zenity-e9a591aa1d182e220013d9ab50dcc7607734d7b1.zip
3.44.2
-rw-r--r--NEWS3
-rw-r--r--meson.build2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 7801a7c8..1cbad632 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+Zenity 3.44.2
+ - tree: Set search column to 1 for check/radiolists (fixes #49)
+
Zenity 3.44.1
- msg: Set max-width-chars to relatively small value if --width specified
(fixes regression by 25a92fff; see also #42) (Logan Rathbone)
diff --git a/meson.build b/meson.build
index e9ff615a..20501be2 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('zenity', 'c',
- version: '3.44.1',
+ version: '3.44.2',
meson_version: '>=0.57.0',
license: 'LGPL-2.1-or-later'
)
bgstack15