chore(deps): update rust crate tao to 0.35.0#123
Merged
Conversation
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #123 +/- ##
==========================================
+ Coverage 71.97% 72.16% +0.18%
==========================================
Files 15 15
Lines 546 546
==========================================
+ Hits 393 394 +1
+ Misses 153 152 -1
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



This PR contains the following updates:
0.31.1→0.35.0Release Notes
tauri-apps/tao (tao)
v0.35.0Compare Source
4e7c2f4a(#1154 by @lucasfernog) Breaking change: The Android activity should now reference and call the following external functions:18040018(#1146 by @JeffTsang)Event::Resumedis now only emitted when the app is actually resumed (going back to foreground) so it won't be called on app startup.56e9840b(#1141 by @haecker-felix) Use the Linux XDG Desktop Portal to add support for the system color scheme. Needsdbusfeature flag.4e7c2f4a(#1154 by @lucasfernog) Added multi-window support for iOS and Android.Leverages scenes on iOS and Activity embedding on Android.
iOS:
Android:
9cea0358(#1155 by @lucasfernog) FireEvent::Openedon Android, which now requires the activity to call the onNewIntent(intent) external function.18040018(#1146 by @JeffTsang) Use WillEnterForeground instead of DidBecomeActive for Event::Resumed in iOS.v0.34.8Compare Source
2fb51231(#1182 by @Tunglies) Remove synchronous styleMask mutations in is_zoomed on macOSv0.34.7Compare Source
541cf20e(#1190 by @damadczar) fix(linux): exit cleanly when GtkApplication is a remote GIO instancev0.34.6Compare Source
a4837862(#1189 by @thomaseizinger) Downgrades several logs in the Windows backend from WARN to DEBUG.e1c9cb69(#1185 by @kanatapple) Prevent panics on Windows when a monitor handle becomes invalid during info retrieval.e196538f(#1165 by @Slinetrac) fix(windows): respect default app mode via registry in dark mode detectiona133504b(#1184 by @Tunglies) Replace NSString::from_str with ns_string macro in macOS. No user facing changes.v0.34.5Compare Source
92e22209(#1152 by @lucasfernog) EmitEvent::LoopDestroyedon activity destroy on Android.da1514be(#1150 by @Legend-Master) Fix maximized windows have empty edges when using auto hide task bar on Windowsv0.34.4Compare Source
25f2c58a(#1148 by @lucasfernog) TriggerWindowEvent::Destroyedwhen the Android activity is destroyed. In this case, the app should either exit by setting the control flow toControlFlow::ExitWithCodeor NOT call the create() external function when the activity is recreated andonCreateis called, handling how to recreate the app window via a separate hook that can leverage the existing tao event loop.v0.34.3Compare Source
0defcd01(#1132 by @Legend-Master) Exclude audit PDF file from the crate published to crates.io3969a1a4(#1138 by @aspcartman) On macOS, fixed an issue that caused the window background color to be applied incorrectly (typically black).28f5a96a(#1119 by @Legend-Master) FixWindowEvent::MouseWheeldoesn't account for mouse wheel speed settingsa1edbeb4(#1126 by @Legend-Master) EmitEvent::LoopDestroyedon receivingWM_ENDSESSIONmessage on Windowsv0.34.2Compare Source
60a47340(#1108 by @Simon-Laux) feat: MacOS: add universal applink supportby implementing
application:willContinueUserActivityWithType:andapplication:continueUserActivity:restorationHandler:,reusing the existing
Event::Opened { urls }event for the user facing api.v0.34.1Compare Source
f73c70fd(#1120 by @robertrpf) AddedWindowBuilder::with_focusableto allow creating unfocusable windows.f73c70fd(#1120 by @robertrpf) AddedWindow::set_focusable.v0.34.0Compare Source
773d324b(#1121 by @FabianLars) Fixed an issue that caused a panic on macOS when tao receivednilfrom the OS when trying to get the current NSScreen.ba65486a(#1107 by @Legend-Master) Fix initial position gets reset to 0 on Windows if it's accounted for the shadow4a085054(#1103 by @aurelj) Addedx11feature flag (enabled by default).v0.33.0Compare Source
dae6d887(#1100 by @Legend-Master) Updatedwindowsto0.61.v0.32.8Compare Source
b863d49c(#1058 by @1111mp) macOS: Addset_dock_visibilitymethod to support setting the visibility of the application in the dock.996e28df(#1090 by @lucasfernog) Fix crash when sending key event when macOS app has no window opened.dd9251a8(#1091 by @1111mp) FixWindow::theme()always returningTheme::LightandWindowEvent::ThemeChanged()not delivered on macOS.v0.32.7Compare Source
1951b9ab(#1083 by @gezihuzi) Fixed application crash during startup when certain window buttons are disabled on macOS.v0.32.6Compare Source
9d1da74b(#1080 by @amrbashir) Fix crash on Windows because of missing functions on older Windows systems, regression in 0.32v0.32.5Compare Source
08c9c4c6(#1078 by @amrbashir) FixWindow::set_focusregression on macOSv0.32.4Compare Source
4679d683(#1056 by @dgerhardt) On Windows 11, fix incorrect window positioning and sizing onWM_DPICHANGED.v0.32.3Compare Source
c91dcde7(#1075 by @Legend-Master) On Windows, fixWindow::inner_sizealways returns the restore size instead of the current size for maximized undecorated windowv0.32.2Compare Source
b296cf53(#1074 by @amrbashir) On Windows, addWindowExtWindows::has_undecorated_shadowto check if window has shadows for undecorated window or not.f4ec11d7(#1070 by @Legend-Master) Fix undecorated top left and right border resizing direction on Windowsv0.32.1Compare Source
1be722db(#1071 by @lucasfernog) Fix content protection on macOS crashing the app.v0.32.0Compare Source
94afde98(#1040 by @Teddytrombone) Add missing function keys F13-F24 to linux implementation36645136(#1050 by @FabianLars) Raised MSRV to 1.748c8f0e8b(#1049 by @madsmtm) Useobjc2.6fda4984(#1048 by @madsmtm) macOS: RemoveFrom<ActivationPolicy>implementation forcocoa::appkit::NSApplicationActivationPolicy.28f728c7(#1068 by @Legend-Master) Updatewindowsto 0.605cc92980(#1052 by @amrbashir) On Windows, fix regressionWindow::inner_sizereporting larger size than what's visible for undecorated window.5cc92980(#1052 by @amrbashir) On Windows, undecorated window with shadows, now have native resize handles outside of the window client area.Configuration
📅 Schedule: (in timezone America/New_York)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.