Hello community, here is the log from the commit of package xed for openSUSE:Factory checked in at 2017-11-16 14:02:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xed (Old) and /work/SRC/openSUSE:Factory/.xed.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xed" Thu Nov 16 14:02:58 2017 rev:15 rq:542119 version:1.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/xed/xed.changes 2017-11-07 09:59:44.466508402 +0100 +++ /work/SRC/openSUSE:Factory/.xed.new/xed.changes 2017-11-16 14:03:00.681283317 +0100 @@ -1,0 +2,6 @@ +Wed Nov 15 18:23:18 UTC 2017 - [email protected] + +- Update to version 1.6.1: + * Fix localisation in the TextSize plugin. + +------------------------------------------------------------------- Old: ---- xed-1.6.0.tar.gz New: ---- xed-1.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xed.spec ++++++ --- /var/tmp/diff_new_pack.NXj2GT/_old 2017-11-16 14:03:01.381257949 +0100 +++ /var/tmp/diff_new_pack.NXj2GT/_new 2017-11-16 14:03:01.389257659 +0100 @@ -17,7 +17,7 @@ Name: xed -Version: 1.6.0 +Version: 1.6.1 Release: 0 Summary: A text editor with highlighting License: GPL-2.0+ ++++++ xed-1.6.0.tar.gz -> xed-1.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.6.0/configure.ac new/xed-1.6.1/configure.ac --- old/xed-1.6.0/configure.ac 2017-11-03 22:14:25.000000000 +0100 +++ new/xed-1.6.1/configure.ac 2017-11-15 14:11:47.000000000 +0100 @@ -4,7 +4,7 @@ m4_define(xed_major_version, 1) m4_define(xed_minor_version, 6) -m4_define(xed_micro_version, 0) +m4_define(xed_micro_version, 1) 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.6.0/debian/changelog new/xed-1.6.1/debian/changelog --- old/xed-1.6.0/debian/changelog 2017-11-03 22:14:25.000000000 +0100 +++ new/xed-1.6.1/debian/changelog 2017-11-15 14:11:47.000000000 +0100 @@ -1,3 +1,9 @@ +xed (1.6.1) sylvia; urgency=medium + + * l10n: Fix localization in TextSize plugin + + -- Clement Lefebvre <[email protected]> Wed, 15 Nov 2017 13:11:20 +0000 + xed (1.6.0) sylvia; urgency=medium [ JosephMcc ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xed-1.6.0/plugins/textsize/textsize/__init__.py new/xed-1.6.1/plugins/textsize/textsize/__init__.py --- old/xed-1.6.0/plugins/textsize/textsize/__init__.py 2017-11-03 22:14:25.000000000 +0100 +++ new/xed-1.6.1/plugins/textsize/textsize/__init__.py 2017-11-15 14:11:47.000000000 +0100 @@ -26,6 +26,9 @@ from gi.repository import GObject, Gio, Gtk, Gdk, Xed from .documenthelper import DocumentHelper +import gettext +gettext.install("xed") + MENU_PATH = "/MenuBar/ViewMenu/ViewOps_1" class TextSizePlugin(GObject.Object, Xed.WindowActivatable):
