Hello community, here is the log from the commit of package xed for openSUSE:Factory checked in at 2018-07-22 23:05:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xed (Old) and /work/SRC/openSUSE:Factory/.xed.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xed" Sun Jul 22 23:05:56 2018 rev:21 rq:624439 version:1.8.3 Changes: -------- --- /work/SRC/openSUSE:Factory/xed/xed.changes 2018-06-28 15:13:33.407577733 +0200 +++ /work/SRC/openSUSE:Factory/.xed.new/xed.changes 2018-07-22 23:05:58.156892012 +0200 @@ -1,0 +2,8 @@ +Fri Jul 20 09:32:54 UTC 2018 - [email protected] + +- Update to version 1.8.3: + * search bar/xed-history-entry: Set a "width-chars" on the + GtkEntry widgets of the search and replace entry widgets, and + allow their labels to ellipsise upon resizing. + +------------------------------------------------------------------- Old: ---- xed-1.8.2.tar.gz New: ---- xed-1.8.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xed.spec ++++++ --- /var/tmp/diff_new_pack.PhNT65/_old 2018-07-22 23:05:58.628891837 +0200 +++ /var/tmp/diff_new_pack.PhNT65/_new 2018-07-22 23:05:58.628891837 +0200 @@ -17,7 +17,7 @@ Name: xed -Version: 1.8.2 +Version: 1.8.3 Release: 0 Summary: A text editor with highlighting License: GPL-2.0-or-later ++++++ xed-1.8.2.tar.gz -> xed-1.8.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.8.2/configure.ac new/xed-1.8.3/configure.ac --- old/xed-1.8.2/configure.ac 2018-06-26 13:22:17.000000000 +0200 +++ new/xed-1.8.3/configure.ac 2018-07-17 09:33:19.000000000 +0200 @@ -4,7 +4,7 @@ m4_define(xed_major_version, 1) m4_define(xed_minor_version, 8) -m4_define(xed_micro_version, 2) +m4_define(xed_micro_version, 3) m4_define(xed_version, xed_major_version.xed_minor_version.xed_micro_version) AC_INIT([xed], [xed_version], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.8.2/debian/changelog new/xed-1.8.3/debian/changelog --- old/xed-1.8.2/debian/changelog 2018-06-26 13:22:17.000000000 +0200 +++ new/xed-1.8.3/debian/changelog 2018-07-17 09:33:19.000000000 +0200 @@ -1,3 +1,10 @@ +xed (1.8.3) tara; urgency=medium + + [ Michael Webster ] + * search bar/xed-history-entry: Set a 'width-chars' on the GtkEntry widgets of the search and replace entry widgets, and allow their labels to ellipsize upon resizing. + + -- Clement Lefebvre <[email protected]> Tue, 17 Jul 2018 09:32:59 +0200 + xed (1.8.2) tara; urgency=medium [ NikoKrause ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.8.2/xed/resources/ui/xed-searchbar.ui new/xed-1.8.3/xed/resources/ui/xed-searchbar.ui --- old/xed-1.8.2/xed/resources/ui/xed-searchbar.ui 2018-06-26 13:22:17.000000000 +0200 +++ new/xed-1.8.3/xed/resources/ui/xed-searchbar.ui 2018-07-17 09:33:19.000000000 +0200 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.18.3 --> +<!-- Generated with glade 3.22.0 --> <!--*- mode: xml -*--> <interface> <requires lib="gtk+" version="3.12"/> @@ -58,6 +58,7 @@ <property name="vexpand">False</property> <property name="label" translatable="yes">_Search for: </property> <property name="use_underline">True</property> + <property name="ellipsize">end</property> <property name="xalign">0</property> </object> <packing> @@ -71,6 +72,7 @@ <property name="can_focus">False</property> <property name="label" translatable="yes">Replace _with: </property> <property name="use_underline">True</property> + <property name="ellipsize">end</property> <property name="xalign">0</property> </object> <packing> @@ -252,5 +254,8 @@ </child> </object> </child> + <child type="titlebar"> + <placeholder/> + </child> </object> </interface> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.8.2/xed/xed-history-entry.c new/xed-1.8.3/xed/xed-history-entry.c --- old/xed-1.8.2/xed/xed-history-entry.c 2018-06-26 13:22:17.000000000 +0200 +++ new/xed-1.8.3/xed/xed-history-entry.c 2018-07-17 09:33:19.000000000 +0200 @@ -473,6 +473,7 @@ gboolean enable_completion) { GtkWidget *ret; + GtkEntry *real_entry; g_return_val_if_fail (history_id != NULL, NULL); @@ -498,6 +499,9 @@ xed_history_entry_set_enable_completion (XED_HISTORY_ENTRY (ret), enable_completion); + real_entry = GTK_ENTRY (xed_history_entry_get_entry (XED_HISTORY_ENTRY (ret))); + gtk_entry_set_width_chars (real_entry, 6); + return ret; }
