diff --git a/.changes/pre.json b/.changes/pre.json index 2829b61e1..6bf6d7b49 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -37,6 +37,7 @@ ".changes/cargo-cache.md", ".changes/child-process-cleanup.md", ".changes/cli-error-logging.md", + ".changes/cli-error-message.md", ".changes/cli-init-infer-prompts.md", ".changes/cli-rs-info-webview2.md", ".changes/cli-runner-arg.md", @@ -77,6 +78,7 @@ ".changes/cta-vite-esbuild-install-direct.md", ".changes/cta-vite-templates.md", ".changes/cta-welcome-prompt-and-links.md", + ".changes/dblclick-tauri-drag-maximize.md", ".changes/debian-depends.md", ".changes/default-params-type.md", ".changes/dev-copy-resources.md", @@ -100,6 +102,7 @@ ".changes/fix-cli.rs-bundle-arg.md", ".changes/fix-command-event-channel.md", ".changes/fix-command-named-cmd.md", + ".changes/fix-custom-protocol.md", ".changes/fix-dialog-allowlist..md", ".changes/fix-dmg-volume-icon.md", ".changes/fix-drag-and-drop.md", diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 93dbfa93c..0d6b58a47 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.0.0-beta.4] + +- Double clicking a `data-tauri-drag-region` element will toggle the window maximized state. + - [8b7ac1ad](https://www.github.com/tauri-apps/tauri/commit/8b7ac1ad1432db1fb1b85b3f72d336b303414554) feat: double-click tauri-drag-region to maximize, closes [#1839](https://www.github.com/tauri-apps/tauri/pull/1839) ([#2106](https://www.github.com/tauri-apps/tauri/pull/2106)) on 2021-06-29 +- Fixes `asset` protocol crashing application. + - [99d96084](https://www.github.com/tauri-apps/tauri/commit/99d960841c4411c3805219d07640185b1d04c37a) fix(core): custom protocol regression ([#2115](https://www.github.com/tauri-apps/tauri/pull/2115)) on 2021-06-28 + ## \[1.0.0-beta.3] - Fixes `api::process::Command` events not firing consistently. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 0889ea5d9..1679137ac 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "1.0.0-beta.3" +version = "1.0.0-beta.4" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" diff --git a/tooling/cli.js/CHANGELOG.md b/tooling/cli.js/CHANGELOG.md index 862f3f2d6..9b6c5cd3e 100644 --- a/tooling/cli.js/CHANGELOG.md +++ b/tooling/cli.js/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.0.0-beta.5] + +- Improve error message when the product name is invalid. + - Bumped due to a bump in cli.rs. + - [1a41e9f0](https://www.github.com/tauri-apps/tauri/commit/1a41e9f040cfa18b6cc1380dfe21251d56e3f973) feat(cli.rs): improve error message on app rename, closes [#2101](https://www.github.com/tauri-apps/tauri/pull/2101) ([#2114](https://www.github.com/tauri-apps/tauri/pull/2114)) on 2021-06-28 + ## \[1.0.0-beta.4] - Properly detect target platform's architecture. diff --git a/tooling/cli.js/package.json b/tooling/cli.js/package.json index 78add62e4..7defcc3eb 100644 --- a/tooling/cli.js/package.json +++ b/tooling/cli.js/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.5", "description": "Command line interface for building Tauri apps", "bin": { "tauri": "./bin/tauri.js" diff --git a/tooling/cli.rs/CHANGELOG.md b/tooling/cli.rs/CHANGELOG.md index d541043ff..081e9316f 100644 --- a/tooling/cli.rs/CHANGELOG.md +++ b/tooling/cli.rs/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.0-beta.4] + +- Improve error message when the product name is invalid. + - [1a41e9f0](https://www.github.com/tauri-apps/tauri/commit/1a41e9f040cfa18b6cc1380dfe21251d56e3f973) feat(cli.rs): improve error message on app rename, closes [#2101](https://www.github.com/tauri-apps/tauri/pull/2101) ([#2114](https://www.github.com/tauri-apps/tauri/pull/2114)) on 2021-06-28 + ## \[1.0.0-beta.3] - Properly detect target platform's architecture. diff --git a/tooling/cli.rs/Cargo.lock b/tooling/cli.rs/Cargo.lock index 8d78ec02a..f142ef669 100755 --- a/tooling/cli.rs/Cargo.lock +++ b/tooling/cli.rs/Cargo.lock @@ -1914,7 +1914,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.0.0-beta.3" +version = "1.0.0-beta.4" dependencies = [ "anyhow", "base64", diff --git a/tooling/cli.rs/Cargo.toml b/tooling/cli.rs/Cargo.toml index fd160874e..efd3eeb56 100644 --- a/tooling/cli.rs/Cargo.toml +++ b/tooling/cli.rs/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-cli" -version = "1.0.0-beta.3" +version = "1.0.0-beta.4" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2018" categories = [ "gui", "web-programming" ] diff --git a/tooling/cli.rs/metadata.json b/tooling/cli.rs/metadata.json index 819121a17..6f008938a 100644 --- a/tooling/cli.rs/metadata.json +++ b/tooling/cli.rs/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.0.0-beta.4", + "version": "1.0.0-beta.5", "node": ">= 12.13.0" }, - "tauri": "1.0.0-beta.3", + "tauri": "1.0.0-beta.4", "tauri-build": "1.0.0-beta.2" }