Skip to content

Commit b2995f1

Browse files
Release notes for 1.4-preview1 (#3675)
* Updating release notes and downloads for 1.4 experimental * Minor wording revisions * Release notes for 1.3.2 * Adding first release notes for 1.4-preview1
1 parent 40a6cf8 commit b2995f1

File tree

3 files changed

+86
-3
lines changed

3 files changed

+86
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ For all the latest Windows App SDK downloads, refer to the tables and links belo
2626
| [1.3.0 (1.3.230331000)](stable-channel.md#version-13) <br> 04/12/2023 <br> [Release notes](stable-channel.md#version-13) | [Installer (x64)](https://aka.ms/windowsappsdk/1.3/1.3.230331000/windowsappruntimeinstall-x64.exe) <br/> [Installer (x86)](https://aka.ms/windowsappsdk/1.3/1.3.230331000/windowsappruntimeinstall-x86.exe) <br/> [Installer (arm64)](https://aka.ms/windowsappsdk/1.3/1.3.230331000/windowsappruntimeinstall-arm64.exe) <br/> [Redistributable](https://aka.ms/windowsappsdk/1.3/1.3.230331000/Microsoft.WindowsAppRuntime.Redist.1.3.zip) |
2727

2828
## Preview release
29-
### Windows App SDK 1.3 Preview1
29+
### Windows App SDK 1.4 Preview1
3030

3131
| Version | Runtime downloads |
3232
|---|---|
33-
| [1.3 Preview1 (1.3.230228005-preview1) ](/windows/apps/windows-app-sdk/preview-channel#version-13-preview-1-130-preview1) <br> 03/07/2023 <br> [Release notes](/windows/apps/windows-app-sdk/preview-channel#version-13-preview-130-preview1) | [Installer (x64)](https://aka.ms/windowsappsdk/1.3/1.3.230228005-preview1/windowsappruntimeinstall-x64.exe) <br/> [Installer (x86)](https://aka.ms/windowsappsdk/1.3/1.3.230228005-preview1/windowsappruntimeinstall-x86.exe) <br/> [Installer (arm64)](https://aka.ms/windowsappsdk/1.3/1.3.230228005-preview1/windowsappruntimeinstall-arm64.exe) <br/> [Redistributable](https://aka.ms/windowsappsdk/1.3/1.3.230228005-preview1/Microsoft.WindowsAppRuntime.Redist.1.3.zip) |
33+
| [1.4 Preview1 (1.4.230628000-preview1) ](/windows/apps/windows-app-sdk/preview-channel#version-14-preview-1-140-preview1) <br> 07/06/2023 <br> [Release notes](/windows/apps/windows-app-sdk/preview-channel#version-14-preview-140-preview1) | [Installer (x64)](https://aka.ms/windowsappsdk/1.4/1.4.230628000-preview1/windowsappruntimeinstall-x64.exe) <br/> [Installer (x86)](https://aka.ms/windowsappsdk/1.4/1.4.230628000-preview1/windowsappruntimeinstall-x86.exe) <br/> [Installer (arm64)](https://aka.ms/windowsappsdk/1.4/1.4.230628000-preview1/windowsappruntimeinstall-arm64.exe) <br/> [Redistributable](https://aka.ms/windowsappsdk/1.4/1.4.230628000-preview1/Microsoft.WindowsAppRuntime.Redist.1.4.zip) |
3434

3535
## Experimental release
3636
### Windows App SDK 1.4 Experimental1

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

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,89 @@ The preview channel provides a preview of the next upcoming stable release. Ther
1919
- If you'd like to upgrade an existing app from an older version of the Windows App SDK to a newer version, see [Update existing projects to the latest release of the Windows App SDK](update-existing-projects-to-the-latest-release.md).
2020
- For documentation on preview releases, see [Install tools for preview and experimental channels of the Windows App SDK](preview-experimental-install.md).
2121

22+
## Version 1.4 Preview 1 (1.4.0-preview1)
23+
24+
This is the latest release of the preview channel for version 1.4.
25+
26+
In an existing Windows App SDK 1.3 (from the stable channel) app, you can update your Nuget package to 1.4.0-preview1 (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)).
27+
28+
For the updated runtime and MSIX, see [Downloads for the Windows App SDK](./downloads.md).
29+
30+
### New APIs in 1.4.0-preview1
31+
32+
Version 1.4-preview1 includes the following new APIs compared to the stable 1.3 release:
33+
34+
```C#
35+
Microsoft.UI.System
36+
37+
ThemeSettings
38+
```
39+
```C#
40+
Microsoft.UI.Xaml
41+
42+
Application
43+
ResourceManagerRequested
44+
45+
ResourceManagerRequestedEventArgs
46+
```
47+
```C#
48+
Microsoft.UI.Xaml.Automation.Peers
49+
50+
ItemContainerAutomationPeer
51+
```
52+
```C#
53+
Microsoft.UI.Xaml.Controls
54+
55+
ItemContainer
56+
```
57+
```C#
58+
Microsoft.UI.Xaml.Controls.Primitives
59+
60+
CommandBarFlyoutCommandBar
61+
SystemBackdrop
62+
SystemBackdropProperty
63+
```
64+
```C#
65+
Microsoft.UI.Xaml.Input
66+
67+
AccessKeyManager
68+
EnterDisplayMode
69+
```
70+
```C#
71+
Microsoft.Web.WebView2.Core
72+
73+
CoreWebView2
74+
LaunchingExternalUriScheme
75+
MemoryUsageTargetLevel
76+
77+
CoreWebView2File
78+
CoreWebView2LaunchingExternalUriSchemeEventArgs
79+
CoreWebView2MemoryUsageTargetLevel
80+
CoreWebView2PermissionKind
81+
WindowManagement
82+
83+
CoreWebView2Profile
84+
CookieManager
85+
IsGeneralAutofillEnabled
86+
IsPasswordAutosaveEnabled
87+
88+
CoreWebView2Settings
89+
IsReputationCheckingRequired
90+
91+
CoreWebView2WebMessageReceivedEventArgs
92+
AdditionalObjects
93+
```
94+
```C#
95+
Microsoft.Windows.Widgets.Providers
96+
97+
IWidgetProvider2
98+
IWidgetProviderAnalytics
99+
IWidgetProviderErrors
100+
WidgetAnalyticsInfoReportedArgs
101+
WidgetCustomizationRequestedArgs
102+
WidgetErrorInfoReportedArgs
103+
```
104+
22105
## Version 1.3 Preview 1 (1.3.0-preview1)
23106

24107
This is the latest release of the preview channel for version 1.3. This release includes previews for new features across WinAppSDK and several performance, security, accessibility and reliability bug fixes.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following table provides an overview of the different release channels. For
1616
| | Channel | Description | Release cadence | Supported? | Latest release |
1717
|---------|---------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|------------|-----------------------------------------------------------------------------------------------------|
1818
| **** | 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.3.2 (1.3.230602002)](stable-channel.md#version-13) (06/13/2023) |
19-
| **❇️** | 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.3.0-preview1](preview-channel.md#version-13-preview-1-130-preview1) (03/07/2023) |
19+
| **❇️** | 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.4.0-preview1](preview-channel.md#version-14-preview-1-140-preview1) (07/06/2023) |
2020
| **🔄️** | 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.4.0-experimental1](experimental-channel.md#version-14-experimental-140-experimental1) (05/23/2023) |
2121

2222
## Features available by release channel

0 commit comments

Comments
 (0)