-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #5 现在不再允许部分 Web 快捷键 修复 CompCard 默认展开模式下第一次收起动画缺失的问题 改进 CI 逻辑,分离了开发 CI 和发版 CI
- Loading branch information
1 parent
03708ae
commit 1c6c53c
Showing
10 changed files
with
150 additions
and
93 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,46 @@ | ||
name: 'Build App for Development' | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
- beta | ||
- release | ||
|
||
jobs: | ||
build-app: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
|
||
- name: install Rust Nightly | ||
uses: dtolnay/rust-toolchain@nightly | ||
|
||
- name: install frontend dependencies | ||
run: | | ||
npm install -g pnpm | ||
pnpm install | ||
- name: build | ||
run: pnpm tauri build | ||
|
||
- name: upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows Embedded App | ||
path: src-tauri/target/release/Plain_Craft_Launcher_2_Nova.exe | ||
if-no-files-found: error | ||
retention-days: 7 | ||
|
||
- name: upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows Bundled Installer | ||
path: src-tauri/target/release/bundle/ | ||
if-no-files-found: error | ||
retention-days: 7 |
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,33 +1,33 @@ | ||
{ | ||
"name": "pcl2-nova-app", | ||
"private": true, | ||
"version": "0.1.1", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vue-tsc --noEmit && vite build", | ||
"preview": "vite preview", | ||
"tauri": "tauri" | ||
}, | ||
"dependencies": { | ||
"@tauri-apps/api": "^2", | ||
"@tauri-apps/plugin-opener": "^2", | ||
"vue": "^3.5.13" | ||
}, | ||
"devDependencies": { | ||
"@tailwindcss/postcss": "^4.0.0", | ||
"@tailwindcss/vite": "^4.0.0", | ||
"@tauri-apps/cli": "^2", | ||
"@vitejs/plugin-vue": "^5.2.1", | ||
"autoprefixer": "^10.4.20", | ||
"daisyui": "5.0.0-beta.2", | ||
"postcss": "^8.4.49", | ||
"sass": "^1.83.4", | ||
"sass-loader": "^16.0.4", | ||
"tailwindcss": "^4.0.0", | ||
"typescript": "~5.6.2", | ||
"vite": "^6.0.11", | ||
"vue-router": "^4.5.0", | ||
"vue-tsc": "^2.1.10" | ||
} | ||
"name": "pcl2-nova-app", | ||
"private": true, | ||
"version": "0.1.1", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vue-tsc --noEmit && vite build", | ||
"preview": "vite preview", | ||
"tauri": "tauri" | ||
}, | ||
"dependencies": { | ||
"@tauri-apps/api": "^2", | ||
"@tauri-apps/plugin-opener": "^2", | ||
"vue": "^3.5.13" | ||
}, | ||
"devDependencies": { | ||
"@tailwindcss/postcss": "^4.0.0", | ||
"@tailwindcss/vite": "^4.0.0", | ||
"@tauri-apps/cli": "^2", | ||
"@vitejs/plugin-vue": "^5.2.1", | ||
"autoprefixer": "^10.4.20", | ||
"daisyui": "5.0.0-beta.2", | ||
"postcss": "^8.4.49", | ||
"sass": "^1.83.4", | ||
"sass-loader": "^16.0.4", | ||
"tailwindcss": "^4.0.0", | ||
"typescript": "~5.6.2", | ||
"vite": "^6.0.11", | ||
"vue-router": "^4.5.0", | ||
"vue-tsc": "^2.1.10" | ||
} | ||
} |
File renamed without changes
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
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,4 @@ | ||
{ | ||
"version": "0.1.2", | ||
"channel": "Stable" | ||
} |
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
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