diff --git a/.changes/eval-with-callback.md b/.changes/eval-with-callback.md deleted file mode 100644 index 82b05d4ed..000000000 --- a/.changes/eval-with-callback.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"wry": patch ---- - -On Windows, Linux and macOS, add method `evaluate_script_with_callback` to execute javascipt with a callback. -Evaluated result will be serialized into JSON string and pass to the callback. diff --git a/.changes/ios-default-scroll-bounce.md b/.changes/ios-default-scroll-bounce.md deleted file mode 100644 index b71cb2ac8..000000000 --- a/.changes/ios-default-scroll-bounce.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "patch" ---- - -On iOS, set webview scroll bounce default to NO. diff --git a/.changes/patch.md b/.changes/patch.md deleted file mode 100644 index 3afe24934..000000000 --- a/.changes/patch.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"wry": patch ---- - -Update the value returned on a `None` value of `ClassDecl::new("WryDownloadDelegate", class!(NSObject))` -from `UIViewController` to `WryDownloadDelegate`. diff --git a/.changes/scrolbar-linux.md b/.changes/scrolbar-linux.md deleted file mode 100644 index 87b90be25..000000000 --- a/.changes/scrolbar-linux.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "patch" ---- - -On Linux, disable system appearance for scrollbars. diff --git a/.changes/win-linux-backwards-navigation.md b/.changes/win-linux-backwards-navigation.md deleted file mode 100644 index 41b39d1f7..000000000 --- a/.changes/win-linux-backwards-navigation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "patch" ---- - -On Windows and Linux, implement `WebviewBuilder::with_back_forward_navigation_gestures` and `WebviewAttributes::back_forward_navigation_gestures` to control swipe navigation. Disabled by default. diff --git a/CHANGELOG.md b/CHANGELOG.md index 650ef5c27..be5a5682a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## \[0.27.1] + +- On Windows, Linux and macOS, add method `evaluate_script_with_callback` to execute javascipt with a callback. + Evaluated result will be serialized into JSON string and pass to the callback. + - [2647731](https://github.com/tauri-apps/wry/commit/2647731c1f084565895a5306fa6465ee6cd271c2) feat: support callback function in eval ([#778](https://github.com/tauri-apps/wry/pull/778)) on 2023-03-23 +- On iOS, set webview scroll bounce default to NO. + - [4d61cf1](https://github.com/tauri-apps/wry/commit/4d61cf122dc0e5b2cef818e0fd491dbd0fd47621) fix(ios): set scroll bounce default to NO ([#907](https://github.com/tauri-apps/wry/pull/907)) on 2023-03-20 +- Update the value returned on a `None` value of `ClassDecl::new("WryDownloadDelegate", class!(NSObject))` + from `UIViewController` to `WryDownloadDelegate`. + - [7795356](https://github.com/tauri-apps/wry/commit/7795356a45b1bd015fad0e9973fc5af58c8c339b) fix: WryDownloadDelegate call after first time on 2023-02-20 +- On Linux, disable system appearance for scrollbars. + - [530a8b7](https://github.com/tauri-apps/wry/commit/530a8b73766dc54736ae6de9528683b27430eaa6) fix(linux): disable system appearance for scrollbars ([#897](https://github.com/tauri-apps/wry/pull/897)) on 2023-03-08 +- On Windows and Linux, implement `WebviewBuilder::with_back_forward_navigation_gestures` and `WebviewAttributes::back_forward_navigation_gestures` to control swipe navigation. Disabled by default. + - [15b4ddf](https://github.com/tauri-apps/wry/commit/15b4ddf7698cf04b90ffcc3164ccb7b62daf6ed0) feat(win\&linux): implement the option to control gesture navigation ([#896](https://github.com/tauri-apps/wry/pull/896)) on 2023-03-07 + ## \[0.27.0] - Add function to dispatch closure with the Android context. diff --git a/Cargo.toml b/Cargo.toml index df9e87ff6..998f4dca9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "wry" -version = "0.27.0" +version = "0.27.1" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" license = "Apache-2.0 OR MIT"