-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into prevent-window-overflow
- Loading branch information
Showing
45 changed files
with
1,058 additions
and
512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
"@tauri-apps/api": "minor:feat" | ||
"tauri": "minor:feat" | ||
--- | ||
|
||
Improved support for `dpi` module types to allow these types to be used without manual conversions with `invoke`: | ||
|
||
- Added `SERIALIZE_TO_IPC_FN` const in `core` module which can be used to implement custom IPC serialization for types passed to `invoke`. | ||
- Added `Size` and `Position` classes in `dpi` module. | ||
- Implementd `SERIALIZE_TO_IPC_FN` method on `PhysicalSize`, `PhysicalPosition`, `LogicalSize` and `LogicalPosition` to convert it into a valid IPC-compatible value that can be deserialized correctly on the Rust side into its equivalent struct. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"tauri-bundler": "minor:feat" | ||
"tauri-cli": "minor:feat" | ||
--- | ||
|
||
Process `bundle > windows > wix > fragmentPaths` with Handlebars to interpolate expressions within it. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"tauri-cli": "patch:bug" | ||
"@tauri-apps/cli": "patch:bug" | ||
--- | ||
|
||
Fix `tauri migrate` failing to install NPM depenencies when running from Deno. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"tauri-cli": "patch:bug" | ||
"@tauri-apps/cli": "patch:bug" | ||
--- | ||
|
||
Fix detecting yarn berry (v2 and higher) in various tauri cli commands. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"tauri": "patch:feat" | ||
"tauri-utils": "patch:feat" | ||
"@tauri-apps/api": "patch:feat" | ||
--- | ||
|
||
Add `app > windows > devtools` config option and when creating the webview from JS, to enable or disable devtools for a specific webview. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"tauri": "patch:enhance" | ||
"tauri-macros": "patch:enhance" | ||
--- | ||
|
||
Enhance the error message when using `async` commands with a reference. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"tauri": "minor:feat" | ||
--- | ||
|
||
Detect if `SERIALIZE_TO_IPC_FN`, const from the JS `core` module, is implemented on objects when serializing over IPC and use it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"tauri": "patch:feat" | ||
"tauri-runtime": "patch:feat" | ||
"tauri-runtime-wry": "patch:feat" | ||
--- | ||
|
||
Add `WebviewWindowBuilder::devtools` and `WebviewBuilder::devtools` to enable or disable devtools for a specific webview. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@tauri-apps/api": 'minor:feat' | ||
--- | ||
|
||
Added `windowClassname` option, when constructing a `Webview` or `WebviewWindow`, to specify the name of the window class on Windows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"tauri": 'minor:feat' | ||
"tauri-utils": 'minor:feat' | ||
--- | ||
|
||
Added `app > windows > windowClassname` config option to specify the name of the window class on Windows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"tauri": 'minor:feat' | ||
"tauri-runtime-wry": 'minor:feat' | ||
"tauri-runtime": 'minor:feat' | ||
--- | ||
|
||
Added `WindowBuilder/WebviewWindowBuilder::window_classname` method to specify the name of the window class on Windows. |
Oops, something went wrong.