mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-22 21:30:44 +02:00
Publish New Versions (v2) (#2237)
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
co-authored by
FabianLars
parent
86bae64a52
commit
3a826fb6bf
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
"opener": patch
|
|
||||||
"opener-js": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Return an error in `open_path` if the file does not exist when opening with default application.
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
"updater": "patch"
|
|
||||||
"updater-js": "patch"
|
|
||||||
---
|
|
||||||
|
|
||||||
Add `Builder::header` and `Builder::headers` method to configure default headers for updater.
|
|
||||||
|
|
||||||
Generated
+3
-3
@@ -206,7 +206,7 @@ checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "api"
|
name = "api"
|
||||||
version = "2.0.11"
|
version = "2.0.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"serde",
|
"serde",
|
||||||
@@ -6707,7 +6707,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri-plugin-opener"
|
name = "tauri-plugin-opener"
|
||||||
version = "2.2.2"
|
version = "2.2.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dunce",
|
"dunce",
|
||||||
"glob",
|
"glob",
|
||||||
@@ -6864,7 +6864,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri-plugin-updater"
|
name = "tauri-plugin-updater"
|
||||||
version = "2.3.0"
|
version = "2.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"dirs 5.0.1",
|
"dirs 5.0.1",
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## \[2.0.9]
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
- Upgraded to `opener-js@2.2.3`
|
||||||
|
- Upgraded to `updater-js@2.3.1`
|
||||||
|
|
||||||
## \[2.0.8]
|
## \[2.0.8]
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "api",
|
"name": "api",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.0.8",
|
"version": "2.0.9",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite --clearScreen false",
|
"dev": "vite --clearScreen false",
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
"@tauri-apps/plugin-fs": "2.2.0",
|
"@tauri-apps/plugin-fs": "2.2.0",
|
||||||
"@tauri-apps/plugin-geolocation": "2.2.0",
|
"@tauri-apps/plugin-geolocation": "2.2.0",
|
||||||
"@tauri-apps/plugin-global-shortcut": "2.2.0",
|
"@tauri-apps/plugin-global-shortcut": "2.2.0",
|
||||||
"@tauri-apps/plugin-opener": "2.2.2",
|
"@tauri-apps/plugin-opener": "2.2.3",
|
||||||
"@tauri-apps/plugin-haptics": "2.2.0",
|
"@tauri-apps/plugin-haptics": "2.2.0",
|
||||||
"@tauri-apps/plugin-http": "2.2.0",
|
"@tauri-apps/plugin-http": "2.2.0",
|
||||||
"@tauri-apps/plugin-nfc": "2.2.0",
|
"@tauri-apps/plugin-nfc": "2.2.0",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
"@tauri-apps/plugin-process": "2.2.0",
|
"@tauri-apps/plugin-process": "2.2.0",
|
||||||
"@tauri-apps/plugin-shell": "2.2.0",
|
"@tauri-apps/plugin-shell": "2.2.0",
|
||||||
"@tauri-apps/plugin-store": "2.2.0",
|
"@tauri-apps/plugin-store": "2.2.0",
|
||||||
"@tauri-apps/plugin-updater": "2.3.0",
|
"@tauri-apps/plugin-updater": "2.3.1",
|
||||||
"@zerodevx/svelte-json-view": "1.0.11"
|
"@zerodevx/svelte-json-view": "1.0.11"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## \[2.0.12]
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
- Upgraded to `opener@2.2.3`
|
||||||
|
- Upgraded to `updater@2.3.1`
|
||||||
|
|
||||||
## \[2.0.11]
|
## \[2.0.11]
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "api"
|
name = "api"
|
||||||
publish = false
|
publish = false
|
||||||
version = "2.0.11"
|
version = "2.0.12"
|
||||||
description = "An example Tauri Application showcasing the api"
|
description = "An example Tauri Application showcasing the api"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
@@ -33,7 +33,7 @@ tauri-plugin-notification = { path = "../../../plugins/notification", version =
|
|||||||
] }
|
] }
|
||||||
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.0" }
|
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.0" }
|
||||||
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.0" }
|
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.0" }
|
||||||
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.2" }
|
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.3" }
|
||||||
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.0" }
|
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.0" }
|
||||||
tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.0" }
|
tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.0" }
|
||||||
|
|
||||||
@@ -53,7 +53,7 @@ features = [
|
|||||||
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
|
[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.2.0" }
|
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.2.0" }
|
||||||
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.0" }
|
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.0" }
|
||||||
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.3.0" }
|
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.3.1" }
|
||||||
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
|
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
|
||||||
|
|
||||||
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
|
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## \[2.2.3]
|
||||||
|
|
||||||
|
- [`a9ac1e3c`](https://github.com/tauri-apps/plugins-workspace/commit/a9ac1e3c939cec4338a9422ef02323c1d4dde6cd) ([#2253](https://github.com/tauri-apps/plugins-workspace/pull/2253) by [@betamos](https://github.com/tauri-apps/plugins-workspace/../../betamos)) Return an error in `open_path` if the file does not exist when opening with default application.
|
||||||
|
|
||||||
## \[2.2.2]
|
## \[2.2.2]
|
||||||
|
|
||||||
- [`ee0f65de`](https://github.com/tauri-apps/plugins-workspace/commit/ee0f65de5c645c244c5f0b638e0e0aab687cb9bf) ([#2207](https://github.com/tauri-apps/plugins-workspace/pull/2207) by [@universalappfactory](https://github.com/tauri-apps/plugins-workspace/../../universalappfactory)) Fixed OpenerPlugin packagename for android
|
- [`ee0f65de`](https://github.com/tauri-apps/plugins-workspace/commit/ee0f65de5c645c244c5f0b638e0e0aab687cb9bf) ([#2207](https://github.com/tauri-apps/plugins-workspace/pull/2207) by [@universalappfactory](https://github.com/tauri-apps/plugins-workspace/../../universalappfactory)) Fixed OpenerPlugin packagename for android
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri-plugin-opener"
|
name = "tauri-plugin-opener"
|
||||||
version = "2.2.2"
|
version = "2.2.3"
|
||||||
description = "Open files and URLs using their default application."
|
description = "Open files and URLs using their default application."
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
authors = { workspace = true }
|
authors = { workspace = true }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tauri-apps/plugin-opener",
|
"name": "@tauri-apps/plugin-opener",
|
||||||
"version": "2.2.2",
|
"version": "2.2.3",
|
||||||
"description": "Open files and URLs using their default application.",
|
"description": "Open files and URLs using their default application.",
|
||||||
"license": "MIT OR Apache-2.0",
|
"license": "MIT OR Apache-2.0",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## \[2.3.1]
|
||||||
|
|
||||||
|
- [`57efb47c`](https://github.com/tauri-apps/plugins-workspace/commit/57efb47c116f880477f72f02a8e4239e88007d44) ([#2235](https://github.com/tauri-apps/plugins-workspace/pull/2235) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add `Builder::header` and `Builder::headers` method to configure default headers for updater.
|
||||||
|
|
||||||
## \[2.3.0]
|
## \[2.3.0]
|
||||||
|
|
||||||
- [`829b6326`](https://github.com/tauri-apps/plugins-workspace/commit/829b63265030bc9c61d1738c4eaca0ffb3178677) ([#1919](https://github.com/tauri-apps/plugins-workspace/pull/1919) by [@n1ght-hunter](https://github.com/tauri-apps/plugins-workspace/../../n1ght-hunter)) Add `tauri_plugin_updater::Builder::default_version_comparator` method to set the default version comparator for the updater.
|
- [`829b6326`](https://github.com/tauri-apps/plugins-workspace/commit/829b63265030bc9c61d1738c4eaca0ffb3178677) ([#1919](https://github.com/tauri-apps/plugins-workspace/pull/1919) by [@n1ght-hunter](https://github.com/tauri-apps/plugins-workspace/../../n1ght-hunter)) Add `tauri_plugin_updater::Builder::default_version_comparator` method to set the default version comparator for the updater.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri-plugin-updater"
|
name = "tauri-plugin-updater"
|
||||||
version = "2.3.0"
|
version = "2.3.1"
|
||||||
description = "In-app updates for Tauri applications."
|
description = "In-app updates for Tauri applications."
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
authors = { workspace = true }
|
authors = { workspace = true }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tauri-apps/plugin-updater",
|
"name": "@tauri-apps/plugin-updater",
|
||||||
"version": "2.3.0",
|
"version": "2.3.1",
|
||||||
"license": "MIT OR Apache-2.0",
|
"license": "MIT OR Apache-2.0",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Tauri Programme within The Commons Conservancy"
|
"Tauri Programme within The Commons Conservancy"
|
||||||
|
|||||||
Generated
+7
-7
@@ -97,7 +97,7 @@ importers:
|
|||||||
specifier: 2.2.0
|
specifier: 2.2.0
|
||||||
version: link:../../plugins/notification
|
version: link:../../plugins/notification
|
||||||
'@tauri-apps/plugin-opener':
|
'@tauri-apps/plugin-opener':
|
||||||
specifier: 2.2.2
|
specifier: 2.2.3
|
||||||
version: link:../../plugins/opener
|
version: link:../../plugins/opener
|
||||||
'@tauri-apps/plugin-os':
|
'@tauri-apps/plugin-os':
|
||||||
specifier: 2.2.0
|
specifier: 2.2.0
|
||||||
@@ -112,7 +112,7 @@ importers:
|
|||||||
specifier: 2.2.0
|
specifier: 2.2.0
|
||||||
version: link:../../plugins/store
|
version: link:../../plugins/store
|
||||||
'@tauri-apps/plugin-updater':
|
'@tauri-apps/plugin-updater':
|
||||||
specifier: 2.3.0
|
specifier: 2.3.1
|
||||||
version: link:../../plugins/updater
|
version: link:../../plugins/updater
|
||||||
'@zerodevx/svelte-json-view':
|
'@zerodevx/svelte-json-view':
|
||||||
specifier: 1.0.11
|
specifier: 1.0.11
|
||||||
@@ -2428,14 +2428,13 @@ snapshots:
|
|||||||
picocolors: 1.1.1
|
picocolors: 1.1.1
|
||||||
sisteransi: 1.0.5
|
sisteransi: 1.0.5
|
||||||
|
|
||||||
'@covector/apply@0.10.0(mocha@10.8.2)':
|
'@covector/apply@0.10.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@covector/files': 0.8.0
|
'@covector/files': 0.8.0
|
||||||
effection: 2.0.8(mocha@10.8.2)
|
effection: 2.0.8(mocha@10.8.2)
|
||||||
semver: 7.6.3
|
semver: 7.6.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- encoding
|
- encoding
|
||||||
- mocha
|
|
||||||
|
|
||||||
'@covector/assemble@0.12.0':
|
'@covector/assemble@0.12.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2452,7 +2451,7 @@ snapshots:
|
|||||||
- encoding
|
- encoding
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@covector/changelog@0.12.0':
|
'@covector/changelog@0.12.0(mocha@10.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@covector/files': 0.8.0
|
'@covector/files': 0.8.0
|
||||||
effection: 2.0.8(mocha@10.8.2)
|
effection: 2.0.8(mocha@10.8.2)
|
||||||
@@ -2462,6 +2461,7 @@ snapshots:
|
|||||||
unified: 9.2.2
|
unified: 9.2.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- encoding
|
- encoding
|
||||||
|
- mocha
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@covector/command@0.8.0':
|
'@covector/command@0.8.0':
|
||||||
@@ -3398,9 +3398,9 @@ snapshots:
|
|||||||
covector@0.12.3(mocha@10.8.2):
|
covector@0.12.3(mocha@10.8.2):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@clack/prompts': 0.7.0
|
'@clack/prompts': 0.7.0
|
||||||
'@covector/apply': 0.10.0(mocha@10.8.2)
|
'@covector/apply': 0.10.0
|
||||||
'@covector/assemble': 0.12.0
|
'@covector/assemble': 0.12.0
|
||||||
'@covector/changelog': 0.12.0
|
'@covector/changelog': 0.12.0(mocha@10.8.2)
|
||||||
'@covector/command': 0.8.0
|
'@covector/command': 0.8.0
|
||||||
'@covector/files': 0.8.0
|
'@covector/files': 0.8.0
|
||||||
effection: 2.0.8(mocha@10.8.2)
|
effection: 2.0.8(mocha@10.8.2)
|
||||||
|
|||||||
Reference in New Issue
Block a user