Skip to content

Commit

Permalink
chore(deps): update to tauri alpha.12 (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Sep 7, 2023
1 parent 70e535a commit 4e2cef9
Show file tree
Hide file tree
Showing 13 changed files with 117 additions and 124 deletions.
30 changes: 30 additions & 0 deletions .changes/tauri-alpha.12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
"app": patch
"authenticator": patch
"autostart": patch
"cli": patch
"clipboard-manager": patch
"dialog": patch
"fs": patch
"global-shortcut": patch
"http": patch
"localhost": patch
"log-plugin": patch
"notification": patch
"os": patch
"persisted-scope": patch
"positioner": patch
"process": patch
"shell": patch
"single-instance": patch
"sql": patch
"store": patch
"stronghold": patch
"updater": patch
"upload": patch
"websocket": patch
"window": patch
"window-state": patch
---

Update to alpha.12.
23 changes: 12 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
log = "0.4"
tauri = "2.0.0-alpha.11"
tauri = "2.0.0-alpha.12"
tauri-build = "2.0.0-alpha.8"
serde_json = "1"
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion examples/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@iconify-json/codicon": "^1.1.26",
"@iconify-json/ph": "^1.1.5",
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"@tauri-apps/cli": "2.0.0-alpha.11",
"@tauri-apps/cli": "2.0.0-alpha.12",
"@unocss/extractor-svelte": "^0.53.1",
"internal-ip": "^8.0.0",
"svelte": "^3.59.1",
Expand Down
2 changes: 1 addition & 1 deletion plugins/dialog/test/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "../../../node_modules/.pnpm/@[email protected].8/node_modules/@tauri-apps/cli/schema.json",
"$schema": "../../../node_modules/.pnpm/@[email protected].12/node_modules/@tauri-apps/cli/schema.json",
"build": {
"distDir": ".",
"devPath": "http://localhost:4000"
Expand Down
2 changes: 1 addition & 1 deletion plugins/fs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub fn init<R: Runtime>() -> TauriPlugin<R, Option<Config>> {
.on_event(|app, event| {
if let RunEvent::WindowEvent {
label: _,
event: WindowEvent::FileDrop(FileDropEvent::Dropped(paths)),
event: WindowEvent::FileDrop(FileDropEvent::Dropped { paths, position: _ }),
..
} = event
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/notification/test/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "../../../node_modules/.pnpm/@[email protected].8/node_modules/@tauri-apps/cli/schema.json",
"$schema": "../../../node_modules/.pnpm/@[email protected].12/node_modules/@tauri-apps/cli/schema.json",
"build": {
"distDir": ".",
"devPath": "http://localhost:4000"
Expand Down
2 changes: 1 addition & 1 deletion plugins/single-instance/examples/vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"author": "",
"license": "MIT",
"devDependencies": {
"@tauri-apps/cli": "2.0.0-alpha.11"
"@tauri-apps/cli": "2.0.0-alpha.12"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rust-version = "1.65"
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
tauri = { version = "2.0.0-alpha.8", features = ["api-all"] }
tauri = { version = "2.0.0-alpha.12", features = ["api-all"] }
tauri-plugin-single-instance = { path = "../../../" }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion plugins/updater/tests/app-updater/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "../../../../node_modules/.pnpm/@[email protected].8/node_modules/@tauri-apps/cli/schema.json",
"$schema": "../../../../node_modules/.pnpm/@[email protected].12/node_modules/@tauri-apps/cli/schema.json",
"build": {
"distDir": [],
"devPath": []
Expand Down
2 changes: 1 addition & 1 deletion plugins/websocket/examples/svelte-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/kit": "1.22.3",
"@tauri-apps/cli": "2.0.0-alpha.11",
"@tauri-apps/cli": "2.0.0-alpha.12",
"svelte": "4.0.5",
"svelte-check": "3.4.6",
"tslib": "2.6.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/websocket/examples/svelte-app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri = { version = "2.0.0-alpha.8", features = [] }
tauri = { version = "2.0.0-alpha.12", features = [] }
tokio = { version = "1", features = ["net"] }
futures-util = "0.3"
tauri-plugin-websocket = { path = "../../../" }
Expand Down
Loading

0 comments on commit 4e2cef9

Please sign in to comment.