Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [macos-latest, ubuntu-24.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 24
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-24.04'
run: |
sudo apt-get update
sudo apt-get install -y libasound2-dev libudev-dev pkg-config libwebkit2gtk-4.0-dev build-essential libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libasound2-dev libudev-dev pkg-config libwebkit2gtk-4.1-dev build-essential libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf
- name: install pnpm
run: npm install -g pnpm@8.6.0
run: npm install -g pnpm@8.15.9
- name: install frontend dependencies
run: pnpm install

Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
tagName: __VERSION__
releaseName: __VERSION__
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '24'

- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: latest
version: 8.15.9
run_install: false

- name: Get pnpm store directory
Expand Down
17 changes: 12 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,23 @@
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.5.3",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "~2",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-notification": "~2",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "~2",
"@tauri-apps/plugin-store": "~2",
"@tauri-apps/plugin-updater": "~2",
"@vueuse/core": "^10.7.2",
"dayjs": "^1.11.10",
"klona": "^2.0.6",
"overlayscrollbars": "^2.5.0",
"overlayscrollbars-vue": "^0.5.7",
"p-all": "^5.0.0",
"redaxios": "^0.5.1",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
"vue": "^3.4.15",
"vue-selectable-items": "^1.0.1",
"wowerlay": "1.1.0"
Expand All @@ -34,8 +41,8 @@
"@iconify-json/octicon": "^1.1.52",
"@iconify-json/ph": "^1.1.11",
"@kadiryazici/eslint-config": "^1.0.3",
"@tauri-apps/cli": "^1.5.3",
"@types/node": "^20.11.16",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^24.0.0",
"@vitejs/plugin-vue": "5.0.3",
"@vue/devtools": "^7.0.15",
"async-mutex": "^0.4.1",
Expand Down
Loading