From 59d5f79de3d580c6b0688e045ab78dded3570adf Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sun, 19 Feb 2023 13:10:16 +0100 Subject: [PATCH 1/6] Update to 1.4.19 - Translation update from Weblate (Sinhala, si 100%) --- .gitignore | 1 + ibus-m17n.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7fcb6d8..07c02df 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.16.tar.gz /ibus-m17n-1.4.17.tar.gz /ibus-m17n-1.4.18.tar.gz +/ibus-m17n-1.4.19.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 10416fa..0b11ca0 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.18 +Version: 1.4.19 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sun Feb 19 2023 Mike FABIAN - 1.4.19-1 +- Update to 1.4.19 +- Translation update from Weblate (Sinhala, si 100%) + * Wed Dec 07 2022 Mike FABIAN - 1.4.18-1 - Update to 1.4.18 - Add new icon diff --git a/sources b/sources index 771cb62..08e96e6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.18.tar.gz) = 4960301ee2a4b10a8ca3c618df1a9f5acabce89da662c80bc39520d1b4b2a6e0b487f85c6e513ba174addc7b8ae349b3cb799f4925abfc20c8ac1ef1b8678540 +SHA512 (ibus-m17n-1.4.19.tar.gz) = d859ccd566ec46b0f03cee47dc926bf4608bbe281f62ac9127cd518749a54e7f11bbef573900575f34c1a0d33a55262226132c320acbbabf44b1ff262565702d From 5c96a3cdc69dd2ab76650f92a91cd89219108fe9 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sun, 30 Jul 2023 20:39:09 +0200 Subject: [PATCH 2/6] Update to 1.4.20 - Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) - Remove `xml:lang="en"` from the screenshot in appdata.xml See: https://github.com/ximion/appstream/issues/494 There must be one image in the default locale, and there can be some translated ones, but having only translated images is not okay. - Use ibus_text_new_from_string (string) instead of ibus_text_new_from_static_string (string) in ibus_m17n_engine_commit_string() - Add missing g_free (buf) in ibus_m17n_mtext_to_utf8() --- .gitignore | 1 + ibus-m17n.spec | 13 ++++++++++++- sources | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 07c02df..77769ff 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.17.tar.gz /ibus-m17n-1.4.18.tar.gz /ibus-m17n-1.4.19.tar.gz +/ibus-m17n-1.4.20.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 0b11ca0..da6afb7 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.19 +Version: 1.4.20 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,17 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Sun Jul 30 2023 Mike FABIAN - 1.4.20-1 +- Update to 1.4.20 +- Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) +- Remove `xml:lang="en"` from the screenshot in appdata.xml + See: https://github.com/ximion/appstream/issues/494 + There must be one image in the default locale, and there can be some + translated ones, but having only translated images is not okay. +- Use ibus_text_new_from_string (string) instead of + ibus_text_new_from_static_string (string) in ibus_m17n_engine_commit_string() +- Add missing g_free (buf) in ibus_m17n_mtext_to_utf8() + * Sun Feb 19 2023 Mike FABIAN - 1.4.19-1 - Update to 1.4.19 - Translation update from Weblate (Sinhala, si 100%) diff --git a/sources b/sources index 08e96e6..e4f9370 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.19.tar.gz) = d859ccd566ec46b0f03cee47dc926bf4608bbe281f62ac9127cd518749a54e7f11bbef573900575f34c1a0d33a55262226132c320acbbabf44b1ff262565702d +SHA512 (ibus-m17n-1.4.20.tar.gz) = 10a0b915f0523291167c4364d1b3d732d99c86e6fb0ab28bb17140fd56f3a0b4177f1bcf1ec0bb227de0b44613b20029b96073e00d29573366945a8dd956c300 From 3b8ec6b4ba2d3eeb547a4f11d8507a4d8de2342b Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 7 Aug 2023 18:32:13 +0200 Subject: [PATCH 3/6] Update to 1.4.21 - Translation update from Weblate (Swedish, sv 100%) --- .gitignore | 1 + ibus-m17n.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 77769ff..92e617d 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.18.tar.gz /ibus-m17n-1.4.19.tar.gz /ibus-m17n-1.4.20.tar.gz +/ibus-m17n-1.4.21.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index da6afb7..3cece1b 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.20 +Version: 1.4.21 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Mon Aug 07 2023 Mike FABIAN - 1.4.21-1 +- Update to 1.4.21 +- Translation update from Weblate (Swedish, sv 100%) + * Sun Jul 30 2023 Mike FABIAN - 1.4.20-1 - Update to 1.4.20 - Reduce preedit flicker (Resolves: https://github.com/ibus/ibus/issues/2536) diff --git a/sources b/sources index e4f9370..81d634e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.20.tar.gz) = 10a0b915f0523291167c4364d1b3d732d99c86e6fb0ab28bb17140fd56f3a0b4177f1bcf1ec0bb227de0b44613b20029b96073e00d29573366945a8dd956c300 +SHA512 (ibus-m17n-1.4.21.tar.gz) = 6bcc0a3f984430bf0fab0d472bef5cedef3961890d0fe9dcd4955559ddea40a4f780c7f74b39a8f782297c511c3db396a5e5838be91dff9e82fef6e35d77a48b From 68359a7d3acacf7639064106138a079974886901 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Mon, 21 Aug 2023 10:45:05 +0200 Subject: [PATCH 4/6] Update to 1.4.22 - Translation update from Weblate (Lithuanian, lt 100%) --- .gitignore | 1 + ibus-m17n.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 92e617d..877c666 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.19.tar.gz /ibus-m17n-1.4.20.tar.gz /ibus-m17n-1.4.21.tar.gz +/ibus-m17n-1.4.22.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 3cece1b..a7d2657 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.21 +Version: 1.4.22 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,10 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Mon Aug 21 2023 Mike FABIAN - 1.4.22-1 +- Update to 1.4.22 +- Translation update from Weblate (Lithuanian, lt 100%) + * Mon Aug 07 2023 Mike FABIAN - 1.4.21-1 - Update to 1.4.21 - Translation update from Weblate (Swedish, sv 100%) diff --git a/sources b/sources index 81d634e..c8e404c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.21.tar.gz) = 6bcc0a3f984430bf0fab0d472bef5cedef3961890d0fe9dcd4955559ddea40a4f780c7f74b39a8f782297c511c3db396a5e5838be91dff9e82fef6e35d77a48b +SHA512 (ibus-m17n-1.4.22.tar.gz) = 064bc1af9d7dc4cfd9fcd236769003fcbcfc63e8e68869dbdec50e7834c834218995feef45fae97e93fe68e8735636c2090e2b1b34f738d9c06e4098e7da6015 From 80f3ee0cccd7a3d45e213aaf035ef82c28888535 Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Fri, 27 Oct 2023 12:15:06 +0200 Subject: [PATCH 5/6] Update to 1.4.23 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” - Fix option “☑️ Use US keyboard layout” (Resolves: https://github.com/ibus/ibus-m17n/issues/66) - Translation update from Weblate: new language Hindi, hi 100% --- .gitignore | 1 + ibus-m17n.spec | 9 ++++++++- sources | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 877c666..bde262f 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.20.tar.gz /ibus-m17n-1.4.21.tar.gz /ibus-m17n-1.4.22.tar.gz +/ibus-m17n-1.4.23.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index a7d2657..155c69c 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.22 +Version: 1.4.23 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,13 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Fri Oct 27 2023 Mike FABIAN - 1.4.23-1 +- Update to 1.4.23 +- Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” +- Fix option “☑️ Use US keyboard layout” + (Resolves: https://github.com/ibus/ibus-m17n/issues/66) +- Translation update from Weblate: new language Hindi, hi 100% + * Mon Aug 21 2023 Mike FABIAN - 1.4.22-1 - Update to 1.4.22 - Translation update from Weblate (Lithuanian, lt 100%) diff --git a/sources b/sources index c8e404c..a319795 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.22.tar.gz) = 064bc1af9d7dc4cfd9fcd236769003fcbcfc63e8e68869dbdec50e7834c834218995feef45fae97e93fe68e8735636c2090e2b1b34f738d9c06e4098e7da6015 +SHA512 (ibus-m17n-1.4.23.tar.gz) = 813653cd52d8d532f6125288a56cd0d655e9216a7631218bd1a13e1ba51f161ca151e88c89adda16729e58fdd08b88d87848eb47e284f06d5b9f429127145bff From 4baebaa87a957a4d056f15aa6286ab379936d67c Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Sat, 28 Oct 2023 22:52:10 +0200 Subject: [PATCH 6/6] Update to 1.4.24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Make IBusEngineSimple read ~/.XCompose (Resolves: https://github.com/ibus/ibus-m17n/issues/70) - Do not hide empty preedit text before committing text. (Resolves: https://github.com/ibus/ibus-m17n/pull/64). Together with ibus >= 1.5.29 this solves the preedit flicker problem perfectly. - Use “” in m17n.appdata.xml instead of “” Because is deprecated and it makes the build fail on Fedora rawhide. --- .gitignore | 1 + ibus-m17n.spec | 12 +++++++++++- sources | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bde262f..c2503b4 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ ibus-m17n-1.3.0.tar.gz /ibus-m17n-1.4.21.tar.gz /ibus-m17n-1.4.22.tar.gz /ibus-m17n-1.4.23.tar.gz +/ibus-m17n-1.4.24.tar.gz diff --git a/ibus-m17n.spec b/ibus-m17n.spec index 155c69c..e11abb5 100644 --- a/ibus-m17n.spec +++ b/ibus-m17n.spec @@ -1,7 +1,7 @@ %global require_ibus_version 1.4.0 Name: ibus-m17n -Version: 1.4.23 +Version: 1.4.24 Release: 1%{?dist} Summary: The M17N engine for IBus platform License: GPL-2.0-or-later @@ -63,6 +63,16 @@ make check %{_datadir}/glib-2.0/schemas/org.freedesktop.ibus.engine.m17n.gschema.xml %changelog +* Fri Nov 10 2023 Mike FABIAN - 1.4.24-1 +- Update to 1.4.24 +- Make IBusEngineSimple read ~/.XCompose + (Resolves: https://github.com/ibus/ibus-m17n/issues/70) +- Do not hide empty preedit text before committing text. + (Resolves: https://github.com/ibus/ibus-m17n/pull/64). + Together with ibus >= 1.5.29 this solves the preedit flicker problem perfectly. +- Use “” in m17n.appdata.xml instead of “” + Because is deprecated and it makes the build fail on Fedora rawhide. + * Fri Oct 27 2023 Mike FABIAN - 1.4.23-1 - Update to 1.4.23 - Do not translate the Multi_key when using the option “☑️ Use US keyboard layout” diff --git a/sources b/sources index a319795..a6d2f64 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ibus-m17n-1.4.23.tar.gz) = 813653cd52d8d532f6125288a56cd0d655e9216a7631218bd1a13e1ba51f161ca151e88c89adda16729e58fdd08b88d87848eb47e284f06d5b9f429127145bff +SHA512 (ibus-m17n-1.4.24.tar.gz) = ec6a596e629a8214f1f7b33e4adf094c16884d51afe0e6f0624866d333888be911cdd1a5acd0f5fdeb27c061af89cebec507ec81458620e85000c0ad2cfeb191