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
10 changes: 5 additions & 5 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin/
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.9.2
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.10.0
restore-keys: |
${{ runner.os }}-cargo-bin-tauri-cli-
${{ runner.os }}-cargo-bin-
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
cargo install tauri-cli --version "2.9.2" --locked
cargo install tauri-cli --version "2.10.0" --locked
else
echo "Tauri CLI already installed"
fi
Expand All @@ -120,10 +120,10 @@ jobs:
echo "password=$ANDROID_KEY_PASSWORD" >> keystore.properties
echo "storeFile=$RUNNER_TEMP/keystore.jks" >> keystore.properties

- name: Generate tauri.properties (Workaround for Tauri 2.9.x bug)
- name: Generate tauri.properties (Workaround for Tauri bug #14413)
run: |
# Workaround for Tauri 2.9.x not generating tauri.properties correctly
# See: https://github.com/tauri-apps/tauri/issues/YOUR_ISSUE_NUMBER
# Workaround for Tauri not generating tauri.properties correctly in CI
# See: https://github.com/tauri-apps/tauri/issues/14413 (still open as of 2.10.x)
VERSION=$(jq -r '.version' frontend/src-tauri/tauri.conf.json)
VERSION_CODE=$(jq -r '.bundle.android.versionCode' frontend/src-tauri/tauri.conf.json)

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin/
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.9.2
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.10.0
restore-keys: |
${{ runner.os }}-cargo-bin-tauri-cli-
${{ runner.os }}-cargo-bin-
Expand All @@ -121,7 +121,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
CARGO_CFG_TARGET_OS=linux cargo install tauri-cli --version "2.9.2" --locked
CARGO_CFG_TARGET_OS=linux cargo install tauri-cli --version "2.10.0" --locked
else
echo "Tauri CLI already installed"
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin/
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.9.2
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.10.0
restore-keys: |
${{ runner.os }}-cargo-bin-tauri-cli-
${{ runner.os }}-cargo-bin-
Expand All @@ -174,7 +174,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
cargo install tauri-cli --version "2.9.2" --locked
cargo install tauri-cli --version "2.10.0" --locked
else
echo "Tauri CLI already installed"
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mobile-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin/
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.9.2
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.10.0
restore-keys: |
${{ runner.os }}-cargo-bin-tauri-cli-
${{ runner.os }}-cargo-bin-
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
cargo install tauri-cli --version "2.9.2" --locked
cargo install tauri-cli --version "2.10.0" --locked
else
echo "Tauri CLI already installed"
fi
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin/
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.9.2
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.10.0
restore-keys: |
${{ runner.os }}-cargo-bin-tauri-cli-
${{ runner.os }}-cargo-bin-
Expand All @@ -224,7 +224,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
cargo install tauri-cli --version "2.9.2" --locked
cargo install tauri-cli --version "2.10.0" --locked
else
echo "Tauri CLI already installed"
fi
Expand All @@ -243,10 +243,10 @@ jobs:
echo "password=$ANDROID_KEY_PASSWORD" >> keystore.properties
echo "storeFile=$RUNNER_TEMP/keystore.jks" >> keystore.properties

- name: Generate tauri.properties (Workaround for Tauri 2.9.x bug)
- name: Generate tauri.properties (Workaround for Tauri bug #14413)
run: |
# Workaround for Tauri 2.9.x not generating tauri.properties correctly
# See: https://github.com/tauri-apps/tauri/issues/YOUR_ISSUE_NUMBER
# Workaround for Tauri not generating tauri.properties correctly in CI
# See: https://github.com/tauri-apps/tauri/issues/14413 (still open as of 2.10.x)
VERSION=$(jq -r '.version' frontend/src-tauri/tauri.conf.json)
VERSION_CODE=$(jq -r '.bundle.android.versionCode' frontend/src-tauri/tauri.conf.json)

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testflight-on-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin/
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.9.2
key: ${{ runner.os }}-cargo-bin-tauri-cli-2.10.0
restore-keys: |
${{ runner.os }}-cargo-bin-tauri-cli-
${{ runner.os }}-cargo-bin-
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
cargo install tauri-cli --version "2.9.2" --locked
cargo install tauri-cli --version "2.10.0" --locked
else
echo "Tauri CLI already installed"
fi
Expand Down
48 changes: 25 additions & 23 deletions frontend/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-router": "^1.50.1",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-os": "^2.3.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
Expand Down Expand Up @@ -67,7 +67,7 @@
"@noble/hashes": "^1.5.0",
"@tanstack/router-devtools": "^1.50.1",
"@tanstack/router-plugin": "^1.49.3",
"@tauri-apps/cli": "^2.9.2",
"@tauri-apps/cli": "^2.10.0",
"@types/bun": "latest",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
Expand Down
Loading
Loading