mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-29 13:03:09 +03:00
3417bf5fbe
Co-authored-by: lucasfernog <lucas@tauri.studio>
3.1 KiB
3.1 KiB
Changelog
[0.9.1]
- Fixes Edge blank screen on Windows when running tauri dev (Tauri crashing window due to Edge reloading app because of missing Content-Type header).
- Improve the tauri info output on Windows, including the Microsoft Edge version.
[0.9.0]
- Fixes a race condition on the beforeDevCommand usage (starting Tauri before the devServer is ready).
- Revert a nullish coalescing operator that changed embedded server/inliner behavior.
- Fixes tauri init not generating tauri.conf.json on the Vue CLI Plugin.
- tauri init now prompt for default values such as window title, app name, dist dir and dev path. You can use --ci to skip the prompts.
[0.8.4]
- Bump lodash to 4.17.19
[0.8.3]
- Fixes the wrong cli value on the template that's used by tauri init. Also fixes the template test.
- Fixes the tauri icon usage with the --icon flag. Previously, only the -i flag worked.
[0.8.2]
- Adds tauri.conf.json schema validation to the CLI.
[0.8.1]
- Transpile the TS API to ES5. Expose CJS as .js and ESM as .mjs.
- Fixes the assets embedding into the binary.
[0.8.0]
- Create UMD, ESM and CJS artifacts for the JavaScript API entry point from TS source using rollup.
- Renaming window.tauri to window.__TAURI__, closing #435.
The Tauri object now follows the TypeScript API structure (e.g. window.tauri.readTextFile is now window.__TAURI__.fs.readTextFile).
If you want to keep the
window.tauri
object for a while, you can add a mapping object to your code.