[email protected]
Ce contenu n’est pas encore disponible dans votre langue.
- Use native dialog on
window.alert
andwindow.confirm
. Since every communication with the webview is asynchronous, thewindow.confirm
returns a Promise resolving to a boolean value. - 0245833 feat(tauri) makewindow.alert
andwindow.confirm
available, fix #848 (#854) on 2020-07-18 - dac0ae9 chore(changes) add tauri-api to JS dialogs changefile on 2020-07-19 - The notification’s
body
is now optional, closes #793. - Fixes a regression on the storage of requestPermission response. ß - dac1db3 fix(tauri) notification body optional, requestPermission() regression, closes #793 (#844) on 2020-07-16
- Plugin system added. You can hook into the webview lifecycle (
created
,ready
) and extend the API adding logic to theinvoke_handler
by implementing thetauri::plugin::Plugin
trait. - Renaming
whitelist
toallowlist
(see #645). - Moving the webview implementation to webview, with the official Rust binding.
This is a breaking change.
IE support has been dropped, so the
edge
object ontauri.conf.json > tauri
no longer exists and you need to remove it.webview.handle()
has been replaced withwebview.as_mut()
. - cd5b401 feature: import official webview rust binding (#846) on 2020-07-18
© 2024 Tauri Contributors. CC-BY / MIT