-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from chewing/update-dependency
chore: update dependencies
- Loading branch information
Showing
9 changed files
with
41 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
branches: ["master"] | ||
merge_group: | ||
types: [checks_requested] | ||
|
||
env: | ||
RUST_VERSION: "1.70" | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
name: Smoke test - build only | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 | ||
|
||
- name: Setup rustup | ||
run: | | ||
rustup default ${{ env.RUST_VERSION }} | ||
rustup update | ||
- name: Build | ||
run: | | ||
cmake -B build | ||
cmake --build build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
[submodule "libchewing"] | ||
path = libchewing | ||
url = https://github.com/chewing/libchewing.git | ||
branch = 0.8.x | ||
[submodule "libIME"] | ||
path = libIME | ||
url = https://github.com/EasyIME/libIME.git | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
cmake_minimum_required(VERSION 2.8.8) | ||
|
||
project(ChewingPreferences) | ||
|
||
# http://www.utf8everywhere.org/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
cmake_minimum_required(VERSION 2.8.8) | ||
|
||
project(ChewingTextService) | ||
|
||
if(NOT DEFINED PROJECT_LIBCHEWING) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libIME
updated
21 files
+0 −2 | CMakeLists.txt | |
+0 −97 | CandidateListUIElement.cpp | |
+0 −46 | CandidateListUIElement.h | |
+136 −0 | CandidateWindow.cpp | |
+30 −2 | CandidateWindow.h | |
+33 −9 | ComPtr.h | |
+2 −2 | DisplayAttributeInfo.cpp | |
+3 −1 | DisplayAttributeInfo.h | |
+3 −3 | DisplayAttributeInfoEnum.cpp | |
+3 −1 | DisplayAttributeInfoEnum.h | |
+3 −3 | DisplayAttributeProvider.cpp | |
+3 −3 | DisplayAttributeProvider.h | |
+3 −3 | EditSession.cpp | |
+3 −1 | EditSession.h | |
+202 −10 | ImeModule.cpp | |
+6 −3 | ImeModule.h | |
+22 −23 | LangBarButton.cpp | |
+5 −2 | LangBarButton.h | |
+1 −1 | PropertyDialog.cpp | |
+36 −29 | TextService.cpp | |
+8 −6 | TextService.h |
Submodule libchewing
updated
232 files