Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: macos-26
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install dependencies
run: brew install clang-format swift-format
Expand All @@ -34,7 +34,7 @@ jobs:
custom_phrase.txt

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: artifact.zip
path: |
Expand All @@ -54,11 +54,11 @@ jobs:
- { platform: OS64 }

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive
repository: google/mozc
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Download artifact
if: ${{ matrix.platform == 'OS64' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true

Expand All @@ -122,7 +122,7 @@ jobs:

- name: Upload artifact
if: ${{ github.ref != 'refs/heads/master' && matrix.platform == 'OS64' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Fcitx5.ipa
path: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/compare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ jobs:
steps:
- name: Install bsdtar
run: |
sudo rm /var/lib/man-db/auto-update
sudo apt update && sudo apt install -y libarchive-tools
sudo ln -sf /usr/bin/bsdtar /usr/bin/tar

- name: Download release
run: wget -O release.ipa https://github.com/fcitx-contrib/fcitx5-ios/releases/download/latest/Fcitx5.ipa

- name: Download artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true

Expand Down
1 change: 0 additions & 1 deletion CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* [fmt](https://github.com/fmtlib/fmt): MIT
* [glog](https://github.com/google/glog): BSD-3-Clause
* [json](https://github.com/nlohmann/json): MIT
* [json-c](https://github.com/json-c/json-c): MIT
* [leveldb](https://github.com/google/leveldb): BSD-3-Clause
* [libintl](https://github.com/j-jorge/libintl-lite): BSL-1.0
* [libuv](https://github.com/libuv/libuv): MIT
Expand Down
2 changes: 1 addition & 1 deletion engines/fcitx5-rime
2 changes: 1 addition & 1 deletion fcitx5
Submodule fcitx5 updated 45 files
+1 −1 .github/workflows/check.yml
+3 −3 CMakeLists.txt
+2 −0 data/org.fcitx.Fcitx5.metainfo.xml.in
+29 −29 po/ca.po
+29 −29 po/da.po
+29 −29 po/de.po
+32 −29 po/es.po
+29 −29 po/fcitx5.pot
+40 −30 po/fr.po
+29 −29 po/he.po
+29 −29 po/ja.po
+29 −29 po/ko.po
+29 −29 po/ru.po
+76 −48 po/vi.po
+29 −29 po/zh_CN.po
+29 −29 po/zh_TW.po
+18 −5 src/frontend/dbusfrontend/dbusfrontend.cpp
+1 −1 src/im/keyboard/CMakeLists.txt
+32 −35 src/im/keyboard/isocodes.cpp
+1 −1 src/lib/fcitx-utils/dbus/servicewatcher.cpp
+8 −7 src/lib/fcitx-utils/gen-hotkey.sh
+953 −599 src/lib/fcitx-utils/keylist
+4,213 −3,185 src/lib/fcitx-utils/keynametable.h
+778 −423 src/lib/fcitx-utils/keysymgen.h
+5 −1 src/lib/fcitx-utils/standardpaths_p.h
+10 −5 src/lib/fcitx-utils/update-keydata.py
+1 −0 src/lib/fcitx-wayland/CMakeLists.txt
+20 −0 src/lib/fcitx-wayland/ext-data-control/CMakeLists.txt
+69 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_device_v1.cpp
+48 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_device_v1.h
+26 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_manager_v1.cpp
+40 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_manager_v1.h
+30 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_offer_v1.cpp
+38 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_offer_v1.h
+37 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_source_v1.cpp
+41 −0 src/lib/fcitx-wayland/ext-data-control/ext_data_control_source_v1.h
+6 −13 src/lib/fcitx/instance.cpp
+14 −4 src/lib/fcitx/misc_p.h
+5 −1 src/modules/clipboard/CMakeLists.txt
+103 −38 src/modules/clipboard/waylandclipboard.cpp
+72 −17 src/modules/clipboard/waylandclipboard.h
+2 −2 src/modules/notificationitem/dbusmenu.cpp
+1 −1 src/ui/classic/xcbtraywindow.cpp
+1 −1 test/CMakeLists.txt
+2 −0 test/testkey.cpp
1 change: 0 additions & 1 deletion scripts/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ deps=(
fmt
glog
json
json-c
leveldb
libintl
libmozc
Expand Down