Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changes/add-cli-matches-from.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/add-global-flag-cli.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/fix-log-freeze.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/in-app-browser.md

This file was deleted.

8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions examples/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.0.25]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.24]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions examples/api/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "api",
"private": true,
"version": "2.0.24",
"version": "2.0.25",
"type": "module",
"scripts": {
"dev": "vite --clearScreen false",
Expand All @@ -13,7 +13,7 @@
"@tauri-apps/api": "2.5.0",
"@tauri-apps/plugin-barcode-scanner": "^2.2.1",
"@tauri-apps/plugin-biometric": "^2.2.2",
"@tauri-apps/plugin-cli": "^2.2.1",
"@tauri-apps/plugin-cli": "^2.3.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.3",
"@tauri-apps/plugin-dialog": "^2.2.2",
"@tauri-apps/plugin-fs": "^2.3.0",
Expand All @@ -23,7 +23,7 @@
"@tauri-apps/plugin-http": "^2.4.4",
"@tauri-apps/plugin-nfc": "^2.2.1",
"@tauri-apps/plugin-notification": "^2.2.3",
"@tauri-apps/plugin-opener": "^2.3.0",
"@tauri-apps/plugin-opener": "^2.3.1",
"@tauri-apps/plugin-os": "^2.2.2",
"@tauri-apps/plugin-process": "^2.2.2",
"@tauri-apps/plugin-shell": "^2.2.2",
Expand Down
8 changes: 8 additions & 0 deletions examples/api/src-tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.0.29]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.28]

### Dependencies
Expand Down
8 changes: 4 additions & 4 deletions examples/api/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "api"
publish = false
version = "2.0.28"
version = "2.0.29"
description = "An example Tauri Application showcasing the api"
edition = "2021"
rust-version = { workspace = true }
Expand All @@ -20,7 +20,7 @@ serde = { workspace = true }
tiny_http = "0.12"
time = "0.3"
log = { workspace = true }
tauri-plugin-log = { path = "../../../plugins/log", version = "2.5.0" }
tauri-plugin-log = { path = "../../../plugins/log", version = "2.5.1" }
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.3.0", features = [
"watch",
] }
Expand All @@ -35,7 +35,7 @@ tauri-plugin-notification = { path = "../../../plugins/notification", version =
] }
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.2" }
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.2" }
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.3.0" }
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.3.1" }
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.2" }
tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.1" }

Expand All @@ -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]
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.2.1" }
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.3.0" }
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.1" }
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.8.1" }
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
Expand Down
7 changes: 7 additions & 0 deletions plugins/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.3.0]

- [`f6e11282`](https://github.com/tauri-apps/plugins-workspace/commit/f6e11282a7f4036dd6d1dbb8f100e777e9e42f11) ([#2787](https://github.com/tauri-apps/plugins-workspace/pull/2787) by [@mikew](https://github.com/tauri-apps/plugins-workspace/../../mikew)) Added `Cli.matches_from(args)`. This can be combined with the `args` passed to the callback of `tauri_plugin_single_instance::init` to parse the command line arguments passed to subsequent instances of the application.
- [`37c2fb41`](https://github.com/tauri-apps/plugins-workspace/commit/37c2fb41201160e85c8dc3ad40f462cd4e17a304) ([#2772](https://github.com/tauri-apps/plugins-workspace/pull/2772) by [@floriskn](https://github.com/tauri-apps/plugins-workspace/../../floriskn)) Added a new `global` boolean flag to the `CliArg` struct to support global CLI arguments. This flag allows arguments like `--verbose` to be marked as global and automatically propagated to all subcommands, enabling consistent availability throughout the CLI.

The new field is optional and defaults to false.

## \[2.2.1]

- [`f634e524`](https://github.com/tauri-apps/plugins-workspace/commit/f634e5248ebe428f8305a59f74c13fc15147fb8e) This is an "empty" release to update the plugins' source files on crates.io and docs.rs. This should fix docs.rs build failures for projects using tauri plugins as dependencies.
Expand Down
2 changes: 1 addition & 1 deletion plugins/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-cli"
version = "2.2.1"
version = "2.3.0"
description = "Parse arguments from your Tauri application's command line interface."
edition = { workspace = true }
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-cli",
"version": "2.2.1",
"version": "2.3.0",
"license": "MIT OR Apache-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
Expand Down
6 changes: 6 additions & 0 deletions plugins/log/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.5.1]

### bug

- [`9799f0db`](https://github.com/tauri-apps/plugins-workspace/commit/9799f0dbabea0b572a9b9111954fbf9aca63da71) ([#2802](https://github.com/tauri-apps/plugins-workspace/pull/2802) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Fixes iOS simulator still freezing sometimes due to early logging.

## \[2.5.0]

- [`106e46ed`](https://github.com/tauri-apps/plugins-workspace/commit/106e46ed5125be33d0427cab9c5c066802f68791) ([#677](https://github.com/tauri-apps/plugins-workspace/pull/677)) Added the `KeepSome` rotation strategy. Like `KeepAll` it will rename files when the max file size is exceeded but will keep only the specified amount of files around.
Expand Down
2 changes: 1 addition & 1 deletion plugins/log/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-log"
version = "2.5.0"
version = "2.5.1"
description = "Configurable logging for your Tauri app."
authors = { workspace = true }
license = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/log/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-log",
"version": "2.5.0",
"version": "2.5.1",
"description": "Configurable logging for your Tauri app.",
"license": "MIT OR Apache-2.0",
"authors": [
Expand Down
6 changes: 6 additions & 0 deletions plugins/opener/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.3.1]

### feat

- [`2aec8ff4`](https://github.com/tauri-apps/plugins-workspace/commit/2aec8ff4c41d178ea9804f7b6eff343c726be015) ([#2803](https://github.com/tauri-apps/plugins-workspace/pull/2803) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Add `inAppBrowser` option to open URLs in an in-app browser on Android and iOS.

## \[2.3.0]

- [`ce9888a2`](https://github.com/tauri-apps/plugins-workspace/commit/ce9888a2d4c9b449bd2a306f0fa6c76507fd46d3) ([#2762](https://github.com/tauri-apps/plugins-workspace/pull/2762)) Similar to the `fs` plugin the `opener` plugin now supports a `requireLiteralLeadingDot` configuration in `tauri.conf.json`.
Expand Down
2 changes: 1 addition & 1 deletion plugins/opener/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-opener"
version = "2.3.0"
version = "2.3.1"
description = "Open files and URLs using their default application."
edition = { workspace = true }
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/opener/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-opener",
"version": "2.3.0",
"version": "2.3.1",
"description": "Open files and URLs using their default application.",
"license": "MIT OR Apache-2.0",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

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