From 424a9216e1428ab7d3320afa8a3a2c155016fc15 Mon Sep 17 00:00:00 2001 From: lucasfernog Date: Sat, 13 Aug 2022 22:15:06 +0000 Subject: [PATCH] publish new versions --- .changes/android-custom-protocol.md | 5 ----- .changes/android-eval.md | 5 ----- .changes/android-init-scripts.md | 5 ----- .changes/windows-tray-tooltip.md | 5 ----- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 21 deletions(-) delete mode 100644 .changes/android-custom-protocol.md delete mode 100644 .changes/android-eval.md delete mode 100644 .changes/android-init-scripts.md delete mode 100644 .changes/windows-tray-tooltip.md diff --git a/.changes/android-custom-protocol.md b/.changes/android-custom-protocol.md deleted file mode 100644 index 7c181bf10c..0000000000 --- a/.changes/android-custom-protocol.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Implement custom protocol on Android. diff --git a/.changes/android-eval.md b/.changes/android-eval.md deleted file mode 100644 index aef7b9a4b0..0000000000 --- a/.changes/android-eval.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Changed `WebViewMessage::Eval` to evaluate an specific script. diff --git a/.changes/android-init-scripts.md b/.changes/android-init-scripts.md deleted file mode 100644 index f277342ae1..0000000000 --- a/.changes/android-init-scripts.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Fix webview initialization scripts implementation on Android. diff --git a/.changes/windows-tray-tooltip.md b/.changes/windows-tray-tooltip.md deleted file mode 100644 index 4e04379e31..0000000000 --- a/.changes/windows-tray-tooltip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -Implement `SystemTray::set_tooltip` and `SystemTrayBuilder::with_tooltip` on Windows. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a5b1b38d..01965e6e8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[0.13.3] + +- Implement custom protocol on Android. + - [b464b8ae](https://github.com/tauri-apps/tao/commit/b464b8ae296cf2b545cd0a98a1506f83779e94ff) feat(android): implement custom protocol ([#527](https://github.com/tauri-apps/tao/pull/527)) on 2022-08-13 +- Changed `WebViewMessage::Eval` to evaluate an specific script. + - [903c7e7f](https://github.com/tauri-apps/tao/commit/903c7e7f5b8c7984515697865fc7c74b496a64dc) feat(android): change WebViewMessage::Eval to run specific script ([#529](https://github.com/tauri-apps/tao/pull/529)) on 2022-08-13 +- Fix webview initialization scripts implementation on Android. + - [3d66ad0b](https://github.com/tauri-apps/tao/commit/3d66ad0b5548ed40da6e954fb5a911c3fb5a13e8) fix(android): run initialization scripts before page loads ([#528](https://github.com/tauri-apps/tao/pull/528)) on 2022-08-13 +- Implement `SystemTray::set_tooltip` and `SystemTrayBuilder::with_tooltip` on Windows. + - [06949a79](https://github.com/tauri-apps/tao/commit/06949a7948100a51e98008c9e6f4ac73e069433a) feat(windows): implement `with_tooltip`&`set_tooltip`, closes [#205](https://github.com/tauri-apps/tao/pull/205) ([#524](https://github.com/tauri-apps/tao/pull/524)) on 2022-08-10 + ## \[0.13.2] - Remove the NSStatusItem from the menu bar when the `SystemTray` instance is dropped. diff --git a/Cargo.toml b/Cargo.toml index ead0c45591..ea4fd5ee79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.13.2" +version = "0.13.3" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",