Skip to content

Commit 4c01ac5

Browse files
committed
Merged main into live
2 parents 57eb1ab + a44d0d8 commit 4c01ac5

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

hub/apps/windows-app-sdk/downloads.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ For all the latest Windows App SDK downloads, refer to the tables and links belo
3636

3737
| Version | Runtime downloads |
3838
|---|---|
39+
| [1.6 Preview2 (1.6.240821007-preview2) ](/windows/apps/windows-app-sdk/preview-channel#version-16-preview-2-160-preview2) <br/> 08/22/2024 <br/> [Release notes](/windows/apps/windows-app-sdk/preview-channel#version-16-preview-2-160-preview2) <br/> [Source](https://github.com/microsoft/microsoft-ui-xaml/releases/tag/winui3%2Frelease%2F1.6-preview2) | [Installer (x64)](https://aka.ms/windowsappsdk/1.6/1.6.240821007-preview2/windowsappruntimeinstall-x64.exe) <br/> [Installer (x86)](https://aka.ms/windowsappsdk/1.6/1.6.240821007-preview2/windowsappruntimeinstall-x86.exe) <br/> [Installer (arm64)](https://aka.ms/windowsappsdk/1.6/1.6.240821007-preview2/windowsappruntimeinstall-arm64.exe) <br/> [Redistributable](https://aka.ms/windowsappsdk/1.6/1.6.240821007-preview2/Microsoft.WindowsAppRuntime.Redist.1.6.zip) |
3940
| [1.6 Preview1 (1.6.240807006-preview1) ](/windows/apps/windows-app-sdk/preview-channel#version-16-preview-1-160-preview1) <br/> 08/13/2024 <br/> [Release notes](/windows/apps/windows-app-sdk/preview-channel#version-16-preview-1-160-preview1) <br/> [Source](https://github.com/microsoft/microsoft-ui-xaml/releases/tag/winui3%2Frelease%2F1.6-preview1) | [Installer (x64)](https://aka.ms/windowsappsdk/1.6/1.6.240807006-preview1/windowsappruntimeinstall-x64.exe) <br/> [Installer (x86)](https://aka.ms/windowsappsdk/1.6/1.6.240807006-preview1/windowsappruntimeinstall-x86.exe) <br/> [Installer (arm64)](https://aka.ms/windowsappsdk/1.6/1.6.240807006-preview1/windowsappruntimeinstall-arm64.exe) <br/> [Redistributable](https://aka.ms/windowsappsdk/1.6/1.6.240807006-preview1/Microsoft.WindowsAppRuntime.Redist.1.6.zip) |
4041

4142
## Experimental release

hub/apps/windows-app-sdk/preview-channel.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,47 @@ The preview channel includes releases of the Windows App SDK with [preview chann
2828
- [Preview channel release notes for the Windows App SDK 1.1](release-notes-archive/preview-channel-1.1.md)
2929
- [Preview channel release notes for the Windows App SDK 1.0](release-notes-archive/preview-channel-1.0.md)
3030

31+
## Version 1.6 Preview 2 (1.6.0-preview2)
32+
33+
This is the latest release of the preview channel for version 1.6.
34+
35+
In an existing Windows App SDK 1.5 (from the stable channel) app, you can update your Nuget package to 1.6.0-preview2 (see the **Update a package** section in [Install and manage packages in Visual Studio using the NuGet Package Manager](/nuget/consume-packages/install-use-packages-visual-studio#update-a-package)).
36+
37+
For the updated runtime and MSIX, see [Downloads for the Windows App SDK](./downloads.md).
38+
39+
### New features
40+
41+
#### Required C# project changes for 1.6-preview2
42+
43+
The C# project guidance from [1.6-preview1](#required-c-project-changes-for-16-preview1) is also required for this release.
44+
45+
#### Native AOT support
46+
47+
1.6-preview2 includes significant changes to update to the released [Microsoft.Windows.CsWinRT](https://www.nuget.org/packages/Microsoft.Windows.CsWinRT) version 2.1.1 and make building more reliable for native Ahead-Of-Time compilation.
48+
49+
#### Updated Edge WebView2 SDK Integration
50+
51+
This release now references the released 1.0.2651.64 version of the `Microsoft.Web.WebView2` package, which should fix issues hit with the prerelease version referenced in 1.6-preview1. As noted in 1.6-preview1, apps are now able to choose a newer version of the `Microsoft.Web.WebView2` package if desired.
52+
53+
### Bug Fixes
54+
55+
1.6-preview2 contains the following new fixes since 1.6-preview1's release:
56+
57+
- Fixed a crash when setting `InfoBar.IsOpen` in .xaml. For more info, see GitHub issue [#8391](https://github.com/microsoft/microsoft-ui-xaml/issues/8391).
58+
- Fixed an issue where HTML elements would lose pointer capture when the mouse moved outside of the `WebView2` bounds. For more info, see GitHub issue [#8677](https://github.com/microsoft/microsoft-ui-xaml/issues/8677).
59+
- Fixed an issue where drag and drop into a flyout with `ShouldConstrainToRootBounds=false` did not work. For more info, see GitHub issue [#9276](https://github.com/microsoft/microsoft-ui-xaml/issues/9276).
60+
- Fixed an issue where `ms-appx://` references did not work when `PublishSingleFile` is enabled. For more info, see GitHub issue [#9468](https://github.com/microsoft/microsoft-ui-xaml/issues/9468).
61+
- Fixed an issue where debugger symbols weren't working correctly for some binaries. For more info, see GitHub issue [#4633](https://github.com/microsoft/windowsappsdk/issues/4633).
62+
- Fixed a build break when using `/permissive-`. For more info, see GitHub issue [#4643](https://github.com/microsoft/windowsappsdk/issues/4643).
63+
- Fixed a couple of API breaking changes in 1.6-preview1 caused by renamed parameters. For more info, see GitHub issue [#4645](https://github.com/microsoft/windowsappsdk/issues/4645).
64+
- Fixed type conflict build breaks hit by some projects in 1.6-preview1, particularly with `Windows.UI.Text` types. For more info, see GitHub issue [#4646](https://github.com/microsoft/windowsappsdk/issues/4646).
65+
- Fixed an issue with resource lookups by control libraries in 1.6-preview1. For more info, see GitHub issue [#4649](https://github.com/microsoft/windowsappsdk/issues/4649).
66+
- Fixed a potential crash when subclassing `NavigationView`.
67+
- Fixed an issue where table borders in a `RichEditBox` would not correctly erase when scrolling or reducing the size of the table.
68+
- Fixed an issue where flyouts from `MediaTransportControls` had a fully transparent background.
69+
- Fixed an issue where dragging into a WebView2 would fail or drop in the wrong location on display scale factors other than 100% or when system text scaling is enabled.
70+
- Fixed an issue where `TextBox`/`RichEditBox` would not announce to Accessibility tools when input is blocked due to being at the `MaxLength` limit.
71+
3172
## Version 1.6 Preview 1 (1.6.0-preview1)
3273

3374
This is the latest release of the preview channel for version 1.6.

hub/apps/windows-app-sdk/release-channels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The latest version of the Windows App SDK ships via three release channels: Expe
1717
| | Channel | Description | Release cadence | Supported? | Latest release |
1818
|---------|---------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|------------|-----------------------------------------------------------------------------------------------------|
1919
| **** | Stable ([release notes](stable-channel.md)) | This channel is supported for use by apps in production environments. It includes only stable APIs. | No more frequent than every six months<br>(+ servicing) | Yes | [1.5.6 (1.5.240802000)](stable-channel.md#version-156-15240802000) (08/13/2024) |
20-
| **❇️** | Preview ([release notes](preview-channel.md)) | This channel provides a preview of the next stable release. There may be breaking API changes between a given preview channel release and the next stable release. | At least one preview per stable version | No | [1.6.0-preview1](preview-channel.md#version-16-preview-1-160-preview1) (08/13/2024) |
20+
| **❇️** | Preview ([release notes](preview-channel.md)) | This channel provides a preview of the next stable release. There may be breaking API changes between a given preview channel release and the next stable release. | At least one preview per stable version | No | [1.6.0-preview2](preview-channel.md#version-16-preview-2-160-preview2) (08/22/2024) |
2121
| **🔄️** | Experimental ([release notes](experimental-channel.md)) | This channel includes experimental features that are in early stages of development. Experimental features may be removed from the next release, or may never be released. | As needed when requiring feedback for features in early design or prototype stages | No | [1.6.0-experimental2](experimental-channel.md#version-16-experimental-160-experimental2) (07/02/2024) |
2222

2323
For a comprehensive list of all current and previous releases of the Windows App SDK, including download locations, see [Downloads for the Windows App SDK](downloads.md).

0 commit comments

Comments
 (0)