Skip to content

Commit 5056198

Browse files
committed
Merge branch 'v2' into feature/fallback_targets
2 parents 5eae160 + 7340242 commit 5056198

File tree

45 files changed

+1398
-846
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1398
-846
lines changed

.changes/barcode-gs1.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/window-state-optional-flags.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

Cargo.lock

Lines changed: 21 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ schemars = "0.8"
2323
dunce = "1"
2424
specta = "^2.0.0-rc.16"
2525
glob = "0.3"
26-
zbus = "5"
26+
zbus = "5.9"
2727

2828
[workspace.package]
2929
edition = "2021"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This repo and all plugins require a Rust version of at least **1.77.2**
3333
| [store](plugins/store) | Persistent key value storage. ||||||
3434
| [stronghold](plugins/stronghold) | Encrypted, secure database. |||| ? | ? |
3535
| [updater](plugins/updater) | In-app updates for Tauri applications. ||||||
36-
| [upload](plugins/upload) | Tauri plugin for file uploads through HTTP. |||| ? | ? |
36+
| [upload](plugins/upload) | Tauri plugin for file uploads through HTTP. |||| | |
3737
| [websocket](plugins/websocket) | Open a WebSocket connection using a Rust client in JS. |||| ? | ? |
3838
| [window-state](plugins/window-state) | Persist window sizes and positions. ||||||
3939

examples/api/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## \[2.0.27]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[2.0.26]
413

514
### Dependencies

examples/api/package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.26",
4+
"version": "2.0.27",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -10,17 +10,17 @@
1010
"tauri": "tauri"
1111
},
1212
"dependencies": {
13-
"@tauri-apps/api": "2.6.0",
14-
"@tauri-apps/plugin-barcode-scanner": "^2.3.0",
13+
"@tauri-apps/api": "2.7.0",
14+
"@tauri-apps/plugin-barcode-scanner": "^2.4.0",
1515
"@tauri-apps/plugin-biometric": "^2.3.0",
1616
"@tauri-apps/plugin-cli": "^2.4.0",
1717
"@tauri-apps/plugin-clipboard-manager": "^2.3.0",
18-
"@tauri-apps/plugin-dialog": "^2.3.0",
19-
"@tauri-apps/plugin-fs": "^2.4.0",
18+
"@tauri-apps/plugin-dialog": "^2.3.1",
19+
"@tauri-apps/plugin-fs": "^2.4.1",
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
2222
"@tauri-apps/plugin-haptics": "^2.2.0",
23-
"@tauri-apps/plugin-http": "^2.5.0",
23+
"@tauri-apps/plugin-http": "^2.5.1",
2424
"@tauri-apps/plugin-nfc": "^2.3.0",
2525
"@tauri-apps/plugin-notification": "^2.3.0",
2626
"@tauri-apps/plugin-opener": "^2.4.0",
@@ -29,16 +29,17 @@
2929
"@tauri-apps/plugin-shell": "^2.3.0",
3030
"@tauri-apps/plugin-store": "^2.3.0",
3131
"@tauri-apps/plugin-updater": "^2.9.0",
32+
"@tauri-apps/plugin-upload": "^2.3.0",
3233
"@zerodevx/svelte-json-view": "1.0.11"
3334
},
3435
"devDependencies": {
3536
"@iconify-json/codicon": "^1.2.12",
3637
"@iconify-json/ph": "^1.2.2",
37-
"@sveltejs/vite-plugin-svelte": "^5.0.3",
38-
"@tauri-apps/cli": "2.6.2",
39-
"@unocss/extractor-svelte": "^66.0.0",
38+
"@sveltejs/vite-plugin-svelte": "^6.0.0",
39+
"@tauri-apps/cli": "2.7.0",
40+
"@unocss/extractor-svelte": "^66.3.3",
4041
"svelte": "^5.20.4",
41-
"unocss": "^66.0.0",
42-
"vite": "^6.2.6"
42+
"unocss": "^66.3.3",
43+
"vite": "^7.0.4"
4344
}
4445
}

examples/api/src-tauri/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## \[2.0.31]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[2.0.30]
413

514
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.30"
4+
version = "2.0.31"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -21,15 +21,15 @@ tiny_http = "0.12"
2121
time = "0.3"
2222
log = { workspace = true }
2323
tauri-plugin-log = { path = "../../../plugins/log", version = "2.6.0" }
24-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.4.0", features = [
24+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.4.1", features = [
2525
"watch",
2626
] }
2727
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.3.0" }
28-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.3.0" }
28+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.3.1" }
2929
tauri-plugin-http = { path = "../../../plugins/http", features = [
3030
"multipart",
3131
"cookies",
32-
], version = "2.5.0" }
32+
], version = "2.5.1" }
3333
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.3.0", features = [
3434
"windows7-compat",
3535
] }
@@ -38,6 +38,7 @@ tauri-plugin-process = { path = "../../../plugins/process", version = "2.3.0" }
3838
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.4.0" }
3939
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.3.0" }
4040
tauri-plugin-store = { path = "../../../plugins/store", version = "2.3.0" }
41+
tauri-plugin-upload = { path = "../../../plugins/upload", version = "2.3.0" }
4142

4243
[dependencies.tauri]
4344
workspace = true
@@ -60,7 +61,7 @@ tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.9.0" }
6061
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
6162

6263
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
63-
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.3.0" }
64+
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.4.0" }
6465
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.3.0" }
6566
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.3.0" }
6667
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.3.0" }

examples/api/src-tauri/capabilities/base.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
{
9696
"identifier": "opener:allow-open-path",
9797
"allow": [{ "path": "$APPDATA" }, { "path": "$APPDATA/**" }]
98-
}
98+
},
99+
"upload:default"
99100
]
100101
}

0 commit comments

Comments
 (0)