mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 23:51:43 +03:00
665ed9a1cc
* apply version updates * scrub revert from changelog Co-authored-by: jbolda <jbolda@users.noreply.github.com> Co-authored-by: Jacob Bolda <me@jacobbolda.com>
3.0 KiB
3.0 KiB
Changelog
[0.7.5]
dirs
crate is unmaintained, now usingdirs-next
instead.
[0.7.4]
- Bump all deps as noted in #975, #976, #977, #978, and #979.
[0.7.3]
- 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
[0.7.2]
- Fixes Edge blank screen on Windows when running tauri dev (Tauri crashing window due to Edge reloading app because of missing Content-Type header).
[0.7.1]
- Fixes the config reloading when tauri.conf.json changes.
[0.7.0]
- The execute_promise and execute_promise_sync helpers now accepts any tauri::Result where T: impl Serialize. This means that you do not need to serialize your response manually or deal with String quotes anymore. As part of this refactor, the event::emit function also supports impl Serialize instead of String.
- readDir API refactor. Now returns path, name and children.
[0.6.1]
- Fixes the httpRequest headers usage. It now accepts Strings instead of serde_json::Value.
[0.6.0]
- This adds HttpRequestBuilder, described at "alternatives you've considered" section in undefined.
- Adds a command line interface option to tauri apps, configurable under tauri.conf.json > tauri > cli.
- Fixes no-server mode not running on another machine due to fs::read_to_string usage instead of the include_str macro. Build no longer fails when compiling without environment variables, now the app will show an error.
- Adds desktop notifications API.