Hello community, here is the log from the commit of package xed for openSUSE:Factory checked in at 2017-06-22 10:40:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xed (Old) and /work/SRC/openSUSE:Factory/.xed.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "xed" Thu Jun 22 10:40:51 2017 rev:11 rq:505543 version:1.4.3 Changes: -------- --- /work/SRC/openSUSE:Factory/xed/xed.changes 2017-05-27 13:18:35.381599302 +0200 +++ /work/SRC/openSUSE:Factory/.xed.new/xed.changes 2017-06-22 10:40:53.905347094 +0200 @@ -1,0 +2,7 @@ +Wed Jun 21 16:11:48 UTC 2017 - sor.alexei@meowr.ru + +- Update to version 1.4.3: + * Fix an ugly white border on GTK+ 3.20 and newer. + * filebrowser: Change an icon name. + +------------------------------------------------------------------- @@ -4 +11 @@ -- Update to version 1.1.12: +- Update to version 1.4.2: Old: ---- xed-1.4.2.tar.gz New: ---- xed-1.4.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xed.spec ++++++ --- /var/tmp/diff_new_pack.FoabTg/_old 2017-06-22 10:40:54.469267585 +0200 +++ /var/tmp/diff_new_pack.FoabTg/_new 2017-06-22 10:40:54.469267585 +0200 @@ -17,7 +17,7 @@ Name: xed -Version: 1.4.2 +Version: 1.4.3 Release: 0 Summary: A text editor with highlighting License: GPL-2.0+ ++++++ xed-1.4.2.tar.gz -> xed-1.4.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.4.2/configure.ac new/xed-1.4.3/configure.ac --- old/xed-1.4.2/configure.ac 2017-05-23 14:35:58.000000000 +0200 +++ new/xed-1.4.3/configure.ac 2017-06-20 15:22:59.000000000 +0200 @@ -4,7 +4,7 @@ m4_define(xed_major_version, 1) m4_define(xed_minor_version, 4) -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.4.2/debian/changelog new/xed-1.4.3/debian/changelog --- old/xed-1.4.2/debian/changelog 2017-05-23 14:35:58.000000000 +0200 +++ new/xed-1.4.3/debian/changelog 2017-06-20 15:22:59.000000000 +0200 @@ -1,3 +1,13 @@ +xed (1.4.3) sonya; urgency=medium + + [ Mike Krüger ] + * bugfix: ugly white border (gtk 3.20>) (#128) + + [ JosephMcc ] + * filebrowser: Change an icon name (#132) + + -- Clement Lefebvre <root@linuxmint.com> Tue, 20 Jun 2017 15:22:10 +0200 + xed (1.4.2) sonya; urgency=medium [ leigh123linux ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.4.2/plugins/filebrowser/xed-file-browser-plugin.c new/xed-1.4.3/plugins/filebrowser/xed-file-browser-plugin.c --- old/xed-1.4.2/plugins/filebrowser/xed-file-browser-plugin.c 2017-05-23 14:35:58.000000000 +0200 +++ new/xed-1.4.3/plugins/filebrowser/xed-file-browser-plugin.c 2017-06-20 15:22:59.000000000 +0200 @@ -563,7 +563,7 @@ "changed", G_CALLBACK (on_selection_changed_cb), plugin); panel = xed_window_get_side_panel (priv->window); - xed_panel_add_item (panel, GTK_WIDGET (priv->tree_widget), _("File Browser"), "system-file-manager"); + xed_panel_add_item (panel, GTK_WIDGET (priv->tree_widget), _("File Browser"), "folder"); gtk_widget_show (GTK_WIDGET (priv->tree_widget)); add_popup_ui (plugin); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.4.2/xed/xed-notebook.c new/xed-1.4.3/xed/xed-notebook.c --- old/xed-1.4.2/xed/xed-notebook.c 2017-05-23 14:35:58.000000000 +0200 +++ new/xed-1.4.3/xed/xed-notebook.c 2017-06-20 15:22:59.000000000 +0200 @@ -714,7 +714,10 @@ notebook->priv->tab_scrolling_enabled = g_settings_get_boolean (notebook->priv->ui_settings, "enable-tab-scrolling"); gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook), TRUE); - // gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); + +#if GTK_CHECK_VERSION (3, 20, 0) + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); +#endif gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); g_signal_connect (notebook, "button-press-event",