Skip to content

Commit 4e2cef9

Browse files
authored
chore(deps): update to tauri alpha.12 (#593)
1 parent 70e535a commit 4e2cef9

File tree

13 files changed

+117
-124
lines changed

13 files changed

+117
-124
lines changed

.changes/tauri-alpha.12.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
"app": patch
3+
"authenticator": patch
4+
"autostart": patch
5+
"cli": patch
6+
"clipboard-manager": patch
7+
"dialog": patch
8+
"fs": patch
9+
"global-shortcut": patch
10+
"http": patch
11+
"localhost": patch
12+
"log-plugin": patch
13+
"notification": patch
14+
"os": patch
15+
"persisted-scope": patch
16+
"positioner": patch
17+
"process": patch
18+
"shell": patch
19+
"single-instance": patch
20+
"sql": patch
21+
"store": patch
22+
"stronghold": patch
23+
"updater": patch
24+
"upload": patch
25+
"websocket": patch
26+
"window": patch
27+
"window-state": patch
28+
---
29+
30+
Update to alpha.12.

Cargo.lock

+12-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55
[workspace.dependencies]
66
serde = { version = "1", features = ["derive"] }
77
log = "0.4"
8-
tauri = "2.0.0-alpha.11"
8+
tauri = "2.0.0-alpha.12"
99
tauri-build = "2.0.0-alpha.8"
1010
serde_json = "1"
1111
thiserror = "1"

examples/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@iconify-json/codicon": "^1.1.26",
3030
"@iconify-json/ph": "^1.1.5",
3131
"@sveltejs/vite-plugin-svelte": "^2.4.1",
32-
"@tauri-apps/cli": "2.0.0-alpha.11",
32+
"@tauri-apps/cli": "2.0.0-alpha.12",
3333
"@unocss/extractor-svelte": "^0.53.1",
3434
"internal-ip": "^8.0.0",
3535
"svelte": "^3.59.1",

plugins/dialog/test/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "../../../node_modules/.pnpm/@[email protected].8/node_modules/@tauri-apps/cli/schema.json",
2+
"$schema": "../../../node_modules/.pnpm/@[email protected].12/node_modules/@tauri-apps/cli/schema.json",
33
"build": {
44
"distDir": ".",
55
"devPath": "http://localhost:4000"

plugins/fs/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub fn init<R: Runtime>() -> TauriPlugin<R, Option<Config>> {
8383
.on_event(|app, event| {
8484
if let RunEvent::WindowEvent {
8585
label: _,
86-
event: WindowEvent::FileDrop(FileDropEvent::Dropped(paths)),
86+
event: WindowEvent::FileDrop(FileDropEvent::Dropped { paths, position: _ }),
8787
..
8888
} = event
8989
{

plugins/notification/test/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "../../../node_modules/.pnpm/@[email protected].8/node_modules/@tauri-apps/cli/schema.json",
2+
"$schema": "../../../node_modules/.pnpm/@[email protected].12/node_modules/@tauri-apps/cli/schema.json",
33
"build": {
44
"distDir": ".",
55
"devPath": "http://localhost:4000"

plugins/single-instance/examples/vanilla/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"author": "",
1010
"license": "MIT",
1111
"devDependencies": {
12-
"@tauri-apps/cli": "2.0.0-alpha.11"
12+
"@tauri-apps/cli": "2.0.0-alpha.12"
1313
}
1414
}

plugins/single-instance/examples/vanilla/src-tauri/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rust-version = "1.65"
1212
[dependencies]
1313
serde_json = "1.0"
1414
serde = { version = "1.0", features = [ "derive" ] }
15-
tauri = { version = "2.0.0-alpha.8", features = ["api-all"] }
15+
tauri = { version = "2.0.0-alpha.12", features = ["api-all"] }
1616
tauri-plugin-single-instance = { path = "../../../" }
1717

1818
[build-dependencies]

plugins/updater/tests/app-updater/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "../../../../node_modules/.pnpm/@[email protected].8/node_modules/@tauri-apps/cli/schema.json",
2+
"$schema": "../../../../node_modules/.pnpm/@[email protected].12/node_modules/@tauri-apps/cli/schema.json",
33
"build": {
44
"distDir": [],
55
"devPath": []

plugins/websocket/examples/svelte-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@sveltejs/adapter-auto": "2.1.0",
1515
"@sveltejs/kit": "1.22.3",
16-
"@tauri-apps/cli": "2.0.0-alpha.11",
16+
"@tauri-apps/cli": "2.0.0-alpha.12",
1717
"svelte": "4.0.5",
1818
"svelte-check": "3.4.6",
1919
"tslib": "2.6.0",

plugins/websocket/examples/svelte-app/src-tauri/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
[dependencies]
1010
serde = { version = "1", features = ["derive"] }
1111
serde_json = "1"
12-
tauri = { version = "2.0.0-alpha.8", features = [] }
12+
tauri = { version = "2.0.0-alpha.12", features = [] }
1313
tokio = { version = "1", features = ["net"] }
1414
futures-util = "0.3"
1515
tauri-plugin-websocket = { path = "../../../" }

0 commit comments

Comments
 (0)