mirror of
https://github.com/tauri-apps/tauri.git
synced 2025-01-01 15:36:14 +03:00
going beta release (#1779)
This commit is contained in:
parent
55423590dd
commit
b5f8912122
@ -1,5 +0,0 @@
|
||||
---
|
||||
"api": patch
|
||||
---
|
||||
|
||||
Fixes distribution of the `@tauri-apps/api` package for older bundlers.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Find best available icon for AppImage, follow `.DirIcon` spec.
|
@ -7,8 +7,10 @@
|
||||
"tauri-codegen": major
|
||||
"tauri-macros": major
|
||||
"tauri-build": major
|
||||
"tauri-runtime": minor
|
||||
"tauri-runtime-wry": minor
|
||||
"tauri": major
|
||||
"create-tauri-app": major
|
||||
---
|
||||
|
||||
The beta process has begun!
|
||||
Upgrade to beta!
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.js": patch
|
||||
---
|
||||
|
||||
Remove Rust CLI download file
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Check if distDir assets are built after running `beforeDevCommand`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Add missing camelcase rename for config
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Fix `tauri info`
|
||||
* Properly detect `yarn` and `npm` versions on windows.
|
||||
* Fix a panic caused by a wrong field name in `metadata.json`
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
`tauri::error::CreateWebview` now has the error string message attached.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"create-tauri-app": patch
|
||||
---
|
||||
|
||||
Remove `lodash` dependency and replace with es6 builtins
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"create-tauri-app": patch
|
||||
---
|
||||
|
||||
Remove `tauri` dependency from vanilla recipe
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"create-tauri-app": patch
|
||||
---
|
||||
|
||||
Fix adding `tauri` script to package.json
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Allow including custom files on the debian package.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.js": patch
|
||||
---
|
||||
|
||||
The `tauri deps` command now properly detects `beta-rc` crate updates.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
If the dialog `defaultPath` is a file, use it as starting file path.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Validate dialog option `defaultPath` - it must exists.
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Prevent "once" events from being able to be called multiple times.
|
||||
* `Window::trigger(/*...*/)` is now properly `pub` instead of `pub(crate)`.
|
||||
* `Manager::once_global(/*...*/)` now returns an `EventHandler`.
|
||||
* `Window::once(/*...*/)` now returns an `EventHandler`.
|
||||
* (internal) `event::Listeners::trigger(/*...*/)` now handles removing "once" events.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Expose `async_runtime` module.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Expose `PageLoadPayload` struct.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"create-tauri-app": patch
|
||||
---
|
||||
|
||||
Manually set `tauri` script instead of using `npm set-script` for compatabilty with older npm versions
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Fixes `tauri info` display version for the `@tauri-apps/api` package.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"api": patch
|
||||
---
|
||||
|
||||
TS was wrongly re-exporting the module.
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
"tauri-macros": patch
|
||||
---
|
||||
|
||||
Fixes the Message `command` name value on plugin invoke handler.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Allow `window.__TAURI__.invoke` to be moved to another variable.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Make sure custom protocol is treated as secure content on macOS.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Fixes macOS shortcut modifiers keycodes.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Adds APIs to determine global and webview-specific URI scheme handlers.
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Window and global events can now be nested inside event handlers. They will run as soon
|
||||
as the event handler closure is finished in the order they were called. Previously, calling
|
||||
events inside an event handler would produce a deadlock.
|
||||
|
||||
Note: The order that event handlers are called when triggered is still non-deterministic.
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"api": patch
|
||||
"cli.js": patch
|
||||
---
|
||||
|
||||
Update minimum Node.js version to v12.13.0
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Fixes crash on usage of modifier keys on Windows when running `tauri init`.
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"tauri-utils": patch
|
||||
"tauri-codegen": patch
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
The package info APIs now checks the `package` object on `tauri.conf.json`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Change plugin trait `initialization` return type to `std::result::Result<(), Box<dyn std::error::Error>>`.
|
@ -1,46 +1,4 @@
|
||||
{
|
||||
"tag": "beta-rc",
|
||||
"changes": [
|
||||
".changes/api-package-fix.md",
|
||||
".changes/appimage-icon.md",
|
||||
".changes/beta-rc.md",
|
||||
".changes/cli-js-download-stop.md",
|
||||
".changes/cli-rs-dist-validation.md",
|
||||
".changes/cli.rs-camelcase-rename.md",
|
||||
".changes/clr.rs-fix-tauri-info.md",
|
||||
".changes/create-webview-error.md",
|
||||
".changes/cta-remove-lodash.md",
|
||||
".changes/cta-remove-tauri-from-vanilla.md",
|
||||
".changes/cta-tauri-script.md",
|
||||
".changes/deb-custom-files.md",
|
||||
".changes/deps-rc-detection.md",
|
||||
".changes/dialog-default-path-file.md",
|
||||
".changes/dialog-default-path-validation.md",
|
||||
".changes/event-once.md",
|
||||
".changes/expose-async-runtime.md",
|
||||
".changes/expose-page-load-payload.md",
|
||||
".changes/fix-cta-set-script.md",
|
||||
".changes/fix-info-npm-version.md",
|
||||
".changes/fix-js-api-import.md",
|
||||
".changes/fix-plugin-invoke.md",
|
||||
".changes/invoke-context.md",
|
||||
".changes/macos-custom-protocol-https.md",
|
||||
".changes/macos-modifiers.md",
|
||||
".changes/multi-custom-protocols.md",
|
||||
".changes/nested-events.md",
|
||||
".changes/node-v12.md",
|
||||
".changes/not-a-terminal-windows-fix.md",
|
||||
".changes/package-info-config.md",
|
||||
".changes/plugin-initialization-result.md",
|
||||
".changes/sidecar-fix.md",
|
||||
".changes/supports-custom-template.md",
|
||||
".changes/sync-metadata.md",
|
||||
".changes/tauri-icon-cli.md",
|
||||
".changes/tauri-init-ci-fix.md",
|
||||
".changes/updater-feature.md",
|
||||
".changes/user-data-path.md",
|
||||
".changes/windows-user-data-path.md",
|
||||
".changes/wix-fragments.md",
|
||||
".changes/wix-skip-webview-install.md"
|
||||
]
|
||||
"tag": "beta",
|
||||
"changes": [".changes/beta.md"]
|
||||
}
|
||||
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Fixes `sidecar` Command API.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": minor
|
||||
---
|
||||
|
||||
Adds support to custom WiX template.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Sync `metadata.json` via script to update version reference to cli.js, tauri (core) and tauri-build.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.js": patch
|
||||
---
|
||||
|
||||
The `tauri icon` command now accepts the icon path as the first positional argument instead of `--icon PATH`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.js": patch
|
||||
---
|
||||
|
||||
Do not prompt to install dependencies on `tauri init` when the `--ci` argument is passed.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Enable `tauri` `updater` feature when `tauri.conf.json > tauri > updater > active` is set to `true`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Set LocalStorage and IndexedDB files path on Linux to `$HOME/.local/${bundleIdentifier}`.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri": patch
|
||||
---
|
||||
|
||||
Use bundle identifier instead of `Tauri` for user data path on Windows.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Adds support to `wix` fragments for custom .msi installer functionality.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-bundler": patch
|
||||
---
|
||||
|
||||
Adds `skip_webview_install` config under `windows > wix` to disable Webview2 runtime installation after the app install.
|
Loading…
Reference in New Issue
Block a user