Skip to content

Commit e5779bb

Browse files
authored
Merge pull request #49 from qianmoQ/dev-25.0.3
2 parents 878b969 + ababdf3 commit e5779bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+681
-83
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ jobs:
3737
- name: Deploy
3838
uses: peaceiris/actions-gh-pages@v3
3939
with:
40-
github_token: ${{ secrets.GITHUB_TOKEN }}
40+
github_token: ${{ secrets.GH_TOKEN }}
4141
publish_dir: docs/dist

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ CodeForge 是一款轻量级、高性能的桌面代码执行器,专为开发
2828
- **C++**
2929
- **Go**
3030
- **Groovy**
31+
- **HTML**
3132
- **Java**
3233
- **JavaScript (Browser)**
3334
- **JavaScript (jQuery)**
@@ -51,6 +52,7 @@ CodeForge 是一款轻量级、高性能的桌面代码执行器,专为开发
5152
- Node.js 18+
5253
- Rust 1.8+
5354
- Tauri 2.x
55+
- Vue 3.x
5456

5557
**构建步骤:**
5658

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"@babel/runtime": "^7.28.2",
1414
"@codemirror/lang-cpp": "^6.0.3",
1515
"@codemirror/lang-go": "^6.0.1",
16+
"@codemirror/lang-html": "^6.4.9",
1617
"@codemirror/lang-java": "^6.0.2",
1718
"@codemirror/lang-javascript": "^6.2.4",
1819
"@codemirror/lang-python": "^6.2.1",
@@ -23,6 +24,7 @@
2324
"@codemirror/view": "^6.38.1",
2425
"@tauri-apps/api": "^2",
2526
"@tauri-apps/plugin-dialog": "^2.3.2",
27+
"@tauri-apps/plugin-fs": "^2.4.2",
2628
"@tauri-apps/plugin-opener": "^2",
2729
"@tauri-apps/plugin-shell": "^2.3.0",
2830
"@uiw/codemirror-themes-all": "^4.24.2",

public/icons/html.svg

Lines changed: 6 additions & 0 deletions
Loading

src-tauri/Cargo.lock

Lines changed: 64 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ tauri-build = { version = "2", features = [] }
1414
chrono = { version = "0.4.41", features = ["serde"] }
1515

1616
[dependencies]
17-
tauri = { version = "2", features = ["devtools"] }
17+
tauri = { version = "2", features = [ "devtools"] }
1818
tauri-plugin-opener = "2"
1919
tauri-plugin-shell = "2.0"
2020
tauri-plugin-dialog = "2.0"
21+
tauri-plugin-fs = "2.4.2"
2122
serde = { version = "1", features = ["derive"] }
2223
serde_json = "1"
2324
tokio = "1.47.1"

0 commit comments

Comments
 (0)