Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish New Versions #532

Merged
merged 1 commit into from
Sep 13, 2022
Merged

Publish New Versions #532

merged 1 commit into from
Sep 13, 2022

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Aug 16, 2022

Version Updates

Merging this PR will release new versions of the following packages based on your change files.

tao

[0.14.0]

  • Implement "always on bottom" as contrary to "always on top".
  • Fix calling android functions when package name contained escaped underscore.
    • 6d8cc7e3 fix(android): unescape escaped underscore in package name (#531) on 2022-08-16
  • Add Window::set_content_protection for macOS and Windows.
    • 802146fb feat: implement set_content_protection, closes #550 (#551) on 2022-09-04
    • Add DeviceEventFilter on Windows.
  • Breaking: On Windows, device events are now ignored for unfocused windows by default, use EventLoopWindowTarget::set_device_event_filter to set the filter level.
  • 5bbd4f8f Add DeviceEventFilter on Windows (#465) on 2022-08-17
  • Fix system tray creation after event loop starts on macOS.
    • 759b7db3 fix(macos): retain tray to prevent segfault when event loop is running (#539) on 2022-08-20
  • Fix resize doesn't work when calling with resizable. Also add platform specific note to set_resizable.
    On Linux, most size methods like maximized are async and do not work well with calling
    sequentailly. For setting inner or outer size, you don't need to set resizable to true before
    it. It can resize no matter what. But if you insist to do so, it has a 100, 100 minimum
    limitation somehow. For maximizing, it requires resizable is true. If you really want to set
    resizable to false after it. You might need a mechanism to check the window is really
    maximized.
    • 4524d5d3 fix(Linux): resize doesn't work when calling with resizable, fix #545 (#553) on 2022-09-08
  • Add Window::is_focused.
  • On Linux, fix global shortcut are never triggered when a Lock key is ON, eg. NumLock, CapsLock.
    • 07e3c1f5 fix(linux/globalShorcut): extract needed mods from event state, closes #307, closes #537 (#538) on 2022-08-19
    • 871ad037 chore: remove changefile, bug still exists on 2022-08-20
    • 7e5556e0 fix(linux/globalShortcut): grab the shortcut with extra mods, closes #307 (#540) on 2022-08-20
  • Disables the global shortcut manager on wayland as its X11-specific.
    • 27ab6f4d fix(linux/globalShortcut): disable on wayland (#543) on 2022-08-26
  • Added SystemTrayExtMacOS::set_title to SystemTray and SystemTrayBuilderExtMacOS::with_title to set the tray icon title on MacOS
    • 972307dd feat: added text support to system tray for macos, closes #65 (#554) on 2022-09-10
  • Update windows-rs to the latest 0.39.0 release.

The alloc feature has been removed, which means it no longer accepts Rust String or &str parameters and implicitly converts them to PWSTR or PSTR.

For string literals, that feature was replaced with s!() and w!() macros which null terminate the string literal at compile time and convert to UTF-16 if necessary. The s!() macro is fine, however the w!() macro uses HSTRING types from WinRT for maximum compatibility with WinRT types. Since Tao only uses Win32 APIs, this change relies on util::encode_wide to convert to a Vec<u16> instead.

@github-actions github-actions bot requested a review from a team as a code owner August 16, 2022 01:41
@github-actions github-actions bot force-pushed the release branch 9 times, most recently from 51bc8a5 to ec54216 Compare August 23, 2022 22:00
@github-actions github-actions bot force-pushed the release branch 3 times, most recently from 13150e7 to de70f9f Compare August 31, 2022 14:41
@github-actions github-actions bot force-pushed the release branch 4 times, most recently from e15e355 to 04a382f Compare September 7, 2022 18:24
@lucasfernog lucasfernog merged commit 24222d8 into dev Sep 13, 2022
@lucasfernog lucasfernog deleted the release branch September 13, 2022 12:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment