diff -Nru ibus-table-others-1.3.9/AUTHORS ibus-table-others-1.3.11/AUTHORS --- ibus-table-others-1.3.9/AUTHORS 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/AUTHORS 2020-01-07 15:43:34.000000000 +0000 @@ -26,3 +26,5 @@ Shellex Y <5h3ll3x at gmail.com> (Convert) Mathwriter - Naveen Kumar + + Telex and VNI - Nguyễn Gia Phong diff -Nru ibus-table-others-1.3.9/ChangeLog ibus-table-others-1.3.11/ChangeLog --- ibus-table-others-1.3.9/ChangeLog 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/ChangeLog 2020-01-07 15:43:34.000000000 +0000 @@ -1,4 +1,63 @@ -commit f754f22c442b88135d53b38ae1e68b99b90d3d9e +commit 18b9cb22744aa7d1e64b35ef186f8ed6802f27c5 +Author: Mike FABIAN +Date: Tue Jan 7 16:42:59 2020 +0100 + + Release 1.3.11 + +commit b6fafd079ee23a769155cd08902bb92bd473d8c7 +Author: Nguyễn Gia Phong +Date: Sun Aug 25 16:07:53 2019 +0700 + + Add Vietnamese input methods Telex and VNI + + Resolves: https://github.com/moebiuscurve/ibus-table-others/pull/17 + Resolves: https://github.com/moebiuscurve/ibus-table-others/issues/13 + +commit bddcb5f2be00330ce0d55316e2cfd2dc5265df10 +Author: Marek Nečada +Date: Sun Nov 6 00:25:21 2016 +0000 + + Extend russian translit for latin slavic layouts. + + Resolves: https://github.com/moebiuscurve/ibus-table-others/pull/14 + +commit 512cef1b671ae4af23e5d58fca63764c8d00fa85 +Author: Mike FABIAN +Date: Tue Jan 7 11:36:25 2020 +0100 + + Release 1.3.10 + +commit 049f283ef95894dbc1c7f0e7a2add2d460496a85 +Author: Mike FABIAN +Date: Tue Jan 7 11:23:47 2020 +0100 + + Remove trailing white space in comment + +commit e867c398a0fbb8c7accf40381041d18bc7edfcc7 +Author: Pavel Zorin-Kranich +Date: Sun Oct 6 17:21:48 2019 +0200 + + latex: add most of Unicode 9.0 block Mathematical Alphanumeric Symbols + +commit 689dcfcdf365d3d287e232940d9f36e04f771586 +Author: moebiuscurve +Date: Thu May 30 20:51:24 2019 +0530 + + rectify mistakes in sup a and e + +commit a3b2608b1adb2d5dabb0e85627e68b274c48d0f7 +Author: moebiuscurve +Date: Thu May 30 20:41:02 2019 +0530 + + add superscript alphabets + +commit f7b5a29b5b2e8a4f7bf525085b53307bd36f20d7 +Author: moebiuscurve +Date: Thu May 16 15:11:46 2019 +0530 + + added Blackboard bold letters + +commit d9675c8ee6473380f1e185894a2fbe968592b3a5 Author: Mike FABIAN Date: Thu Aug 18 07:19:01 2016 +0200 @@ -147,8 +206,8 @@ From /usr/share/X11/locale/en_US.UTF-8/Compose: - : "Ŋ" U014A # LATIN CAPITAL LETTER ENG - : "ŋ" U014B # LATIN SMALL LETTER ENG + : "Ŋ" U014A # LATIN CAPITAL LETTER ENG + : "ŋ" U014B # LATIN SMALL LETTER ENG commit 5d44f0cbd2365a30078d72495cfece494b19194f Author: Mike FABIAN @@ -279,9 +338,9 @@ ### Subscript - superscript ### - _1 ₁ 0 + _1 ₁ 0 ... - ^0 ⁰ 0 + ^0 ⁰ 0 Therefore, _ and ^ need to be start characters as well. @@ -428,7 +487,7 @@ Remove files generated by ./autogen.sh from git repository commit a057b85d7e3422ee1d7ff2d075f97f09283bda15 -Author: bnauwelaerts +Author: Bernard Nauwelaerts Date: Sat Feb 2 17:55:20 2013 +0100 Enable 3-letters transliteration @@ -466,9 +525,9 @@ PNG icons for Russian and Ukrainian replaced with updated SVG versions Conflicts: - icons/Makefile - icons/Makefile.am - icons/Makefile.in + icons/Makefile + icons/Makefile.am + icons/Makefile.in commit 647f3ab62de3541c78d63397e7ad1d6750a76dcc Author: Daniil Ivanov diff -Nru ibus-table-others-1.3.9/configure.ac ibus-table-others-1.3.11/configure.ac --- ibus-table-others-1.3.9/configure.ac 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/configure.ac 2020-01-07 15:43:34.000000000 +0000 @@ -23,7 +23,7 @@ m4_define([ibus_released], [1]) m4_define([ibus_major_version], [1]) m4_define([ibus_minor_version], [3]) -m4_define([ibus_micro_version], [9]) +m4_define([ibus_micro_version], [11]) # commented out as datestamp doesn't suit dist date. m4_define(ibus_maybe_datestamp, m4_esyscmd([if test x]ibus_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi])) @@ -106,6 +106,13 @@ AM_CONDITIONAL([IBUS_TABLE_BUILD_THAI],[test x"$enable_thai" != x"no"]) +AC_ARG_ENABLE([telex], + [AC_HELP_STRING([--enable-telex], + [Generate Telex Engine])], , + [enable_telex=yes]) + +AM_CONDITIONAL([IBUS_TABLE_BUILD_TELEX],[test x"$enable_telex" != x"no"]) + AC_ARG_ENABLE([viqr], [AC_HELP_STRING([--enable-viqr], [Generate Viqr Engine])], , @@ -113,6 +120,13 @@ AM_CONDITIONAL([IBUS_TABLE_BUILD_VIQR],[test x"$enable_viqr" != x"no"]) +AC_ARG_ENABLE([vni], + [AC_HELP_STRING([--enable-vni], + [Generate VNI Engine])], , + [enable_vni=yes]) + +AM_CONDITIONAL([IBUS_TABLE_BUILD_VNI],[test x"$enable_vni" != x"no"]) + AC_ARG_ENABLE([latex], [AC_HELP_STRING([--enable-latex], [Generate Latex Engine])], , @@ -171,7 +185,9 @@ Build Russian Legacy $enable_rusle Build Yawerty $enable_yawerty Build Thai $enable_thai + Build Telex $enable_telex Build Viqr $enable_viqr + Build VNI $enable_vni Build Latex $enable_latex Build CNS11643 $enable_cns11643 Build Emoji $enable_emoji diff -Nru ibus-table-others-1.3.9/debian/changelog ibus-table-others-1.3.11/debian/changelog --- ibus-table-others-1.3.9/debian/changelog 2019-01-07 21:38:23.000000000 +0000 +++ ibus-table-others-1.3.11/debian/changelog 2020-06-19 13:25:23.000000000 +0000 @@ -1,3 +1,23 @@ +ibus-table-others (1.3.11-2) unstable; urgency=medium + + * Team upload. + * Source-only upload to allow testing migration. + + -- Boyuan Yang Fri, 19 Jun 2020 09:25:23 -0400 + +ibus-table-others (1.3.11-1) unstable; urgency=medium + + * Team upload. + * New upstream release. + * debian/control: Bump Standards-Version to 4.5.0. + * debian/control: Bump debhelper compat to v13. + * Introduce new packages: + + ibus-table-telex + + ibus-table-vni + + ibus-table-old-hugarian-rovas + + -- Boyuan Yang Thu, 04 Jun 2020 19:26:02 -0400 + ibus-table-others (1.3.9-4) unstable; urgency=high * Team upload. diff -Nru ibus-table-others-1.3.9/debian/clean ibus-table-others-1.3.11/debian/clean --- ibus-table-others-1.3.9/debian/clean 2019-01-07 20:54:48.000000000 +0000 +++ ibus-table-others-1.3.11/debian/clean 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -debian/fakehome diff -Nru ibus-table-others-1.3.9/debian/control ibus-table-others-1.3.11/debian/control --- ibus-table-others-1.3.9/debian/control 2019-01-07 21:37:06.000000000 +0000 +++ ibus-table-others-1.3.11/debian/control 2020-06-04 23:31:14.000000000 +0000 @@ -5,12 +5,12 @@ Uploaders: Osamu Aoki , Build-Depends: - debhelper-compat (= 12), + debhelper-compat (= 13), ibus-table (>= 1.9.1-1~), pkg-config, python3:any (>= 3.3), Rules-Requires-Root: no -Standards-Version: 4.3.0 +Standards-Version: 4.5.0 Homepage: https://github.com/moebiuscurve/ibus-table-others Vcs-Git: https://salsa.debian.org/input-method-team/ibus-table-others.git Vcs-Browser: https://salsa.debian.org/input-method-team/ibus-table-others @@ -164,3 +164,43 @@ It also may help developers to develop input method easily. . This package provide one input method: Yawerty. + +Package: ibus-table-telex +Architecture: all +Depends: + ibus-table (>= 1.9.1-1~), + ${misc:Depends}, +Description: ibus-table input method: Telex + IBus is an Intelligent Input Bus. It is a new input framework for the Linux + OS. It provides full featured and user friendly input method user interface. + It also may help developers to develop input method easily. + . + This package provide one input method: Telex. + . + Telex is a Vietnamese input method. + +Package: ibus-table-vni +Architecture: all +Depends: + ibus-table (>= 1.9.1-1~), + ${misc:Depends}, +Description: ibus-table input method: Vni + IBus is an Intelligent Input Bus. It is a new input framework for the Linux + OS. It provides full featured and user friendly input method user interface. + It also may help developers to develop input method easily. + . + This package provide one input method: Vni. + . + Vni is a Vietnamese input method. + +Package: ibus-table-old-hungarian-rovas +Architecture: all +Depends: + ibus-table (>= 1.9.1-1~), + ${misc:Depends}, +Description: ibus-table input method: Rovás (Old Hungarian) + IBus is an Intelligent Input Bus. It is a new input framework for the Linux + OS. It provides full featured and user friendly input method user interface. + It also may help developers to develop input method easily. + . + This package provide one input method: Rovás (Old Hungarian). diff -Nru ibus-table-others-1.3.9/debian/ibus-table-old-hungarian-rovas.install ibus-table-others-1.3.11/debian/ibus-table-old-hungarian-rovas.install --- ibus-table-others-1.3.9/debian/ibus-table-old-hungarian-rovas.install 1970-01-01 00:00:00.000000000 +0000 +++ ibus-table-others-1.3.11/debian/ibus-table-old-hungarian-rovas.install 2020-06-04 23:30:51.000000000 +0000 @@ -0,0 +1,2 @@ +usr/share/ibus-table/icons/hu-old-hungarian-rovas.svg +usr/share/ibus-table/tables/hu-old-hungarian-rovas.db diff -Nru ibus-table-others-1.3.9/debian/ibus-table-telex.install ibus-table-others-1.3.11/debian/ibus-table-telex.install --- ibus-table-others-1.3.9/debian/ibus-table-telex.install 1970-01-01 00:00:00.000000000 +0000 +++ ibus-table-others-1.3.11/debian/ibus-table-telex.install 2020-06-04 23:24:46.000000000 +0000 @@ -0,0 +1,2 @@ +usr/share/ibus-table/icons/telex.png +usr/share/ibus-table/tables/telex.db diff -Nru ibus-table-others-1.3.9/debian/ibus-table-vni.install ibus-table-others-1.3.11/debian/ibus-table-vni.install --- ibus-table-others-1.3.9/debian/ibus-table-vni.install 1970-01-01 00:00:00.000000000 +0000 +++ ibus-table-others-1.3.11/debian/ibus-table-vni.install 2020-06-04 23:25:06.000000000 +0000 @@ -0,0 +1,2 @@ +usr/share/ibus-table/icons/vni.png +usr/share/ibus-table/tables/vni.db diff -Nru ibus-table-others-1.3.9/debian/not-installed ibus-table-others-1.3.11/debian/not-installed --- ibus-table-others-1.3.9/debian/not-installed 2019-01-07 20:54:48.000000000 +0000 +++ ibus-table-others-1.3.11/debian/not-installed 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/share/ibus-table/tables/hu-old-hungarian-rovas.db -usr/share/ibus-table/icons/hu-old-hungarian-rovas.svg diff -Nru ibus-table-others-1.3.9/debian/rules ibus-table-others-1.3.11/debian/rules --- ibus-table-others-1.3.9/debian/rules 2019-01-07 21:38:23.000000000 +0000 +++ ibus-table-others-1.3.11/debian/rules 2020-06-04 23:17:53.000000000 +0000 @@ -5,13 +5,8 @@ # see FEATURE AREAS in dpkg-buildflags(1) export DEB_BUILD_MAINT_OPTIONS = hardening=+all -export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed +export DEB_LDFLAGS_MAINT_APPEND = -export HOME := $(CURDIR)/debian/fakehome %: dh $@ --no-parallel - -override_dh_missing: - dh_missing --fail-missing - rm -rf debian/fakehome diff -Nru ibus-table-others-1.3.9/icons/Makefile.am ibus-table-others-1.3.11/icons/Makefile.am --- ibus-table-others-1.3.9/icons/Makefile.am 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/icons/Makefile.am 2020-01-07 15:43:34.000000000 +0000 @@ -52,10 +52,18 @@ icons_DATA += thai.png endif +if IBUS_TABLE_BUILD_TELEX +icons_DATA += telex.png +endif + if IBUS_TABLE_BUILD_VIQR icons_DATA += viqr.png endif +if IBUS_TABLE_BUILD_VNI +icons_DATA += vni.png +endif + if IBUS_TABLE_BUILD_LATEX icons_DATA += latex.svg endif @@ -89,7 +97,9 @@ rusle.png \ yawerty.png \ thai.png \ + telex.png \ viqr.png \ + vni.png \ latex.svg \ cns11643.png \ ibus-emoji.svg \ Binary files /tmp/tmpQbQAc4/I5EY55JRZG/ibus-table-others-1.3.9/icons/telex.png and /tmp/tmpQbQAc4/NRjvxeSvoj/ibus-table-others-1.3.11/icons/telex.png differ Binary files /tmp/tmpQbQAc4/I5EY55JRZG/ibus-table-others-1.3.9/icons/vni.png and /tmp/tmpQbQAc4/NRjvxeSvoj/ibus-table-others-1.3.11/icons/vni.png differ diff -Nru ibus-table-others-1.3.9/README ibus-table-others-1.3.11/README --- ibus-table-others-1.3.9/README 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/README 2020-01-07 15:43:34.000000000 +0000 @@ -13,10 +13,12 @@ * LaTex * Mathwriter * RussianTraditional + * Telex * Thai * Translit * Ua-Translit * Viqr + * VNI * Yawerty All aforementioned tables are released under GNU Public License version 3. diff -Nru ibus-table-others-1.3.9/tables/latex.txt ibus-table-others-1.3.11/tables/latex.txt --- ibus-table-others-1.3.9/tables/latex.txt 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/tables/latex.txt 2020-01-07 15:43:34.000000000 +0000 @@ -15,7 +15,7 @@ ### A unique number indicates the version of this file. ### For example the last modified date of this file. ### This number must be less than 2^32. -SERIAL_NUMBER = 20130611 +SERIAL_NUMBER = 20191006 ### License LICENSE = LGPL @@ -199,7 +199,7 @@ ^) ⁾ 0 ^n ⁿ 0 ### -### Unicode symbols interval 2100-214F +### Letterlike Symbols, Unicode 9.0 interval 2100-214F ### ###\mathbb-------------- \mathbbC ℂ 0 @@ -529,4 +529,262 @@ \flat ♭ 0 \natural ♮ 0 \sharp ♯ 0 +### Mathematical Alphanumeric Symbols, Unicode 9.0 interval 1D400-1D7FF +\mathbfA 𝐀 0 +\mathbfB 𝐁 0 +\mathbfC 𝐂 0 +\mathbfD 𝐃 0 +\mathbfE 𝐄 0 +\mathbfF 𝐅 0 +\mathbfG 𝐆 0 +\mathbfH 𝐇 0 +\mathbfI 𝐈 0 +\mathbfJ 𝐉 0 +\mathbfK 𝐊 0 +\mathbfL 𝐋 0 +\mathbfM 𝐌 0 +\mathbfN 𝐍 0 +\mathbfO 𝐎 0 +\mathbfP 𝐏 0 +\mathbfQ 𝐐 0 +\mathbfR 𝐑 0 +\mathbfS 𝐒 0 +\mathbfT 𝐓 0 +\mathbfU 𝐔 0 +\mathbfV 𝐕 0 +\mathbfW 𝐖 0 +\mathbfX 𝐗 0 +\mathbfY 𝐘 0 +\mathbfZ 𝐙 0 +\mathbfa 𝐚 0 +\mathbfb 𝐛 0 +\mathbfc 𝐜 0 +\mathbfd 𝐝 0 +\mathbfe 𝐞 0 +\mathbff 𝐟 0 +\mathbfg 𝐠 0 +\mathbfh 𝐡 0 +\mathbfi 𝐢 0 +\mathbfj 𝐣 0 +\mathbfk 𝐤 0 +\mathbfl 𝐥 0 +\mathbfm 𝐦 0 +\mathbfn 𝐧 0 +\mathbfo 𝐨 0 +\mathbfp 𝐩 0 +\mathbfq 𝐪 0 +\mathbfr 𝐫 0 +\mathbfs 𝐬 0 +\mathbft 𝐭 0 +\mathbfu 𝐮 0 +\mathbfv 𝐯 0 +\mathbfw 𝐰 0 +\mathbfx 𝐱 0 +\mathbfy 𝐲 0 +\mathbfz 𝐳 0 +\mathitA 𝐴 0 +\mathitB 𝐵 0 +\mathitC 𝐶 0 +\mathitD 𝐷 0 +\mathitE 𝐸 0 +\mathitF 𝐹 0 +\mathitG 𝐺 0 +\mathitH 𝐻 0 +\mathitI 𝐼 0 +\mathitJ 𝐽 0 +\mathitK 𝐾 0 +\mathitL 𝐿 0 +\mathitM 𝑀 0 +\mathitN 𝑁 0 +\mathitO 𝑂 0 +\mathitP 𝑃 0 +\mathitQ 𝑄 0 +\mathitR 𝑅 0 +\mathitS 𝑆 0 +\mathitT 𝑇 0 +\mathitU 𝑈 0 +\mathitV 𝑉 0 +\mathitW 𝑊 0 +\mathitX 𝑋 0 +\mathitY 𝑌 0 +\mathitZ 𝑍 0 +\mathita 𝑎 0 +\mathitb 𝑏 0 +\mathitc 𝑐 0 +\mathitd 𝑑 0 +\mathite 𝑒 0 +\mathitf 𝑓 0 +\mathitg 𝑔 0 +\mathiti 𝑖 0 +\mathitj 𝑗 0 +\mathitk 𝑘 0 +\mathitl 𝑙 0 +\mathitm 𝑚 0 +\mathitn 𝑛 0 +\mathito 𝑜 0 +\mathitp 𝑝 0 +\mathitq 𝑞 0 +\mathitr 𝑟 0 +\mathits 𝑠 0 +\mathitt 𝑡 0 +\mathitu 𝑢 0 +\mathitv 𝑣 0 +\mathitw 𝑤 0 +\mathitx 𝑥 0 +\mathity 𝑦 0 +\mathitz 𝑧 0 +### Unicode standard calls these characters "script", not "calligraphic", but they are traditionally mapped to \mathcal in this table +\mathcalA 𝒜 0 +\mathcalC 𝒞 0 +\mathcalD 𝒟 0 +\mathcalG 𝒢 0 +\mathcalJ 𝒥 0 +\mathcalK 𝒦 0 +\mathcalN 𝒩 0 +\mathcalO 𝒪 0 +\mathcalP 𝒫 0 +\mathcalQ 𝒬 0 +\mathcalS 𝒮 0 +\mathcalT 𝒯 0 +\mathcalU 𝒰 0 +\mathcalV 𝒱 0 +\mathcalW 𝒲 0 +\mathcalX 𝒳 0 +\mathcalY 𝒴 0 +\mathcalZ 𝒵 0 +\mathcala 𝒶 0 +\mathcalb 𝒷 0 +\mathcalc 𝒸 0 +\mathcald 𝒹 0 +\mathcalf 𝒻 0 +\mathcalh 𝒽 0 +\mathcali 𝒾 0 +\mathcalj 𝒿 0 +\mathcalk 𝓀 0 +\mathcall 𝓁 0 +\mathcalm 𝓂 0 +\mathcaln 𝓃 0 +\mathcalp 𝓅 0 +\mathcalq 𝓆 0 +\mathcalr 𝓇 0 +\mathcals 𝓈 0 +\mathcalt 𝓉 0 +\mathcalu 𝓊 0 +\mathcalv 𝓋 0 +\mathcalw 𝓌 0 +\mathcalx 𝓍 0 +\mathcaly 𝓎 0 +\mathcalz 𝓏 0 +\mathfrakA 𝔄 0 +\mathfrakB 𝔅 0 +\mathfrakD 𝔇 0 +\mathfrakE 𝔈 0 +\mathfrakF 𝔉 0 +\mathfrakG 𝔊 0 +\mathfrakJ 𝔍 0 +\mathfrakK 𝔎 0 +\mathfrakL 𝔏 0 +\mathfrakM 𝔐 0 +\mathfrakN 𝔑 0 +\mathfrakO 𝔒 0 +\mathfrakP 𝔓 0 +\mathfrakQ 𝔔 0 +\mathfrakS 𝔖 0 +\mathfrakT 𝔗 0 +\mathfrakU 𝔘 0 +\mathfrakV 𝔙 0 +\mathfrakW 𝔚 0 +\mathfrakX 𝔛 0 +\mathfrakY 𝔜 0 +\mathfraka 𝔞 0 +\mathfrakb 𝔟 0 +\mathfrakc 𝔠 0 +\mathfrakd 𝔡 0 +\mathfrake 𝔢 0 +\mathfrakf 𝔣 0 +\mathfrakg 𝔤 0 +\mathfrakh 𝔥 0 +\mathfraki 𝔦 0 +\mathfrakj 𝔧 0 +\mathfrakh 𝔨 0 +\mathfrakl 𝔩 0 +\mathfrakm 𝔪 0 +\mathfrakn 𝔫 0 +\mathfrako 𝔬 0 +\mathfrakp 𝔭 0 +\mathfrakq 𝔮 0 +\mathfrakr 𝔯 0 +\mathfraks 𝔰 0 +\mathfrakt 𝔱 0 +\mathfraku 𝔲 0 +\mathfrakv 𝔳 0 +\mathfrakw 𝔴 0 +\mathfrakx 𝔵 0 +\mathfraky 𝔶 0 +\mathfrakz 𝔷 0 +\mathbbA 𝔸 0 +\mathbbB 𝔹 0 +\mathbbD 𝔻 0 +\mathbbE 𝔼 0 +\mathbbF 𝔽 0 +\mathbbG 𝔾 0 +\mathbbI 𝕀 0 +\mathbbJ 𝕁 0 +\mathbbK 𝕂 0 +\mathbbL 𝕃 0 +\mathbbM 𝕄 0 +\mathbbO 𝕆 0 +\mathbbS 𝕊 0 +\mathbbT 𝕋 0 +\mathbbU 𝕌 0 +\mathbbV 𝕍 0 +\mathbbW 𝕎 0 +\mathbbX 𝕏 0 +\mathbbY 𝕐 0 +\mathbba 𝕒 0 +\mathbbb 𝕓 0 +\mathbbc 𝕔 0 +\mathbbd 𝕕 0 +\mathbbe 𝕖 0 +\mathbbf 𝕗 0 +\mathbbg 𝕘 0 +\mathbbh 𝕙 0 +\mathbbi 𝕚 0 +\mathbbj 𝕛 0 +\mathbbk 𝕜 0 +\mathbbl 𝕝 0 +\mathbbm 𝕞 0 +\mathbbn 𝕟 0 +\mathbbo 𝕠 0 +\mathbbp 𝕡 0 +\mathbbq 𝕢 0 +\mathbbr 𝕣 0 +\mathbbs 𝕤 0 +\mathbbt 𝕥 0 +\mathbbu 𝕦 0 +\mathbbv 𝕧 0 +\mathbbw 𝕨 0 +\mathbbx 𝕩 0 +\mathbby 𝕪 0 +\mathbbz 𝕫 0 +\mathbf0 𝟎 0 +\mathbf1 𝟏 0 +\mathbf2 𝟐 0 +\mathbf3 𝟑 0 +\mathbf4 𝟒 0 +\mathbf5 𝟓 0 +\mathbf6 𝟔 0 +\mathbf7 𝟕 0 +\mathbf8 𝟖 0 +\mathbf9 𝟗 0 +\mathbb0 𝟘 0 +\mathbb1 𝟙 0 +\mathbb2 𝟚 0 +\mathbb3 𝟛 0 +\mathbb4 𝟜 0 +\mathbb5 𝟝 0 +\mathbb6 𝟞 0 +\mathbb7 𝟟 0 +\mathbb8 𝟠 0 +\mathbb9 𝟡 0 END_TABLE diff -Nru ibus-table-others-1.3.9/tables/Makefile.am ibus-table-others-1.3.11/tables/Makefile.am --- ibus-table-others-1.3.9/tables/Makefile.am 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/tables/Makefile.am 2020-01-07 15:43:34.000000000 +0000 @@ -55,10 +55,18 @@ tables_DATA += thai.db endif +if IBUS_TABLE_BUILD_TELEX +tables_DATA += telex.db +endif + if IBUS_TABLE_BUILD_VIQR tables_DATA += viqr.db endif +if IBUS_TABLE_BUILD_VNI +tables_DATA += vni.db +endif + if IBUS_TABLE_BUILD_LATEX tables_DATA += latex.db endif @@ -93,7 +101,9 @@ rusle.txt \ yawerty.txt \ thai.txt \ + telex.txt \ viqr.txt \ + vni.txt \ latex.txt \ cns11643.txt \ emoji-table.txt \ diff -Nru ibus-table-others-1.3.9/tables/mathwriter-ibus.txt ibus-table-others-1.3.11/tables/mathwriter-ibus.txt --- ibus-table-others-1.3.9/tables/mathwriter-ibus.txt 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/tables/mathwriter-ibus.txt 2020-01-07 15:43:34.000000000 +0000 @@ -46,6 +46,7 @@ a A 0 A A 0 A a 0 +A 𝔸 0 almost_equal_to ≈ 0 almostequalto ≈ 0 ~~ ≈ 0 @@ -119,6 +120,7 @@ atom ⚛ 0 b b 0 B B 0 +B 𝔹 0 backward_difference ∇ 0 backward_difference ▽ 0 backwarddifference ∇ 0 @@ -174,6 +176,7 @@ c © 0 C C 0 C © 0 +C ℂ 0 ceiling_left ⌈ 0 ceilingleft ⌈ 0 ceiling< ⌈ 0 @@ -534,6 +537,7 @@ d d 0 d ⅆ 0 D D 0 +D 𝔻 0 degree ° 0 degree ˚ 0 del ∇ 0 @@ -789,6 +793,7 @@ e ⅇ 0 e ε 0 E E 0 +E 𝔼 0 E ⅇ 0 E ε 0 E Ε 0 @@ -942,6 +947,7 @@ existquant ∃ 0 f f 0 F F 0 +F 𝔽 0 female ♀ 0 Female ♀ 0 final_sigma ς 0 @@ -979,6 +985,7 @@ fn ƒ 0 g g 0 G G 0 +G 𝔾 0 gamma γ 0 gamma Γ 0 Gamma Γ 0 @@ -1139,6 +1146,8 @@ ?> ⩼ 0 h h 0 H H 0 +H ℋ 0 +H ℍ 0 half ½ 0 hash # 0 # # 0 @@ -1163,6 +1172,7 @@ I I 0 I i 0 I ⅈ 0 +I 𝕀 0 identical_to ≡ 0 identicalto ≡ 0 --- ≡ 0 @@ -1455,6 +1465,7 @@ Iota ι 0 j j 0 J j 0 +J 𝕁 0 join ⨝ 0 |\/| ⨝ 0 |/\| ⨝ 0 @@ -1462,6 +1473,7 @@ |X| ⨝ 0 k k 0 K k 0 +K 𝕂 0 kappa κ 0 kappa κ 0 kilo_byte ㎅ 0 @@ -1481,6 +1493,7 @@ L L 0 L l 0 L ℓ 0 +L 𝕃 0 lamda λ 0 lamda Λ 0 Lamda Λ 0 @@ -1868,6 +1881,7 @@ m M 0 M M 0 M m 0 +M 𝕄 0 male ♂ 0 Male ♂ 0 matrix_top_left ⎡ 0 @@ -2363,6 +2377,7 @@ o ° 0 o ˚ 0 O O 0 +O 𝕆 0 O o 0 O ° 0 O ˚ 0 @@ -2407,6 +2422,7 @@ p P 0 P P 0 P p 0 +P ℙ 0 parallel_to ∥ 0 parallel_to ǁ 0 parallel_to ‖ 0 @@ -2843,6 +2859,7 @@ s s 0 s S 0 S S 0 +S 𝕊 0 S s 0 S ∫ 0 sector ⌔ 0 @@ -3401,12 +3418,27 @@ super8 ⁸ 0 super_9 ⁹ 0 super9 ⁹ 0 -super_a ͣ 0 -supera ͣ 0 -^a ͣ 0 -super_e ͤ 0 -supere ͤ 0 -^e ͤ 0 +super_a ᵃ 0 +supera ᵃ 0 +^a ᵃ 0 +super_b ᵇ 0 +superb ᵇ 0 +^b ᵇ 0 +super_c ᶜ 0 +superc ᶜ 0 +^c ᶜ 0 +super_d ᵈ 0 +superd ᵈ 0 +^d ᵈ 0 +super_e ᵉ 0 +supere ᵉ 0 +^e ᵉ 0 +super_f ᶠ 0 +superf ᶠ 0 +^f ᶠ 0 +super_g ᵍ 0 +superg ᵍ 0 +^g ᵍ 0 super_h ʰ 0 super_h ʱ 0 superh ʰ 0 @@ -3419,18 +3451,36 @@ super_j ʲ 0 superj ʲ 0 ^j ʲ 0 +super_k ᵏ 0 +superk ᵏ 0 +^k ᵏ 0 super_l ˡ 0 superl ˡ 0 ^l ˡ 0 +super_m ᵐ 0 +superm ᵐ 0 +^m ᵐ 0 super_n ⁿ 0 supern ⁿ 0 ^n ⁿ 0 +super_o ᵒ 0 +supero ᵒ 0 +^o ᵒ 0 +super_p ᵖ 0 +superp ᵖ 0 +^p ᵖ 0 super_r ʳ 0 superr ʳ 0 ^r ʳ 0 super_s ˢ 0 supers ˢ 0 ^s ˢ 0 +super_u ᵘ 0 +superu ᵘ 0 +^u ᵘ 0 +super_v ᵛ 0 +superv ᵛ 0 +^v ᵛ 0 super_w ʷ 0 superw ʷ 0 ^w ʷ 0 @@ -3440,6 +3490,9 @@ super_y ʸ 0 supery ʸ 0 ^y ʸ 0 +super_z ᶻ 0 +superz ᶻ 0 +^z ᶻ 0 super_T ᵀ 0 superT ᵀ 0 ^T ᵀ 0 @@ -3565,6 +3618,7 @@ t t 0 t T 0 T T 0 +T 𝕋 0 T t 0 tau τ 0 tau Τ 0 @@ -3849,6 +3903,7 @@ u ⋃ 0 U u 0 U U 0 +U 𝕌 0 U ∪ 0 U ⋃ 0 underline ̲ 0 @@ -4017,6 +4072,7 @@ v ∪ 0 v ⋃ 0 V V 0 +V 𝕍 0 V v 0 V ∨ 0 V ∪ 0 @@ -4084,6 +4140,7 @@ w w 0 w W 0 W W 0 +W 𝕎 0 W w 0 weierstrass_power_set ℘ 0 weierstrass_powerset ℘ 0 @@ -4103,6 +4160,7 @@ white_vertical_bar ⫾ 0 [] ⫾ 0 || ⫾ 0 +X 𝕏 0 x x 0 x X 0 x ⨯ 0 @@ -4122,11 +4180,13 @@ y y 0 y Y 0 Y Y 0 +Y 𝕐 0 Y y 0 z z 0 z Z 0 Z Z 0 Z z 0 +Z ℤ 0 zeta ζ 0 zeta Ζ 0 Zeta Ζ 0 diff -Nru ibus-table-others-1.3.9/tables/telex.txt ibus-table-others-1.3.11/tables/telex.txt --- ibus-table-others-1.3.9/tables/telex.txt 1970-01-01 00:00:00.000000000 +0000 +++ ibus-table-others-1.3.11/tables/telex.txt 2020-01-07 15:43:34.000000000 +0000 @@ -0,0 +1,361 @@ +### File header must not be modified. +### This file must be encoded into UTF-8. +### This table is licensed under GPL version 3. +### Comments start with ### not single #. +### Derive from the format of SCIM Table, so you can modify the table from +### scim-tables' table. +SCIM_Generic_Table_Phrase_Library_TEXT +VERSION_1_0 + +### Begin Table definition. +BEGIN_DEFINITION + +### License +LICENSE = GPLv3 + +### An unique ID to distinguish this table among others. +### Use uuidgen to generate this kind of ID. +UUID = 6956641e-597a-4680-9207-9aa2d75f231a + +### A unique number indicates the version of this file. +### For example the last modified date of this file. +### This number must be less than 2^32. +### Just make your table version-able. +SERIAL_NUMBER = 20190825 + +### ICON can be any format as long as your pygtk can recognized. +### The most widely ones are "png" and "svg", letter one is recommended. +ICON = telex.png + +### The symbol to be displayed in IM switchers. +SYMBOL = vi + +### The default name of this table, this is needed. +NAME = Telex + +### The local names of this table, this is optional. +###NAME.vi_VN = Telex + +### Description +DESCRIPTION = Vietnamese Telex input method for IBus Table. + +### Supported languages of this table. +### Single "zh_CN" just be recognized as zh_CN, +### but "zh_CN, zh_HK" or more zh_XX will be recognized as zh, +### and "en_US, zh_CN" will be just ignored. +LANGUAGES = vi_VN + +### The author of this table. +AUTHOR = Nguyễn Gia Phong + +### Prompt string to be displayed in the status area, CN will be replaced by +### the gettext tools in runtime as 中. +STATUS_PROMPT = VI + +### Valid input chars. +VALID_INPUT_CHARS = ADEFIJORSUWXY\adefijorsuwxy + +### Layout +LAYOUT = default + +### The max number of input keys for every phrase or character. +MAX_KEY_LENGTH = 3 + +### Use auto_commit mode as default. +AUTO_COMMIT = TRUE + +### Automatically selects the first phrase when typing. +AUTO_SELECT = TRUE + +### If TRUE then the lookup table will always be shown if there is any +### candidate phrase. Otherwise the lookup table won't be shown unless the user +### requires it by moving the pre-edit caret left. +ALWAYS_SHOW_LOOKUP = FALSE + +#### Use full width punctuation by default. +DEF_FULL_WIDTH_PUNCT = FALSE + +### Not use full width letter by default. +DEF_FULL_WIDTH_LETTER = FALSE + +### Whether user are allow to define phrase, default is TRUE. +### You have to define the word construction rules below. +### For input methods which do not input phrases, set this to FALSE. +USER_CAN_DEFINE_PHRASE = FALSE + +### Whether support PinYin Mode, default is TRUE. +### this feature is just for Chinese, set it to FALSE if your IM is not +### Chinese. +PINYIN_MODE = FALSE + +### If TRUE then the phrases' frequencies will be adjusted dynamically +### according your using frequency. +DYNAMIC_ADJUST = FALSE + +### Some characters whose frequencies should be fix all the time, e.g. +### some punctuation. +###NO_CHECK_CHARS = + +### Rules for constructing user defined phrase. +### "ce" stands for "ci equal", a Chinese English :), means "phrase length +### equal to", thus ce2 -> phrase length equal to 2, and "ca" means +### "phrase length equal or above", so ca4 -> phrase length equal or above 4. +### p21 -> the 1st key of 2nd character in the phrase, and so on. +### Each rule is separated via ";". +### Example below is a complete rule-set, +### because [2,2] ∩ [3,3] ∩ [4,+∞] = [2,+∞], which is the range of length +### of phrase. This have to be satisfied if you need ibus-table to build up +### your own input phrase via your daily using. +###RULES = ce2:p11+p12+p21+p22;ce3:p11+p21+p22+p31;ca4:p11+p21+p31+p41 + +### The key strokes to commit the convert result to client. +COMMIT_KEYS = VoidSymbol + +### The key strokes to forward the inputted string to client. +FORWARD_KEYS = VoidSymbol + +### The key strokes to select candidated phrases. +SELECT_KEYS = VoidSymbol + +### The key strokes to page up the lookup table. +PAGE_UP_KEYS = VoidSymbol + +### The key strokes to page down the lookup table. +PAGE_DOWN_KEYS = VoidSymbol + +END_DEFINITION + +### Begin Table data. +### Format of every line whose formatted in "input_keys\tphrase\tfreq\n" is an +### entry. +### From left to right, the 1st column are the input key combination that you +### entered via keyboard; the 2nd column are presented character or phrase of +### the key combination you want; the 3rd column are frequency of the character +### or phrase. +BEGIN_TABLE +A A 0 +A\ A 0 +AF À 0 +AS Á 0 +AR Ả 0 +AX Ã 0 +AJ Ạ 0 + +AW Ă 0 +AW\ Ă 0 +AWF Ằ 0 +AWS Ắ 0 +AWR Ẳ 0 +AWX Ẵ 0 +AWJ Ặ 0 + +AA Â 0 +AA\ Â 0 +AAF Ầ 0 +AAS Ấ 0 +AAR Ẩ 0 +AAX Ẫ 0 +AAJ Ậ 0 + +D D 0 +D\ D 0 +DD Đ 0 + +E E 0 +E\ E 0 +EF È 0 +ES É 0 +ER Ẻ 0 +EX Ẽ 0 +EJ Ẹ 0 + +EE Ê 0 +EE\ Ê 0 +EEF Ề 0 +EES Ế 0 +EER Ể 0 +EEX Ễ 0 +EEJ Ệ 0 + +F F 0 + +I I 0 +I\ I 0 +IF Ì 0 +IS Í 0 +IR Ỉ 0 +IX Ĩ 0 +IJ Ị 0 + +J J 0 + +O O 0 +O\ O 0 +OF Ò 0 +OS Ó 0 +OR Ỏ 0 +OX Õ 0 +OJ Ọ 0 + +OO Ô 0 +OO\ Ô 0 +OOF Ồ 0 +OOS Ố 0 +OOR Ổ 0 +OOX Ỗ 0 +OOJ Ộ 0 + +OW Ơ 0 +OW\ Ơ 0 +OWF Ờ 0 +OWS Ớ 0 +OWR Ở 0 +OWX Ỡ 0 +OWJ Ợ 0 + +R R 0 + +S S 0 + +U U 0 +U\ U 0 +UF Ù 0 +US Ú 0 +UR Ủ 0 +UX Ũ 0 +UJ Ụ 0 + +UW Ư 0 +UW\ Ư 0 +UWF Ừ 0 +UWS Ứ 0 +UWR Ử 0 +UWX Ữ 0 +UWJ Ự 0 + +W W 0 + +X X 0 + +Y Y 0 +Y\ Y 0 +YF Ỳ 0 +YS Ý 0 +YR Ỷ 0 +YX Ỹ 0 +YJ Ỵ 0 + +\ \ 0 + +a a 0 +a\ a 0 +af à 0 +as á 0 +ar ả 0 +ax ã 0 +aj ạ 0 + +aw ă 0 +aw\ ă 0 +awf ằ 0 +aws ắ 0 +awr ẳ 0 +awx ẵ 0 +awj ặ 0 + +aa â 0 +aa\ â 0 +aaf ầ 0 +aas ấ 0 +aar ẩ 0 +aax ẫ 0 +aaj ậ 0 + +d d 0 +d\ d 0 +dd đ 0 + +e e 0 +e\ e 0 +ef è 0 +es é 0 +er ẻ 0 +ex ẽ 0 +ej ẹ 0 + +ee ê 0 +ee\ ê 0 +eef ề 0 +ees ế 0 +eer ể 0 +eex ễ 0 +eej ệ 0 + +f f 0 + +i i 0 +i\ i 0 +if ì 0 +is í 0 +ir ỉ 0 +ix ĩ 0 +ij ị 0 + +j j 0 + +o o 0 +o\ o 0 +of ò 0 +os ó 0 +or ỏ 0 +ox õ 0 +oj ọ 0 + +oo ô 0 +oo\ ô 0 +oof ồ 0 +oos ố 0 +oor ổ 0 +oox ỗ 0 +ooj ộ 0 + +ow ơ 0 +ow\ ơ 0 +owf ờ 0 +ows ớ 0 +owr ở 0 +owx ỡ 0 +owj ợ 0 + +r r 0 + +s s 0 + +u u 0 +u\ u 0 +uf ù 0 +us ú 0 +ur ủ 0 +ux ũ 0 +uj ụ 0 + +uw ư 0 +uw\ ư 0 +uwf ừ 0 +uws ứ 0 +uwr ử 0 +uwx ữ 0 +uwj ự 0 + +w w 0 + +x x 0 + +y y 0 +y\ y 0 +yf ỳ 0 +ys ý 0 +yr ỷ 0 +yx ỹ 0 +yj ỵ 0 +END_TABLE diff -Nru ibus-table-others-1.3.9/tables/translit.txt ibus-table-others-1.3.11/tables/translit.txt --- ibus-table-others-1.3.9/tables/translit.txt 2016-08-18 05:20:08.000000000 +0000 +++ ibus-table-others-1.3.11/tables/translit.txt 2020-01-07 15:43:34.000000000 +0000 @@ -19,7 +19,7 @@ ### A unique number indicates the version of this file. ### For example the last modified date of this file. ### This number must be less than 2^32. -SERIAL_NUMBER = 20130202 +SERIAL_NUMBER = 20161105 ICON = translit.svg @@ -93,7 +93,7 @@ MAX_KEY_LENGTH = 3 ### Valid input chars. -VALID_INPUT_CHARS = ABCDEFGHIJKLMNOPRSTUVWYZÄÖÜabcdefghijklmnopqrstuvwxyzäöü'# +VALID_INPUT_CHARS = ABCDEFGHIJKLMNOPRSTUVWYZÄÖÜÁÉÚČĆŠŚŻŽabcdefghijklmnopqrstuvwxyzäöüáéúćčśšżž'# ### The key strokes to split inputted string. ###SPLIT_KEYS = quoteright @@ -128,6 +128,8 @@ Yo Ё 1000 YO Ё 1000 Ö Ё 1000 +Ž Ж 1000 +Ż Ж 1000 Zh Ж 1000 ZH Ж 1000 Z З 1000 @@ -149,13 +151,23 @@ C Ц 1000 Ch Ч 1000 CH Ч 1000 +Č Ч 1000 +Ć Ч 1000 Sh Ш 1000 SH Ш 1000 W Ш 1000 Shh Щ 1000 SHH Щ 1000 +Š Ш 1000 +Ś Ш 1000 Sj Щ 1000 SJ Щ 1000 +Šh Щ 1000 +ŠH Щ 1000 +Šč Щ 1000 +ŠČ Щ 1000 +Ść Щ 1000 +ŚĆ Щ 1000 ## Ъ 1000 Y Ы 1000 '' Ь 1000 @@ -163,15 +175,18 @@ JE Э 1000 Ä Э 1000 E' Э 1000 +É Э 1000 Ju Ю 1000 JU Ю 1000 Yu Ю 1000 YU Ю 1000 Ü Ю 1000 +Ú Ю 1000 Ja Я 1000 JA Я 1000 Ya Я 1000 YA Я 1000 +Á Я 1000 Q Я 1000 a а 1000 b б 1000 @@ -182,6 +197,8 @@ jo ё 1000 yo ё 1000 ö ё 1000 +ž ж 1000 +ż ж 1000 zh ж 1000 z з 1000 i и 1000 @@ -201,20 +218,30 @@ x х 1000 c ц 1000 ch ч 1000 +č ч 1000 +ć ч 1000 sh ш 1000 w ш 1000 +š ш 1000 +ś ш 1000 shh щ 1000 sj щ 1000 +šh щ 1000 +šč щ 1000 +ść щ 1000 # ъ 1000 y ы 1000 ' ь 1000 je э 1000 e' э 1000 ä э 1000 +é э 1000 ju ю 1000 yu ю 1000 ü ю 1000 +ú ю 1000 ja я 1000 ya я 1000 q я 1000 +á я 1000 END_TABLE diff -Nru ibus-table-others-1.3.9/tables/vni.txt ibus-table-others-1.3.11/tables/vni.txt --- ibus-table-others-1.3.9/tables/vni.txt 1970-01-01 00:00:00.000000000 +0000 +++ ibus-table-others-1.3.11/tables/vni.txt 2020-01-07 15:43:34.000000000 +0000 @@ -0,0 +1,347 @@ +### File header must not be modified. +### This file must be encoded into UTF-8. +### This table is licensed under GPL version 3. +### Comments start with ### not single #. +### Derive from the format of SCIM Table, so you can modify the table from +### scim-tables' table. +SCIM_Generic_Table_Phrase_Library_TEXT +VERSION_1_0 + +### Begin Table definition. +BEGIN_DEFINITION + +### License +LICENSE = GPLv3 + +### An unique ID to distinguish this table among others. +### Use uuidgen to generate this kind of ID. +UUID = 9ad3eccd-5ee9-4776-ad1a-c02095e105a3 + +### A unique number indicates the version of this file. +### For example the last modified date of this file. +### This number must be less than 2^32. +### Just make your table version-able. +SERIAL_NUMBER = 20190825 + +### ICON can be any format as long as your pygtk can recognized. +### The most widely ones are "png" and "svg", letter one is recommended. +ICON = vni.png + +### The symbol to be displayed in IM switchers. +SYMBOL = vi + +### The default name of this table, this is needed. +NAME = VNI + +### The local names of this table, this is optional. +###NAME.vi_VN = VNI + +### Description +DESCRIPTION = Vietnamese VNI input method for IBus Table. + +### Supported languages of this table. +### Single "zh_CN" just be recognized as zh_CN, +### but "zh_CN, zh_HK" or more zh_XX will be recognized as zh, +### and "en_US, zh_CN" will be just ignored. +LANGUAGES = vi_VN + +### The author of this table. +AUTHOR = Nguyễn Gia Phong + +### Prompt string to be displayed in the status area, CN will be replaced by +### the gettext tools in runtime as 中. +STATUS_PROMPT = VI + +### Valid input chars. +VALID_INPUT_CHARS = 123456789ADEIOUY\adeiouy + +### Layout +LAYOUT = default + +### The max number of input keys for every phrase or character. +MAX_KEY_LENGTH = 3 + +### Use auto_commit mode as default. +AUTO_COMMIT = TRUE + +### Automatically selects the first phrase when typing. +AUTO_SELECT = TRUE + +### If TRUE then the lookup table will always be shown if there is any +### candidate phrase. Otherwise the lookup table won't be shown unless the user +### requires it by moving the pre-edit caret left. +ALWAYS_SHOW_LOOKUP = FALSE + +#### Use full width punctuation by default. +DEF_FULL_WIDTH_PUNCT = FALSE + +### Not use full width letter by default. +DEF_FULL_WIDTH_LETTER = FALSE + +### Whether user are allow to define phrase, default is TRUE. +### You have to define the word construction rules below. +### For input methods which do not input phrases, set this to FALSE. +USER_CAN_DEFINE_PHRASE = FALSE + +### Whether support PinYin Mode, default is TRUE. +### this feature is just for Chinese, set it to FALSE if your IM is not +### Chinese. +PINYIN_MODE = FALSE + +### If TRUE then the phrases' frequencies will be adjusted dynamically +### according your using frequency. +DYNAMIC_ADJUST = FALSE + +### Some characters whose frequencies should be fix all the time, e.g. +### some punctuation. +###NO_CHECK_CHARS = + +### Rules for constructing user defined phrase. +### "ce" stands for "ci equal", a Chinese English :), means "phrase length +### equal to", thus ce2 -> phrase length equal to 2, and "ca" means +### "phrase length equal or above", so ca4 -> phrase length equal or above 4. +### p21 -> the 1st key of 2nd character in the phrase, and so on. +### Each rule is separated via ";". +### Example below is a complete rule-set, +### because [2,2] ∩ [3,3] ∩ [4,+∞] = [2,+∞], which is the range of length +### of phrase. This have to be satisfied if you need ibus-table to build up +### your own input phrase via your daily using. +###RULES = ce2:p11+p12+p21+p22;ce3:p11+p21+p22+p31;ca4:p11+p21+p31+p41 + +### The key strokes to commit the convert result to client. +COMMIT_KEYS = VoidSymbol + +### The key strokes to forward the inputted string to client. +FORWARD_KEYS = VoidSymbol + +### The key strokes to select candidated phrases. +SELECT_KEYS = VoidSymbol + +### The key strokes to page up the lookup table. +PAGE_UP_KEYS = VoidSymbol + +### The key strokes to page down the lookup table. +PAGE_DOWN_KEYS = VoidSymbol + +END_DEFINITION + +### Begin Table data. +### Format of every line whose formatted in "input_keys\tphrase\tfreq\n" is an +### entry. +### From left to right, the 1st column are the input key combination that you +### entered via keyboard; the 2nd column are presented character or phrase of +### the key combination you want; the 3rd column are frequency of the character +### or phrase. +BEGIN_TABLE +1 1 0 +2 2 0 +3 3 0 +4 4 0 +5 5 0 +6 6 0 +7 7 0 +8 8 0 +9 9 0 + +A A 0 +A\ A 0 +A1 Á 0 +A2 À 0 +A3 Ả 0 +A4 Ã 0 +A5 Ạ 0 + +A8 Ă 0 +A8\ Ă 0 +A81 Ắ 0 +A82 Ằ 0 +A83 Ẳ 0 +A84 Ẵ 0 +A85 Ặ 0 + +A6 Â 0 +A6\ Â 0 +A61 Ấ 0 +A62 Ầ 0 +A63 Ẩ 0 +A64 Ẫ 0 +A65 Ậ 0 + +D D 0 +D\ D 0 +D9 Đ 0 + +E E 0 +E\ E 0 +E1 É 0 +E2 È 0 +E3 Ẻ 0 +E4 Ẽ 0 +E5 Ẹ 0 + +E6 Ê 0 +E6\ Ê 0 +E61 Ế 0 +E62 Ề 0 +E63 Ể 0 +E64 Ễ 0 +E65 Ệ 0 + +I I 0 +I\ I 0 +I1 Í 0 +I2 Ì 0 +I3 Ỉ 0 +I4 Ĩ 0 +I5 Ị 0 + +O O 0 +O\ O 0 +O1 Ó 0 +O2 Ò 0 +O3 Ỏ 0 +O4 Õ 0 +O5 Ọ 0 + +O6 Ô 0 +O6\ Ô 0 +O61 Ố 0 +O62 Ồ 0 +O63 Ổ 0 +O64 Ỗ 0 +O65 Ộ 0 + +O7 Ơ 0 +O7\ Ơ 0 +O71 Ớ 0 +O72 Ờ 0 +O73 Ở 0 +O74 Ỡ 0 +O75 Ợ 0 + +U U 0 +U\ U 0 +U1 Ú 0 +U2 Ù 0 +U3 Ủ 0 +U4 Ũ 0 +U5 Ụ 0 + +U7 Ư 0 +U7\ Ư 0 +U71 Ứ 0 +U72 Ừ 0 +U73 Ử 0 +U74 Ữ 0 +U75 Ự 0 + +Y Y 0 +Y\ Y 0 +Y1 Ý 0 +Y2 Ỳ 0 +Y3 Ỷ 0 +Y4 Ỹ 0 +Y5 Ỵ 0 + +\ \ 0 + +a a 0 +a\ a 0 +a1 á 0 +a2 à 0 +a3 ả 0 +a4 ã 0 +a5 ạ 0 + +a8 ă 0 +a8\ ă 0 +a81 ắ 0 +a82 ằ 0 +a83 ẳ 0 +a84 ẵ 0 +a85 ặ 0 + +a6 â 0 +a6\ â 0 +a61 ấ 0 +a62 ầ 0 +a63 ẩ 0 +a64 ẫ 0 +a65 ậ 0 + +d d 0 +d\ d 0 +d9 đ 0 + +e e 0 +e\ e 0 +e1 é 0 +e2 è 0 +e3 ẻ 0 +e4 ẽ 0 +e5 ẹ 0 + +e6 ê 0 +e6\ ê 0 +e61 ế 0 +e62 ề 0 +e63 ể 0 +e64 ễ 0 +e65 ệ 0 + +i i 0 +i\ i 0 +i1 í 0 +i2 ì 0 +i3 ỉ 0 +i4 ĩ 0 +i5 ị 0 + +o o 0 +o\ o 0 +o1 ó 0 +o2 ò 0 +o3 ỏ 0 +o4 õ 0 +o5 ọ 0 + +o6 ô 0 +o6\ ô 0 +o61 ố 0 +o62 ồ 0 +o63 ổ 0 +o64 ỗ 0 +o65 ộ 0 + +o7 ơ 0 +o7\ ơ 0 +o71 ớ 0 +o72 ờ 0 +o73 ở 0 +o74 ỡ 0 +o75 ợ 0 + +u u 0 +u\ u 0 +u1 ú 0 +u2 ù 0 +u3 ủ 0 +u4 ũ 0 +u5 ụ 0 + +u7 ư 0 +u7\ ư 0 +u71 ứ 0 +u72 ừ 0 +u73 ử 0 +u74 ữ 0 +u75 ự 0 + +y y 0 +y\ y 0 +y1 ý 0 +y2 ỳ 0 +y3 ỷ 0 +y4 ỹ 0 +y5 ỵ 0 +END_TABLE