mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-14 20:55:26 +02:00
chore: tauri 3.0 alpha release
This commit is contained in:
@@ -1,5 +1,27 @@
|
||||
# Changelog
|
||||
|
||||
## [2.0.44-alpha.0]
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Upgraded to `barcode-scanner-js@3.0.0-alpha.0`
|
||||
- Upgraded to `biometric-js@3.0.0-alpha.0`
|
||||
- Upgraded to `cli-js@3.0.0-alpha.0`
|
||||
- Upgraded to `clipboard-manager-js@3.0.0-alpha.0`
|
||||
- Upgraded to `dialog-js@3.0.0-alpha.0`
|
||||
- Upgraded to `fs-js@3.0.0-alpha.0`
|
||||
- Upgraded to `global-shortcut-js@3.0.0-alpha.0`
|
||||
- Upgraded to `http-js@3.0.0-alpha.0`
|
||||
- Upgraded to `log-js@3.0.0-alpha.0`
|
||||
- Upgraded to `nfc-js@3.0.0-alpha.0`
|
||||
- Upgraded to `notification-js@3.0.0-alpha.0`
|
||||
- Upgraded to `opener-js@3.0.0-alpha.0`
|
||||
- Upgraded to `os-js@3.0.0-alpha.0`
|
||||
- Upgraded to `process-js@3.0.0-alpha.0`
|
||||
- Upgraded to `shell-js@3.0.0-alpha.0`
|
||||
- Upgraded to `store-js@3.0.0-alpha.0`
|
||||
- Upgraded to `updater-js@3.0.0-alpha.0`
|
||||
|
||||
## [2.0.43]
|
||||
|
||||
### Dependencies
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "api",
|
||||
"private": true,
|
||||
"version": "2.0.43",
|
||||
"version": "2.0.44-alpha.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --clearScreen false",
|
||||
@@ -36,7 +36,7 @@
|
||||
"@iconify-json/codicon": "^1.2.49",
|
||||
"@iconify-json/ph": "^1.2.2",
|
||||
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
||||
"@tauri-apps/cli-cef": "3.0.0-alpha.26",
|
||||
"@tauri-apps/cli": "3.0.0-alpha.0",
|
||||
"@unocss/extractor-svelte": "^66.6.7",
|
||||
"svelte": "^5.55.7",
|
||||
"unocss": "^66.6.7",
|
||||
|
||||
@@ -1,5 +1,29 @@
|
||||
# Changelog
|
||||
|
||||
## [3.0.0-alpha.0]
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Upgraded to `barcode-scanner@3.0.0-alpha.0`
|
||||
- Upgraded to `biometric@3.0.0-alpha.0`
|
||||
- Upgraded to `cli@3.0.0-alpha.0`
|
||||
- Upgraded to `clipboard-manager@3.0.0-alpha.0`
|
||||
- Upgraded to `dialog@3.0.0-alpha.0`
|
||||
- Upgraded to `fs@3.0.0-alpha.0`
|
||||
- Upgraded to `global-shortcut@3.0.0-alpha.0`
|
||||
- Upgraded to `http@3.0.0-alpha.0`
|
||||
- Upgraded to `log@3.0.0-alpha.0`
|
||||
- Upgraded to `nfc@3.0.0-alpha.0`
|
||||
- Upgraded to `notification@3.0.0-alpha.0`
|
||||
- Upgraded to `opener@3.0.0-alpha.0`
|
||||
- Upgraded to `os@3.0.0-alpha.0`
|
||||
- Upgraded to `process@3.0.0-alpha.0`
|
||||
- Upgraded to `shell@3.0.0-alpha.0`
|
||||
- Upgraded to `store@3.0.0-alpha.0`
|
||||
- Upgraded to `updater@3.0.0-alpha.0`
|
||||
- Upgraded to `haptics@3.0.0-alpha.0`
|
||||
- Upgraded to `geolocation@3.0.0-alpha.0`
|
||||
|
||||
## [2.0.47]
|
||||
|
||||
### Dependencies
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "api"
|
||||
publish = false
|
||||
version = "2.0.47"
|
||||
version = "3.0.0-alpha.0"
|
||||
description = "An example Tauri Application showcasing the api"
|
||||
edition = "2021"
|
||||
rust-version = { workspace = true }
|
||||
@@ -20,25 +20,28 @@ serde = { workspace = true }
|
||||
tiny_http = "0.12"
|
||||
time = "0.3"
|
||||
log = { workspace = true }
|
||||
tauri-plugin-log = { path = "../../../plugins/log", version = "2.9.1" }
|
||||
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.5.2", features = [
|
||||
tauri-plugin-log = { path = "../../../plugins/log", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-fs = { path = "../../../plugins/fs", version = "3.0.0-alpha.0", features = [
|
||||
"watch",
|
||||
] }
|
||||
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.3.3" }
|
||||
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.7.3" }
|
||||
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "3.0.0-alpha.0" }
|
||||
# The dialog backend is chosen by the runtime features below: the plugin's
|
||||
# default `gtk3` backend links GTK 3, which cannot share a process with the GTK 4
|
||||
# application the CEF runtime is on Linux.
|
||||
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "3.0.0-alpha.0", default-features = false }
|
||||
tauri-plugin-http = { path = "../../../plugins/http", features = [
|
||||
"multipart",
|
||||
"cookies",
|
||||
], version = "2.6.0" }
|
||||
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.4.0", features = [
|
||||
], version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-notification = { path = "../../../plugins/notification", version = "3.0.0-alpha.0", features = [
|
||||
"windows7-compat",
|
||||
] }
|
||||
tauri-plugin-os = { path = "../../../plugins/os", version = "2.3.2" }
|
||||
tauri-plugin-process = { path = "../../../plugins/process", version = "2.3.1" }
|
||||
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.5.5" }
|
||||
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.3.6" }
|
||||
tauri-plugin-store = { path = "../../../plugins/store", version = "2.4.4" }
|
||||
tauri-plugin-upload = { path = "../../../plugins/upload", version = "2.3.0" }
|
||||
tauri-plugin-os = { path = "../../../plugins/os", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-process = { path = "../../../plugins/process", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-opener = { path = "../../../plugins/opener", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-shell = { path = "../../../plugins/shell", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-store = { path = "../../../plugins/store", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-upload = { path = "../../../plugins/upload", version = "3.0.0-alpha.0" }
|
||||
|
||||
[dependencies.tauri]
|
||||
workspace = true
|
||||
@@ -66,19 +69,22 @@ optional = true
|
||||
features = ["macos-private-api"]
|
||||
|
||||
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
||||
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.4.1" }
|
||||
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.2" }
|
||||
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.11.0" }
|
||||
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
|
||||
tauri-plugin-cli = { path = "../../../plugins/cli", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-updater = { path = "../../../plugins/updater", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "3.0.0-alpha.0" }
|
||||
|
||||
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
|
||||
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.4.6" }
|
||||
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.3.6" }
|
||||
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.3.3" }
|
||||
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.3.3" }
|
||||
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.3.3" }
|
||||
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "3.0.0-alpha.0" }
|
||||
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "3.0.0-alpha.0" }
|
||||
|
||||
[features]
|
||||
default = ["wry"]
|
||||
wry = ["dep:tauri-runtime-wry"]
|
||||
cef = ["dep:tauri-runtime-cef"]
|
||||
# wry is a GTK 3 application on Linux, so it can use the plugin's GTK 3 dialogs.
|
||||
wry = ["dep:tauri-runtime-wry", "tauri-plugin-dialog/gtk3"]
|
||||
# CEF is a GTK 4 application on Linux: the dialogs go through the XDG desktop
|
||||
# portal instead.
|
||||
cef = ["dep:tauri-runtime-cef", "tauri-plugin-dialog/xdg-portal"]
|
||||
|
||||
Reference in New Issue
Block a user