63 KiB
Changelog
[0.14.3]
Bug Fixes
0d0501cb(#8394) Usearboardinstead oftaoclipboard implementation to prevent a crash.b2f83f03(#8402) UseArcinstead ofRcto prevent crashes on macOS.
Dependencies
- Upgraded to
tauri-utils@1.5.2 - Upgraded to
tauri-runtime@0.14.2
[0.14.2]
Enhancements
5e05236b(#8289) Added tracing for window startup, plugins,Window::eval, events, IPC, updater and custom protocol request handlers behind thetracingfeature flag.
[0.14.1]
Enhancements
9aa34ada(#7645) Add setting to switch tohttp://<scheme>.localhost/for custom protocols on Windows.
Bug Fixes
Dependencies
- Upgraded to
tauri-utils@1.5.0 - Upgraded to
tauri-runtime@0.14.1
[0.14.0]
New Features
c4d6fb4b(#2353) Added themaximizable,minimizableandclosablemethods toWindowBuilder.c4d6fb4b(#2353) Addedset_maximizable,set_minimizable,set_closable,is_maximizable,is_minimizableandis_closablemethods to theDispatchtrait.000104bc(#6472) AddWindow::is_focusedgetter.
Enhancements
d2710e9d(#6944) Unpintime,ignore, andwinnowcrate 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.
Bug Fixes
b41b57eb(#7105) Fix panics when registering an invalid global shortcuts or checking it is registered and return proper errors instead.
What's Changed
[0.13.0]
- Added the
additional_browser_argsoption when creating a window. - Added the
content_protectedoption when creating a window andWindow::set_content_protectedto change it at runtime. - Added
Builder::device_event_filterandApp::set_device_event_filtermethods. - Fixes tray events not being delivered.
- Add
is_minimized()window method. - Disable cursor mouse events on Linux.
- Bump minimum supported Rust version to 1.60.
- Pin raw-window-handle to 0.5.0 to keep MSRV.
- Add
titlegetter on window. - Added
TrayHandle::set_tooltipandSystemTray::with_tooltip. - Added window's
url()getter. - On Windows, change webview theme based on Window theme for more accurate
prefers-color-schemesupport. - On Windows, Fix missing
WindowEvent::FocusedinApp::runcallback. - Implement the webview navigation handler.
[0.12.3]
- Block remote URLs from accessing the IPC.
- 9c0593c33 feat(core): block remote URLs from accessing the IPC on 2023-04-12
[0.12.2]
- Fix compatibility with older Linux distributions.
- Update wry to 0.23.
- fdcd7733 chore(deps): update wry to 0.23 on 2022-12-08
[0.12.1]
- Fix
allowlist > app > show/hidealways disabled whenallowlist > app > all: false.
[0.12.0]
- Add
accept_first_mouseoption for macOS windows. - Disable automatic window tabbing on macOS when the
tabbing_identifieroption is not defined, the window is transparent or does not have decorations. - Drop the WebContext when the WebView is dropped.
- Readd the option to create an unfocused window via the
focusedmethod. Thefocusfunction has been deprecated. - Add
hidden_titleoption for macOS windows. - Custom protocol headers are now implemented on Linux when running on webkit2gtk 2.36 or above.
- Added
Runtime::show(),RuntimeHandle::show(),Runtime::hide(),RuntimeHandle::hide()for hiding/showing the entire application on macOS. - Fix regression in
SystemTray::with_menu_on_left_click - Added
tabbing_identifierto the window builder on macOS. - Add
title_bar_styleoption for macOS windows. - Fix regression introduce in tauri@1.1 which prevented removing tray icon when the app exits on Windows.
- Added methods to set the system tray title on macOS.
- Added the
user_agentoption when creating a window.
[0.11.2]
- Block remote URLs from accessing the IPC.
- 58ea0b452 feat(core): block remote URLs from accessing the IPC on 2023-04-12
[0.11.1]
- Add missing allowlist config for
set_cursor_grab,set_cursor_visible,set_cursor_iconandset_cursor_positionAPIs.
[0.11.0]
- Ignore window events with unknown IDs.
- 0668dd42 fix(tauri-runtime-wry): ignore events on unknown windows on 2022-08-29
- Implement theme APIs for Linux.
- Changed
windowsmap to be stored in aRefCellinstead of aMutex. - Added APIs to create a system tray at runtime.
- Update windows to 0.39.0 and webview2-com to 0.19.1.
[0.10.3]
- Block remote URLs from accessing the IPC.
- fa90214b0 feat(core): block remote URLs from accessing the IPC on 2023-04-12
[0.10.2]
- Disable drag-n-drop of tao based on
fileDropEnabledvalue. - Added option to disable tray menu on left click on macOS.
[0.10.1]
- Fixes a deadlock on the file drop handler.
- Send theme value only once on the getter function implementation on macOS.
- Fixes a deadlock when the window focus change on Windows.
[0.10.0]
- Implement
raw_window_handle::HasRawWindowHandleon Linux. - Moved the window and menu event listeners to the window struct.
- Refactored the
tauri-runtime-wryplugin interface. - Removed the
hwndandns_windowfunctions fromDispatchin favor ofraw_window_handle. - The theme API is now implemented on macOS 10.14+.
- Suppress unused variable warning in release builds.
- Update tao to 0.12 and wry to 0.19.
- Fixes deadlocks when using window setters in the main thread.
[0.9.0]
- Upgrade to
stable!
[0.8.1]
- Add
Menu::os_defaultwhich will create a menu filled with default menu items and submenus.
[0.8.0]
- Removed
TrayIconand renamedWindowIcontoIcon, a shared type for both icons.
[0.7.0]
- Breaking change: Removed the
gtk-trayandayatana-trayCargo features.
[0.6.0]
- Account the monitor position when centering a window.
- Update
windows-rsto0.37.0, which requires Rust 1.61.0+.
[0.5.2]
- Use the event loop proxy to create a window so it doesn't deadlock on Windows.
[0.5.1]
- Added the
pluginmethod to theWryruntime, allowing extensions to the event loop. - Update wry to 0.16.2 and webkit2gtk to 0.18.0.
[0.5.0]
- The file drop event payloads are now percent-decoded.
- Fixes a crash when using the menu with the inspector window focused on macOS. In this case the
window_idwill be the id of the first app window. - Fixes a freeze when calling
set_sizein the main thread on Windows. - Expose methods to access the underlying native handles of the webview.
[0.4.0]
- *Breaking change:: Added the
clipboardCargo feature. - Expose Window cursor APIs
set_cursor_grab,set_cursor_visible,set_cursor_iconandset_cursor_position. - Fixes a panic when using the
create_tao_windowAPI. - Fixes a panic when a menu event is triggered when all windows are minimized on macOS.
- Fixes a rendering issue when resizing the window with the devtools open.
- *Breaking change:: Added the
global-shortcutCargo feature. - Added
WindowEvent::ThemeChanged(theme). - Added
themegetter onWindow. - Added
themesetter to the WindowBuilder. - Create webview immediately when executed in the main thread.
[0.3.5]
- Fixes
WindowEvent::Destroyednot firing.
[0.3.4]
- Added
close_devtoolsandis_devtools_openAPIs to theDispatchtrait. - Emit
RunEvent::Exitontao::event::Event::LoopDestroyedinstead of afterRunEvent::ExitRequested. - Breaking change: The
MenuItem::Aboutvariant is now associated with a tuple value(String, AboutMetadata). - Support window parenting on macOS
- The file drop event is now part of the
WindowEventenum instead of a having a dedicated handler. - Breaking change: Use the dedicated
WindowEventenum onRunEvent. - Added
create_proxyto theRuntimeandRuntimeHandletraits. - Allow specifying a user event type for the event loop message.
- Use a random window id instead of
tao::window::WindowIdto not block the thread waiting for the event loop to process the window creation. - Update
wryto0.14andtaoto0.7. - Added the
WindowEvent::FileDropvariant.
[0.3.3]
- Fixes a deadlock on the
Focusedevent when the window is not visible. - Breaking change: Move
icoandpngparsing behindicon-icoandicon-pngCargo features. - Print a warning to stderr if the window transparency has been set to true but
macos-private-apiis not enabled.
[0.3.2]
- Fix requirements for
RuntimeHandle,ClipboardManager,GlobalShortcutHandleandTrayHandle.
[0.3.1]
- Change default value for the
freezePrototypeconfiguration tofalse.
[0.3.0]
- Fix
window.centerpanic when window size is bigger than screen size. - Enable non-session cookie persistence on Linux.
- Fixes a deadlock when creating a window from a menu event handler.
- Fixes
WindowEvent::FocusandWindowEvent::Blurevents not firing. - Use webview's inner_size instead of window's value to get the correct size on macOS.
- Reimplement
remove_system_trayon Windows to drop theSystemTrayto run its cleanup code. - Replace
WindowBuilder'shas_menuwithget_menu. - Fix empty header from CORS on Linux.
- The
run_returnAPI is now available on Linux. - Allow window, global shortcut and clipboard APIs to be called on the main thread.
- Change event loop callbacks definition to allow callers to move in mutable values.
- Breaking change: Add
macos-private-apifeature flag, enabled viatauri.conf.json > tauri > macOSPrivateApi. - Refactor
create_tao_windowAPI to returnWeak<Window>instead ofArc<Window>.- c1494b35 refactor: return Weak on create_tao_window on 2021-08-31
- Added
any_threadconstructor on theRuntimetrait (only possible on Linux and Windows). - Added
run_on_main_threadAPI onRuntimeHandle. - Breaking change: Renamed the
RPCinterface toIPC. - Added
open_devtoolsto theDispatchertrait. - The minimum Rust version is now
1.56. - Replace all of the
winapicrate references with thewindowscrate, and replacewebview2andwebview2-syswithwebview2-comandwebview2-com-sysbuilt with thewindowscrate. This goes along with updates to the TAO and WRYnextbranches. - Update the
windowscrate to 0.25.0, which comes with pre-built libraries. WRY and Tao can both reference the same types directly from thewindowscrate instead of sharing bindings inwebview2-com-sys. - This is a temporary fix of null pointer crash on
get_contentof web resource request. We will switch it back once upstream is updated. - Update wry to 0.13.
[0.2.1]
- Migrate to latest custom protocol allowing
Partial contentstreaming and Header parsing.
[0.2.0]
-
Fix blur/focus events being incorrect on Windows.
-
Add
ExitRequestedevent that allows preventing the app from exiting when all windows are closed, and anAppHandle.exit()function to exit the app manually. -
Update gtk and its related libraries to v0.14. This also remove requirements of
clangas build dependency. -
Implement
Debugon public API structs and enums. -
Fix the error "cannot find type MenuHash in this scope"
-
Panic when a dispatcher getter method (
Window,GlobalShortcutHandle,ClipboardManagerandMenuHandleAPIs) 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
ResumedandMainEventsClearedvariants to theRunEventenum. -
Adds
set_activation_policyAPI to theRuntimetrait (macOS only). -
Allow creation of empty Window with
create_tao_window()and management withsend_tao_window_event()on the AppHandler. -
- Support macOS tray icon template to adjust automatically based on taskbar color.
-
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::Readyon therun()callback. Triggered once when the event loop is ready. -
Add webdriver support to Tauri.
[0.1.4]
- Allow preventing window close when the user requests it.
- Fixes SVG loading on custom protocol.
- Fixes
centerandfocusnot being allowed intauri.conf.json > tauri > windowsand ignored inWindowBuilderWrapper. - Expose
gtk_windowgetter. - Remove a few locks requirement in tauri-runtime-wry
- Fix macOS high CPU usage.
- Bump
wry0.11 and fix focus integration to make it compatible with tao 0.4. Paramshas 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 parameterParamsnow useRuntimeinstead. If you use thewryfeature, then types with aRuntimegeneric parameter should default toWry, letting you omit the explicit type and let the compiler infer it instead.
tauri:
- See
Paramsnote - If you were using
Paramsinside a function parameter or definition, all references to it have been replaced with a simple runtime that defaults toWry. If you are not using a custom runtime, just removeParamsfrom 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. - If you were using custom types for
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 anInto<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:
- (internal) Added private
default_runtimeproc macro to allow us to give item definitions a custom runtime only when the specified feature is enabled.
tauri-runtime:
- See
Paramsnote - Removed
Params,MenuId,Tag,TagRef. - Added
menu::{MenuHash, MenuId, MenuIdRef}as type aliases for the internal type that menu types now use.- All previous menu items that had a
MenuIdgeneric now use the underlyingMenuIdtype without a generic.
- All previous menu items that had a
Runtime,RuntimeHandle, andDispatchhave no more generic parameter oncreate_window(...)and instead use theRuntimetype directlyRuntime::system_trayhas no moreMenuIdgeneric and uses the string basedSystemTraytype directly.- (internal)
CustomMenuItem::id_value()is now hashed on creation and exposed as theidfield with typeMenuHash.
tauri-runtime-wry:
- See
Paramsnote - update menu and runtime related types to the ones changed in
tauri-runtime.
tauri-utils:
Assets::getsignature has changed to take a&AssetKeyinstead ofimpl Into<AssetKey>to become trait object safe.- fd8fab50 refactor(core): remove
Paramsand replace with strings (#2191) on 2021-07-15
[0.1.3]
Windowis nowSend + Syncon Windows.
[0.1.2]
- Adds
clipboardAPIs (write and read text). - Fixes window event being emitted to all windows listeners.
- Panic on window getters usage on the main thread when the event loop is not running and document it.
- Adds
focusAPI to the WindowBuilder. - Adds support to PNG icons.
- Adds
is_decoratedgetter on Window. - Adds
is_resizablegetter on Window. - Adds
is_visiblegetter on Window. - Removes
imagedependency. For now only.icoicons on Windows are supported, and we'll implement other types on demand to optimize bundle size. - The
run_on_main_threadAPI now uses WRY's UserEvent, so it wakes the event loop. - Adds global shortcut interfaces.
- Adds
request_user_attentionAPI to theDispatchertrait. - Adds
fn run_iteration(macOS and Windows only) to the Runtime trait. - Adds
show_menu,hide_menuandis_menu_visibleAPIs to theDispatchertrait. - Adds
set_focusAPI on Window. - Adds
set_skip_taskbarAPI on Window. - Update
wryto v0.10.0 and replace the removeddispatch_scriptandevaluate_scriptmethods with the newevaluate_scriptmethod inhandle_event_loop. - Adds
skip_taskbarAPI to the WindowBuilder. - Adds
Window#centerandWindowBuilder#centerAPIs. - Adds
parent_windowandowner_windowsetters to theWindowBuilder(Windows only). - Adds window native handle getter (HWND on Windows).
[0.1.1]
- Fixes
system-trayfeature usage. - Fixes webview transparency.
[0.1.0]
- Breaking:
Contextfields are now private, and is expected to be created throughContext::new(...). All fields previously available throughContextare now public methods. tauri-runtime-wryinitial release.