Skip to content

Commit

Permalink
drop libime patch
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj committed Dec 22, 2024
1 parent a74139a commit 4aa7b8b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 47 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
run: |
git apply --directory=fcitx5 patches/fcitx5.patch
git apply --directory=engines/libime/src/libime/core/kenlm patches/kenlm.patch
git apply --directory=engines/libime patches/libime.patch
git apply --directory=engines/fcitx5-rime patches/rime.patch
cmake -B build -G Xcode \
-DURL_SCHEME=fcitx \
Expand Down
2 changes: 1 addition & 1 deletion fcitx5
Submodule fcitx5 updated 39 files
+109 −88 po/ca.po
+109 −88 po/da.po
+109 −88 po/de.po
+109 −88 po/es.po
+109 −88 po/fcitx5.pot
+109 −88 po/fr.po
+109 −88 po/he.po
+114 −88 po/ja.po
+111 −90 po/ko.po
+108 −78 po/ru.po
+109 −88 po/vi.po
+109 −88 po/zh_CN.po
+99 −78 po/zh_TW.po
+5 −0 src/frontend/waylandim/appmonitor.cpp
+3 −0 src/frontend/waylandim/appmonitor.h
+7 −0 src/frontend/waylandim/plasmaappmonitor.cpp
+2 −0 src/frontend/waylandim/plasmaappmonitor.h
+7 −0 src/frontend/waylandim/virtualinputcontext.cpp
+5 −1 src/frontend/waylandim/virtualinputcontext.h
+13 −2 src/frontend/waylandim/waylandim.cpp
+30 −7 src/frontend/waylandim/waylandim.h
+1 −2 src/frontend/waylandim/waylandim_public.h
+24 −0 src/frontend/waylandim/waylandimserver.cpp
+12 −2 src/frontend/waylandim/waylandimserver.h
+9 −1 src/frontend/waylandim/waylandimserverbase.cpp
+6 −0 src/frontend/waylandim/waylandimserverbase.h
+49 −13 src/frontend/waylandim/waylandimserverv2.cpp
+17 −3 src/frontend/waylandim/waylandimserverv2.h
+9 −1 src/frontend/waylandim/wlrappmonitor.cpp
+6 −2 src/frontend/waylandim/wlrappmonitor.h
+31 −1 src/lib/fcitx/globalconfig.cpp
+26 −0 src/lib/fcitx/globalconfig.h
+12 −1 src/lib/fcitx/instance.cpp
+1 −0 src/lib/fcitx/instance_p.h
+0 −1 src/ui/classic/themes/default-dark/theme-dark.conf.in
+0 −1 src/ui/classic/themes/default/theme.conf.in
+3 −3 src/ui/classic/xcbinputwindow.cpp
+1 −0 test/CMakeLists.txt
+100 −26 test/testinstance.cpp
39 changes: 0 additions & 39 deletions patches/libime.patch

This file was deleted.

13 changes: 9 additions & 4 deletions scripts/check-validity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@ set -e

has_dl=0

executable=build/src/Release-iphonesimulator/Fcitx5.app/PlugIns/keyboard.appex/keyboard
executables=(
build/src/Release-iphonesimulator/Fcitx5.app/Fcitx5
build/src/Release-iphonesimulator/Fcitx5.app/PlugIns/keyboard.appex/keyboard
)

if nm $executable | grep dlopen; then
has_dl=1
fi
for executable in "${executables[@]}"; do
if nm $executable | grep dlopen; then
has_dl=1
fi
done

exit $has_dl

0 comments on commit 4aa7b8b

Please sign in to comment.