Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghex for openSUSE:Factory checked in at 2023-04-27 20:02:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghex (Old) and /work/SRC/openSUSE:Factory/.ghex.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghex" Thu Apr 27 20:02:47 2023 rev:68 rq:1083288 version:44.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghex/ghex.changes 2023-04-03 17:46:27.671121756 +0200 +++ /work/SRC/openSUSE:Factory/.ghex.new.1533/ghex.changes 2023-04-27 20:03:09.186708073 +0200 @@ -1,0 +2,8 @@ +Thu Apr 27 07:31:46 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 44.1: + + Update application screenshots to version 44. + + hex-dialog: Prevent decimal display widgets from getting + truncated. + +------------------------------------------------------------------- Old: ---- ghex-44.0.tar.xz New: ---- ghex-44.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghex.spec ++++++ --- /var/tmp/diff_new_pack.kXDwyy/_old 2023-04-27 20:03:09.618710613 +0200 +++ /var/tmp/diff_new_pack.kXDwyy/_new 2023-04-27 20:03:09.622710636 +0200 @@ -22,7 +22,7 @@ %define soname libgtkhex-%{ghex_abi}-%{so_ver} Name: ghex -Version: 44.0 +Version: 44.1 Release: 0 Summary: GNOME Binary Editor License: GPL-2.0-or-later ++++++ ghex-44.0.tar.xz -> ghex-44.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghex-44.0/NEWS new/ghex-44.1/NEWS --- old/ghex-44.0/NEWS 2023-03-24 15:13:06.000000000 +0100 +++ new/ghex-44.1/NEWS 2023-04-27 04:28:36.000000000 +0200 @@ -1,4 +1,14 @@ ========= +GHex 44.1 +========= + +Changes and Bugfixes since GHex 44.0: + +- Update application screenshots to version 44 (Andre Klapper) +- hex-dialog: Prevent decimal display widgets from getting truncated (Jordan + Christiansen) + +========= GHex 44.0 ========= Binary files old/ghex-44.0/data/appdata/ghex-1.png and new/ghex-44.1/data/appdata/ghex-1.png differ Binary files old/ghex-44.0/data/appdata/ghex-2.png and new/ghex-44.1/data/appdata/ghex-2.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghex-44.0/data/org.gnome.GHex.appdata.xml.in.in new/ghex-44.1/data/org.gnome.GHex.appdata.xml.in.in --- old/ghex-44.0/data/org.gnome.GHex.appdata.xml.in.in 2023-03-24 15:13:06.000000000 +0100 +++ new/ghex-44.1/data/org.gnome.GHex.appdata.xml.in.in 2023-04-27 04:28:36.000000000 +0200 @@ -30,6 +30,7 @@ <kudo>UserDocs</kudo> </kudos> <releases> + <release version="44.1" date="2023-04-26" /> <release version="44.0" date="2023-03-24" /> </releases> <url type="homepage">https://gitlab.gnome.org/GNOME/ghex</url> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghex-44.0/meson.build new/ghex-44.1/meson.build --- old/ghex-44.0/meson.build 2023-03-24 15:13:06.000000000 +0100 +++ new/ghex-44.1/meson.build 2023-04-27 04:28:36.000000000 +0200 @@ -1,6 +1,6 @@ project( 'ghex', 'c', - version: '44.0', + version: '44.1', meson_version: '>=0.59.0', license: 'GPL2' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghex-44.0/src/hex-dialog.c new/ghex-44.1/src/hex-dialog.c --- old/ghex-44.0/src/hex-dialog.c 2023-03-24 15:13:06.000000000 +0100 +++ new/ghex-44.1/src/hex-dialog.c 2023-04-27 04:28:36.000000000 +0200 @@ -48,8 +48,6 @@ HexDialogVal64 val; }; -static void hex_dialog_update_entry_sizes(HexDialog *dialog); - /* conversion functions */ static char *HexConvert_S8(HexDialogVal64 *val, HexConversionProperties *prop); static char *HexConvert_US8(HexDialogVal64 *val, HexConversionProperties *prop); @@ -197,8 +195,6 @@ create_dialog_prop (OCT, dialog, grid, 4, 1); create_dialog_prop (BIN, dialog, grid, 4, 2); - hex_dialog_update_entry_sizes (dialog); - hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_append(GTK_BOX(vbox), hbox); @@ -255,24 +251,6 @@ gtk_entry_buffer_set_text (eb, buf, -1); } -/* Try to guess the maximum width needed for each entry */ -static void -hex_dialog_update_entry_sizes(HexDialog *dialog) -{ - HexDialogVal64 val; - gint i; - gint width_chars; - - for (i = 0; i < 8; i++) - val.v[i] = 0xfb; - - for (i = 0; i < ENTRY_MAX; i++) - { - width_chars = strlen (dialog_prop_get_text (i, dialog, &val)); - gtk_entry_set_max_length (GTK_ENTRY (dialog->entry[i]), width_chars); - } -} - /* if val is NULL, uses the previous used val */ void hex_dialog_updateview(HexDialog *dialog, HexDialogVal64 *val) { @@ -289,7 +267,6 @@ update_dialog_prop(i, dialog, &dialog->val); } - hex_dialog_update_entry_sizes (dialog); } /* used for conversions, this can be global, since it need not be