diff options
author | fujiwarat <takao.fujiwara1@gmail.com> | 2016-01-20 16:42:59 +0900 |
---|---|---|
committer | fujiwarat <takao.fujiwara1@gmail.com> | 2016-01-20 16:45:28 +0900 |
commit | 99ac82ee10d4845c5a5805e0d3272710a6417488 (patch) | |
tree | 3bea4ac967c9305baf2c8bd7714d9e2fd65b777f | |
parent | aaaec9a4cc532ab35e7500785f226baf166c7380 (diff) | |
download | ibus-anthy-99ac82ee10d4845c5a5805e0d3272710a6417488.tar.gz |
Release 1.5.81.5.8
Updated URL in anthy.appdata.xml.in
Fixed bytes to str in thumb.py for python3
Fixed get_xkb_layout in thumb.py
setup: Delete a check button "Show input mode icon"
Implement "Automatically commit" with periods.
Updated emoji.t
Fixed PyGIWarning: GdkX11 was imported without specifying a version
Added Variation Sector in emoji.t
Split emoji.t into emoji-each.t and emoji-emoji.t
-rw-r--r-- | Makefile.am | 12 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | setup/python2/setup.ui | 4 | ||||
-rw-r--r-- | setup/python3/setup.ui | 4 |
4 files changed, 17 insertions, 9 deletions
diff --git a/Makefile.am b/Makefile.am index 54dab96..7b2133b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,8 +3,8 @@ # ibus-anthy - The Anthy engine for IBus # # Copyright (c) 2007-2008 Peng Huang <shawn.p.huang@gmail.com> -# Copyright (c) 2010-2013 Takao Fujiwara <takao.fujiwara1@gmail.com> -# Copyright (c) 2007-2013 Red Hat, Inc. +# Copyright (c) 2010-2016 Takao Fujiwara <takao.fujiwara1@gmail.com> +# Copyright (c) 2007-2016 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -49,6 +49,14 @@ DISTCLEANFILES = \ dist-hook: if test -d .git ; then \ git log --name-status --date=iso > $(distdir)/ChangeLog ; \ + PREV_MICRO_VERSION=`expr $(PACKAGE_VERSION_MICRO) - 1`; \ + PREV_VERSION=\ +"$(PACKAGE_VERSION_MAJOR).$(PACKAGE_VERSION_MINOR).$$PREV_MICRO_VERSION"; \ + echo "Changes in $(PACKAGE_NAME) $(PACKAGE_VERSION)" \ + > $(distdir)/NEWS; \ + echo "" >> $(distdir)/NEWS; \ + git log $$PREV_VERSION...$(PACKAGE_VERSION) --reverse \ + --pretty=format:'%s (%an) %h' >> $(distdir)/NEWS; \ fi rpm: dist @PACKAGE_NAME@.spec diff --git a/configure.ac b/configure.ac index 936f1d3..8f4eeb9 100644 --- a/configure.ac +++ b/configure.ac @@ -3,8 +3,8 @@ # ibus-anthy - The Anthy engine for IBus # # Copyright (c) 2007-2008 Peng Huang <shawn.p.huang@gmail.com> -# Copyright (c) 2010-2015 Takao Fujiwara <takao.fujiwara1@gmail.com> -# Copyright (c) 2007-2015 Red Hat, Inc. +# Copyright (c) 2010-2016 Takao Fujiwara <takao.fujiwara1@gmail.com> +# Copyright (c) 2007-2016 Red Hat, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ dnl - if not 1, append datestamp to the version number. m4_define([ibus_anthy_released], [1]) m4_define([ibus_anthy_major_version], [1]) m4_define([ibus_anthy_minor_version], [5]) -m4_define([ibus_anthy_micro_version], [7]) +m4_define([ibus_anthy_micro_version], [8]) m4_define([ibus_abi_current], [5]) m4_define([ibus_abi_revision], [m4_eval(100 * ibus_anthy_minor_version + ibus_anthy_micro_version)]) diff --git a/setup/python2/setup.ui b/setup/python2/setup.ui index 69bb0eb..f0acbc6 100644 --- a/setup/python2/setup.ui +++ b/setup/python2/setup.ui @@ -2762,8 +2762,8 @@ <property name="program-name">IBus-Anthy</property> <property name="copyright">Copyright © 2007–2008 Peng Huang Copyright © 2009 Hideaki ABE -Copyright © 2009–2014 Takao Fujiwara -Copyright © 2007–2014 Red Hat, Inc.</property> +Copyright © 2009–2016 Takao Fujiwara +Copyright © 2007–2016 Red Hat, Inc.</property> <property name="comments" translatable="yes">The Anthy engine for the IBus input platform</property> <property name="license">GPL</property> <property name="website">https://github.com/ibus/ibus/wiki</property> diff --git a/setup/python3/setup.ui b/setup/python3/setup.ui index 69bb0eb..f0acbc6 100644 --- a/setup/python3/setup.ui +++ b/setup/python3/setup.ui @@ -2762,8 +2762,8 @@ <property name="program-name">IBus-Anthy</property> <property name="copyright">Copyright © 2007–2008 Peng Huang Copyright © 2009 Hideaki ABE -Copyright © 2009–2014 Takao Fujiwara -Copyright © 2007–2014 Red Hat, Inc.</property> +Copyright © 2009–2016 Takao Fujiwara +Copyright © 2007–2016 Red Hat, Inc.</property> <property name="comments" translatable="yes">The Anthy engine for the IBus input platform</property> <property name="license">GPL</property> <property name="website">https://github.com/ibus/ibus/wiki</property> |