Compare commits

...

37 Commits

Author SHA1 Message Date
a396dcbbc5 Merge pull request #96 from TheWanderingCitizen/main
3.24.3 LIVE 9423704 main
2024-11-22 20:17:48 +08:00
029d15fd30 3.24.3 LIVE 9423704 2024-11-22 12:12:10 +00:00
2df096a307 Merge pull request #91 from TheWanderingCitizen/main
3.24.3 LIVE 9423704
2024-11-22 12:28:50 +08:00
fe4bb05806 Merge pull request #2 from StarCitizenToolBox/main
fork sync
2024-11-22 12:22:12 +08:00
ce0d4d2dd5 Merge pull request #88 from TheWanderingCitizen/main
3.24.3 PTU 9421824
2024-11-22 11:31:02 +08:00
2c2b159a67 3.24.3 PTU 9421824 2024-11-22 03:27:49 +00:00
17c467840f Merge pull request #83 from TheWanderingCitizen/main
3.24.3 PTU 9421824
2024-11-20 22:13:36 +08:00
a0e4c77d27 3.24.3 PTU 9421824 2024-11-20 14:08:18 +00:00
e4b1e41830 Merge pull request #81 from TheWanderingCitizen/main
3.24.3 PTU 9421824
2024-11-19 20:58:54 +08:00
b27075b4fa 3.24.3 PTU 9421824 2024-11-19 12:56:20 +00:00
db2b7d320d Feat: PR Check (#80) 2024-11-19 20:53:57 +08:00
ddfe0b37b1 4.0 EPTU 9418963 2024-11-17 01:36:46 +08:00
c04bef44d7 Merge pull request #78 from TheWanderingCitizen/main
3.24.3 PTU 9419143
2024-11-17 00:33:44 +08:00
4c6657a329 3.24.3 PTU 9419143 2024-11-16 13:32:48 +00:00
9432bc3abe Merge pull request #76 from TheWanderingCitizen/main
3.24.3 PTU 9417366
2024-11-14 11:45:07 +08:00
ed66dc4cdc 3.24.3 PTU 9417366 2024-11-14 03:37:53 +00:00
dbe001a8d4 Merge pull request #75 from TheWanderingCitizen/main
3.24.3 PTU 9410828
2024-11-13 16:09:29 +08:00
44af321907 3.24.3 PTU 9410828 2024-11-13 08:08:31 +00:00
5b96a324b3 Merge pull request #74 from TheWanderingCitizen/main
3.24.3 PTU 9410828
2024-11-13 15:56:54 +08:00
7860357215 3.24.2 Live 9403294 2024-11-13 07:43:32 +00:00
7d8d7b6f2f 3.24.3 PTU 9410828 2024-11-13 06:59:50 +00:00
afb7645754 Merge pull request #72 from TheWanderingCitizen/main
3.24.3 PTU 9410828
2024-11-12 12:49:29 +08:00
a2d663f01d 3.24.3 PTU 9410828 2024-11-12 04:47:53 +00:00
56819df928 Merge pull request #71 from TheWanderingCitizen/main
3.24.3 PTU 9410828
2024-11-11 09:23:58 +08:00
3e6a86cdd3 3.24.3 PTU 9410828 2024-11-11 00:08:15 +00:00
5a811d5bac Merge pull request #69 from TheWanderingCitizen/main
3.24.3 PTU 9395201
2024-11-06 21:41:33 +08:00
71fb3d0647 3.24.3 PTU 9395201 2024-11-06 13:35:41 +00:00
2df24ee88c Update the chinese input 2024-11-02 13:18:47 +08:00
be8e6dce8e Add files via upload 2024-10-30 13:41:08 +08:00
639cada2dd fix:bug fix 2024-10-18 18:32:27 +08:00
66aca819da Update:to 3.24.2 PU 2024-10-18 10:29:35 +08:00
3e6feabcba Update 2024-10-15 13:54:59 +08:00
4a08fc7304 Update:fix bug 2024-10-14 18:43:31 +08:00
da1499edf5 Update for 3.24.2 2024-10-13 23:37:30 +08:00
15ea1f1553 fix bug for 3.24.2 2024-10-05 20:49:18 +08:00
222fda42cf Update 3.24.1 V3 2024-09-26 18:22:48 +08:00
5f8a98e159 Update to 3.24.1 v2 2024-09-25 12:46:01 +08:00
2 changed files with 31083 additions and 29990 deletions

34
.github/workflows/pr_check.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: PR Check
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- '**'
workflow_dispatch:
jobs:
run-rust:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check runner_tools
uses: actions/checkout@v4
with:
repository: StarCitizenToolBox/runner_tools
path: runner_tools
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
workspaces: "rust"
cache-all-crates: true
- name: PR Check
run: cargo run --manifest-path ./runner_tools/localization/Cargo.toml pr_check --release

File diff suppressed because one or more lines are too long