File tree Expand file tree Collapse file tree 4 files changed +27
-4
lines changed Expand file tree Collapse file tree 4 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 12
12
build :
13
13
runs-on : ubuntu-24.04
14
14
env :
15
- EMSCRIPTEN_VERSION : ' 4.0.12 '
15
+ EMSCRIPTEN_VERSION : ' 4.0.13 '
16
16
steps :
17
17
- uses : actions/checkout@v5
18
18
with :
25
25
path : fcitx5-mozc/mozc
26
26
ref : ${{ inputs.mozc_sha }}
27
27
28
+ - uses : actions/checkout@v5
29
+ with :
30
+ repository : emscripten-core/emsdk
31
+ path : emsdk
32
+
28
33
- uses : actions/setup-python@v5
29
34
with :
30
35
python-version : ' 3.13'
43
48
tar xjf fcitx5-js-dev.tar.bz2 -C build/js/usr
44
49
45
50
- name : Install emsdk
51
+ working-directory : emsdk
46
52
run : |
47
- git clone https://github.com/emscripten-core/emsdk
48
- cd emsdk
49
53
./emsdk install ${{ env.EMSCRIPTEN_VERSION }}
50
54
./emsdk activate ${{ env.EMSCRIPTEN_VERSION }}
51
55
54
58
. emsdk/emsdk_env.sh
55
59
git apply --directory=libime patches/libime.patch
56
60
git apply --directory=fcitx5-chinese-addons patches/chinese-addons.patch
57
- git apply --directory=fcitx5-rime patches/rime.patch
61
+ git apply --directory=fcitx5-rime patches/rime.log.patch
62
+ git apply --directory=fcitx5-rime patches/rime.js.patch
58
63
emcmake cmake -B build/js -G Ninja -DCMAKE_BUILD_TYPE=Release
59
64
cmake --build build/js
60
65
./scripts/install.sh js
Original file line number Diff line number Diff line change 66
66
GOARCH : ${{ matrix.goarch }}
67
67
run : |
68
68
git apply --directory=libime patches/libime.patch
69
+ git apply --directory=fcitx5-rime patches/rime.log.patch
69
70
cmake -B build/macos-${{ matrix.arch }} -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }}
70
71
cmake --build build/macos-${{ matrix.arch }}
71
72
./scripts/install.sh macos ${{ matrix.arch }}
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ diff --git a/src/rimeengine.cpp b/src/rimeengine.cpp
2
+ index cdaaa3d..eaef05a 100644
3
+ --- a/src/rimeengine.cpp
4
+ +++ b/src/rimeengine.cpp
5
+ @@ -275,9 +275,11 @@ void RimeEngine::rimeStart(bool fullcheck) {
6
+ break;
7
+ case Error:
8
+ case Warn:
9
+ - case Info:
10
+ fcitx_rime_traits.min_log_level = 2;
11
+ break;
12
+ + case Info:
13
+ + fcitx_rime_traits.min_log_level = 1;
14
+ + break;
15
+ case Debug:
16
+ default:
17
+ // Rime info is too noisy.
You can’t perform that action at this time.
0 commit comments