Skip to content

Commit

Permalink
upgrade to tauri version 1.3
Browse files Browse the repository at this point in the history
Implemented upgrade to Tauri version 1.3, eliminating the need for utilizing the "feat/remote-ipc" branch. Instead, we can now leverage the newly introduced "dangerousRemoteDomainIpcAccess" option in the "tauri.conf.json" file, which was introduced in version 1.3.0. For further details, please refer to the relevant pull request at the following link: tauri-apps/tauri#5918.

While this feature has undergone testing and is confirmed to be functional, it is imperative to conduct further testing to ensure its reliability. If any issues are encountered during usage, kindly report them for further investigation and resolution. Your feedback is greatly appreciated.
  • Loading branch information
1zun4 committed Jun 3, 2023
1 parent 818ba24 commit c62a49b
Show file tree
Hide file tree
Showing 8 changed files with 1,148 additions and 655 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,10 @@ jobs:
with:
path: ./src-tauri/target
key: ${{ runner.os }}-tauri-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Cache tauri CLI build
uses: actions/cache@v3
with:
path: ./tauri/tooling/cli/target
key: ${{ runner.os }}-tauri-cli-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: build tauri-cli
run: |
cd tauri/tooling/cli/node
yarn
yarn build

- name: install app dependencies and build it
run: yarn && yarn build

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 0 additions & 4 deletions .gitmodules

This file was deleted.

176 changes: 88 additions & 88 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "node tauri/tooling/cli/node/tauri.js"
"tauri": "tauri"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.1.0",
"@tauri-apps/cli": "^1.2.2",
"@tauri-apps/cli": "^1.3.1",
"svelte": "^3.52.0",
"vite": "^3.2.3"
},
"dependencies": {
"@tauri-apps/api": "^1.2.0",
"@tauri-apps/api": "^1.3.0",
"nouislider": "^15.6.1"
}
}
Loading

0 comments on commit c62a49b

Please sign in to comment.