Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Introduces input macros #97

Merged
merged 8 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
apt install -y clang
apt install -y cmake extra-cmake-modules gettext libfmt-dev
apt install -y fcitx5 libfcitx5core-dev libfcitx5config-dev libfcitx5utils-dev
apt install -y libicu-dev
- name: Build
run: |
mkdir -p build
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ sudo apt install \
cmake extra-cmake-modules gettext libfmt-dev
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: should we just add libicu-dev here? Since we are already telling people they need to install those -dev packages here…

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated at 84b0dc5

```

在某些版本上可能需要另外安装 [ICU](https://icu.unicode.org/)。

```bash
apt install -y libicu-dev
```

然後在本專案的 git 目錄下執行以下指令:

```bash
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ rm -rf build
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug # use Debug for easy debugging with gdb
make # or ninja, depending on your system
sudo make install # or sudo ninja install
make # or ninja, depending on your system
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: to use ninja we need to add -G Ninja in cmake command. @lukhnos would you like to create a small PR for this?

#96

sudo make install # or sudo ninja install
5 changes: 5 additions & 0 deletions data/data-plain-bpmf.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1525,6 +1525,7 @@ _punctuation_~ ~ 0.0
ㄆㄧㄥˊ 荓 0.0
ㄆㄧㄥˊ 蓱 0.0
ㄆㄧㄥˊ 炾 0.0
ㄆㄧㄥˋ 聘 0.0
ㄆㄨ 撲 0.0
ㄆㄨ 仆 0.0
ㄆㄨ 鋪 0.0
Expand Down Expand Up @@ -5006,6 +5007,7 @@ _punctuation_~ ~ 0.0
ㄌㄨㄢˊ 曫 0.0
ㄌㄨㄢˊ 羉 0.0
ㄌㄨㄢˊ 癵 0.0
ㄌㄨㄢˊ 孿 0.0
ㄌㄨㄢˋ 亂 0.0
ㄌㄨㄢˋ 薍 0.0
ㄌㄨㄣ 掄 0.0
Expand Down Expand Up @@ -9055,6 +9057,7 @@ _punctuation_~ ~ 0.0
ㄒㄧㄡˋ 殠 0.0
ㄒㄧㄡˋ 褎 0.0
ㄒㄧㄡˋ 螑 0.0
ㄒㄧㄡˋ 綉 0.0
ㄒㄧㄢ 先 0.0
ㄒㄧㄢ 仙 0.0
ㄒㄧㄢ 掀 0.0
Expand Down Expand Up @@ -11336,6 +11339,7 @@ _punctuation_~ ~ 0.0
ㄕㄤ 傷 0.0
ㄕㄤ 殤 0.0
ㄕㄤ 觴 0.0
ㄕㄤ 熵 0.0
ㄕㄤ 湯 0.0
ㄕㄤ 漡 0.0
ㄕㄤ 蔏 0.0
Expand Down Expand Up @@ -13539,6 +13543,7 @@ _punctuation_~ ~ 0.0
ㄧㄡˋ 扰 0.0
ㄧㄡˋ 牰 0.0
ㄧㄡˋ 迶 0.0
ㄧㄡˋ 鈾 0.0
ㄧㄢ 煙 0.0
ㄧㄢ 焉 0.0
ㄧㄢ 淹 0.0
Expand Down
Loading