tauri-utils@1.5.4
tauri-utils@1.5.2
9aa34ada
(#7645) Add setting to switch to http://<scheme>.localhost/
for custom protocols on Windows.tauri-utils@1.5.0
c4d6fb4b
(#2353) Added the maximizable
, minimizable
and closable
methods to WindowBuilder
.c4d6fb4b
(#2353) Added set_maximizable
, set_minimizable
, set_closable
, is_maximizable
, is_minimizable
and is_closable
methods to the Dispatch
trait.000104bc
(#6472) Add Window::is_focused
getter.d2710e9d
(#6944) Unpin time
, ignore
, and winnow
crate versions. Developers now have to pin crates if needed themselves. A list of crates that need pinning to adhere to Tauri's MSRV will be visible in Tauri's GitHub workflow: https://github.com/tauri-apps/tauri/blob/dev/.github/workflows/test-core.yml#L85.076e1a81
(#7119) Use u32
instead of u64
for js event listener idsff5e4dbb
(#6794) impl From<&WindowConfig>
for WebviewAttributes
.additional_browser_args
option when creating a window.
content_protected
option when creating a window and Window::set_content_protected
to change it at runtime.
Builder::device_event_filter
and App::set_device_event_filter
methods.
is_minimized()
window method.
navigation_handler
field on PendingWindow
.
title
getter on window.
TrayHandle::set_tooltip
and SystemTray::with_tooltip
.
url()
getter.
prefers-color-scheme
support.
allowlist > app > show/hide
always disabled when allowlist > app > all: false
.
focused
method. The focus
function has been deprecated.
Runtime::show()
, RuntimeHandle::show()
, Runtime::hide()
, RuntimeHandle::hide()
for hiding/showing the entire application on macOS.
tabbing_identifier
to the window builder on macOS.
user_agent
option when creating a window.
set_cursor_grab
, set_cursor_visible
, set_cursor_icon
and set_cursor_position
APIs.
platform::windows_version
function.
fn new
constructors for PhysicalSize
, LogicalSize
, PhysicalPosition
and LogicalPosition
and missing conversion methods.
raw_window_handle::HasRawWindowHandle
on Linux.
hwnd
and ns_window
functions from Dispatch
in favor of raw_window_handle
.
stable
!
Menu::os_default
which will create a menu filled with default menu items and submenus.
TrayIcon
and renamed WindowIcon
to Icon
, a shared type for both icons.
tauri.conf.json > tauri > bundle > appimage > bundleMediaFramework
.
windows-rs
to 0.37.0
, which requires Rust 1.61.0+.
.mjs
not being recognised as a file extension for JavaScript files (text/javascript
).
AboutMetadata
string setters now take impl Into<String>
.
AboutMetadata
setters on 2022-03-29clipboard
Cargo feature.
set_cursor_grab
, set_cursor_visible
, set_cursor_icon
and set_cursor_position
.
global-shortcut
Cargo feature.
WindowEvent::ThemeChanged(theme)
.
theme
getter on Window
.
theme
setter to the WindowBuilder.
close_devtools
and is_devtools_open
APIs to the Dispatch
trait.
MenuItem::About
variant is now associated with a tuple value (String, AboutMetadata)
.
WindowEvent
enum instead of a having a dedicated handler.
WindowEvent
enum on RunEvent
.
create_proxy
to the Runtime
and RuntimeHandle
traits.
Error
boxed errors to be Sync
.
FileDropEvent
struct to the window
module.
WindowEvent::FileDrop
variant.
ico
and png
parsing behind icon-ico
and icon-png
Cargo features.
PendingWindow::new
and PendingWindow::with_config
functions now return Result<Self>
validating the window label.
RuntimeHandle
, ClipboardManager
, GlobalShortcutHandle
and TrayHandle
.
freezePrototype
configuration to false
.
WindowBuilder
's has_menu
with get_menu
.
run_return
API is now available on Linux.
Menu::with_items
constructor, taking an iterator of MenuEntry
.
any_thread
constructor on the Runtime
trait (only possible on Linux and Windows).
run_on_main_thread
API on RuntimeHandle
.
RPC
interface to IPC
.
open_devtools
to the Dispatcher
trait.
1.56
.
clipboard
field on the WebviewAttributes
struct, which must be set to true
to enable clipboard access on the webview.
winapi
crate references with the windows
crate, and replace webview2
and webview2-sys
with webview2-com
and webview2-com-sys
built with the windows
crate. This goes along with updates to the TAO and WRY next
branches.
windows
crate to 0.25.0, which comes with pre-built libraries. WRY and Tao can both reference the same types directly from the windows
crate instead of sharing bindings in webview2-com-sys
.
register_uri_scheme_protocol
from the WebviewAttributes
struct and renamed register_global_uri_scheme_protocol
to register_uri_scheme_protocol
on the Builder
struct, which now takes a Fn(&AppHandle, &http::Request) -> http::Response
closure.
Partial content
streaming and Header parsing.
Fix blur/focus events being incorrect on Windows.
Add ExitRequested
event that allows preventing the app from exiting when all windows are closed, and an AppHandle.exit()
function to exit the app manually.
Fixes minimum window height being used as maximum height.
Update gtk and its related libraries to v0.14. This also remove requirements of clang
as build dependency.
Implement Debug
on public API structs and enums.
Panic when a dispatcher getter method (Window
, GlobalShortcutHandle
, ClipboardManager
and MenuHandle
APIs) is called on the main thread.
Remove menu feature flag since there's no package dependency need to be installed on any platform anymore.
Adds Resumed
and MainEventsCleared
variants to the RunEvent
enum.
Adds set_activation_policy
API to the Runtime
trait (macOS only).
Allow creation of empty Window with create_tao_window()
and management with send_tao_window_event()
on the AppHandler.
Images you mark as template images should consist of only black and clear colors. You can use the alpha channel in the image to adjust the opacity of black content, however.
426a6b49 feat(macOS): Implement tray icon template (#2322) on 2021-07-29
Add Event::Ready
on the run()
callback. Triggered once when the event loop is ready.
gtk_window
getter.
Params
has been removed, along with all the associated types on it. Functions that previously accepted those
associated types now accept strings instead. Type that used a generic parameter Params
now use Runtime
instead. If
you use the wry
feature, then types with a Runtime
generic parameter should default to Wry
, letting you omit the
explicit type and let the compiler infer it instead.tauri
:
Params
noteParams
inside a function parameter or definition, all references to it have been replaced with a
simple runtime that defaults to Wry
. If you are not using a custom runtime, just remove Params
from the definition
of functions/items that previously took it. If you are using a custom runtime, you may need to pass the runtime type
to these functions.Params
(uncommon and if you don't understand you probably were not using it), all
methods that were previously taking the custom type now takes an Into<String>
or a &str
. The types were already
required to be string-able, so just make sure to convert it into a string before passing it in if this breaking change
affects you.tauri-macros
:
default_runtime
proc macro to allow us to give item definitions a custom runtime only when
the specified feature is enabled.tauri-runtime
:
Params
noteParams
, MenuId
, Tag
, TagRef
.menu::{MenuHash, MenuId, MenuIdRef}
as type aliases for the internal type that menu types now use.
MenuId
generic now use the underlying MenuId
type without a generic.Runtime
, RuntimeHandle
, and Dispatch
have no more generic parameter on create_window(...)
and instead use the
Runtime
type directlyRuntime::system_tray
has no more MenuId
generic and uses the string based SystemTray
type directly.CustomMenuItem::id_value()
is now hashed on creation and exposed as the id
field with type MenuHash
.tauri-runtime-wry
:
Params
notetauri-runtime
.tauri-utils
:
Assets::get
signature has changed to take a &AssetKey
instead of impl Into<AssetKey>
to become trait object
safe.Params
and replace with strings (#2191) on 2021-07-15Window
is now Send + Sync
on Windows.
clipboard
APIs (write and read text).
focus
API to the WindowBuilder.
is_decorated
getter on Window.
is_resizable
getter on Window.
is_visible
getter on Window.
accelerator
method to the CustomMenuItem
struct to define a keyboard shortcut for the menu item.
request_user_attention
API to the Dispatcher
trait.
fn run_iteration
(macOS and Windows only) to the Runtime trait.
show_menu
, hide_menu
and is_menu_visible
APIs to the Dispatcher
trait.
set_focus
API on Window.
set_skip_taskbar
API on Window.
skip_taskbar
API to the WindowBuilder.
Window#center
and WindowBuilder#center
APIs.
parent_window
and owner_window
setters to the WindowBuilder
(Windows only).
system-tray
feature usage.
Context
fields are now private, and is expected to be created through Context::new(...)
.
All fields previously available through Context
are now public methods.
tauri-runtime
crate initial release.