Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Version Updates
Merging this PR will bump all of the applicable packages based on your change files.
tao
[0.3.0]
clipboard
api exposingread_text
andwrite_text
.is_visible
getter onWindow
is_visible
getter toWindow
(#61) on 2021-05-27Accelerator
andGlobalShortcut
.WindowEvent::ModifiersChanged
is emitted when a new keyboard modifier is pressed. This is your responsibility to keep a local state. When the modifier is released,ModifiersState::empty()
is emitted.WindowEvent::KeyboardInput
as been refactored and is exposing the eventKeyEvent
.All menus (
ContextMenu
andMenuBar
), now includesAccelerator
support on Windows, macOS and Linux.New modules available:
keyboard
,accelerator
andplatform::global_shortcut
.Please refer to the docs and examples for more details.
System tray now expose
set_icon()
to update the tray icon after initialization. Thesystem_tray::SystemTrayBuilder
has been moved to the root of the package as a module and available on Windows, Linux and macOS, only when thetray
feature is enabled. Windows expose aremove()
function available withSystemTrayExtWindows
.Menu builder has been rebuilt from scratch, exposing 2 different types,
ContextMenu
andMenuBar
.Please refer to the docs and examples for more details.
skip_taskbar
is renamed toset_skip_taskbar
.set_skip_taskbar
is now available onWindow
and is no longer behind a PlatformExt.set_skip_taskbar
takes a boolean to either show or hide the window icon from the taskbar.with_skip_taskbar
toWindowBuilder
.with_skip_taskbar
on 2021-05-29skip_taskbar
implementation for windowsskip_taskabr
impl for windows (#78) on 2021-05-29