From 4cd9ac97fca1cb7800c80eb1ce7cebb57a0dfcba Mon Sep 17 00:00:00 2001 From: wusyong Date: Sun, 14 Aug 2022 11:10:07 +0000 Subject: [PATCH] publish new versions --- .changes/android-custom-protocol.md | 5 ----- .changes/android-eval.md | 5 ----- .changes/android-init-scripts.md | 5 ----- .changes/android-refactor.md | 5 ----- .changes/windows-tray-tooltip.md | 5 ----- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 26 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/android-refactor.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 7c181bf10..000000000 --- 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 aef7b9a4b..000000000 --- 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 f277342ae..000000000 --- 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/android-refactor.md b/.changes/android-refactor.md deleted file mode 100644 index dce0235c8..000000000 --- a/.changes/android-refactor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Removed the webview logic from the Android glue. diff --git a/.changes/windows-tray-tooltip.md b/.changes/windows-tray-tooltip.md deleted file mode 100644 index 4e04379e3..000000000 --- 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 a3a5b1b38..930696562 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # 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 +- Removed the webview logic from the Android glue. + - [152aaa44](https://github.com/tauri-apps/tao/commit/152aaa4481ff8e44fc32ea3fe93a74c7fecd5be5) refactor(android): remove WebView logic, allow wry to hook into it ([#530](https://github.com/tauri-apps/tao/pull/530)) on 2022-08-14 +- 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 873c82877..5903bb118 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",