Skip to content

Commit 1bb25d3

Browse files
Merge pull request #5581 from MicrosoftDocs/main
Auto Publish – main to live - 2025-07-10 20:30 UTC
2 parents 807af63 + 9256733 commit 1bb25d3

File tree

4 files changed

+91
-40
lines changed

4 files changed

+91
-40
lines changed

hub/apps/develop/windows-integration/copilot-key-state.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The following example shows the **uap:Extension** registering the URI scheme "my
101101

102102
An app must be packaged in order to register as a Microsoft Copilot hardware key provider. For information on app packaging, see [An overview of Package Identity in Windows app](/windows/apps/desktop/modernize/package-identity-overview). Microsoft Copilot hardware key providers declare their registration information within the [uap3:AppExtension](/uwp/schemas/appxpackage/uapmanifestschema/element-uap3-appextension-manual). The **Name** attribute of the extension must be set to "com.microsoft.windows.copilotkeyprovider". To support the key state changes, apps must provide some additional entries to their **uap3:AppExtension** declaration.
103103

104-
Inside of the **uap3:AppExtension** element, add a [uap3:Properties](/uwp/schemas/appxpackage/uapmanifestschema/element-uap3-properties-manual) element with child elements **PressAndHoldStart** and **PressAndHoldStop**. The contents of these elements should be the URI of the protocol scheme registered in the manifest in the previous step. The query string arguments specify whether the URI is being launched because the user pressed and held the hot key or because the user released the hot key. The app uses these query string values during app activation to determine the correct action to take.
104+
Inside of the **uap3:AppExtension** element, add a [uap3:Properties](/uwp/schemas/appxpackage/uapmanifestschema/element-uap3-properties-manual) element with child elements **PressAndHoldStart** and **PressAndHoldStop**. The contents of these elements should be the URI of the protocol scheme registered in the manifest in the previous step. The query string arguments specify whether the URI is being launched because the user pressed and held the hot key or because the user released the hot key. The app uses these query string values during app activation to determine the correct action to take. Specifying the **SingleTap** element is optional but can be useful to determine if the app was launched from the Copilot hardware key.
105105

106106
```xml
107107
<!-- Package.appxmanifest -->
@@ -115,8 +115,9 @@ Inside of the **uap3:AppExtension** element, add a [uap3:Properties](/uwp/schema
115115
Description="App description"
116116
PublicFolder="Public">
117117
<uap3:Properties>
118-
<PressAndHoldStart>myapp-copilothotkey:?state=Down</PressAndHoldStart>
119-
<PressAndHoldStop>myapp-copilothotkey:?state=Up</PressAndHoldStop>
118+
<SingleTap>myapp-copilothotkey://?state=Tap</SingleTap>
119+
<PressAndHoldStart>myapp-copilothotkey://?state=Down</PressAndHoldStart>
120+
<PressAndHoldStop>myapp-copilothotkey:?//state=Up</PressAndHoldStop>
120121
</uap3:Properties>
121122
</ uap3:AppExtension>
122123
</uap3:Extension>
@@ -168,7 +169,7 @@ To add support for fast path invocation, update the "com.microsoft.windows.copil
168169
Description="App description"
169170
PublicFolder="Public">
170171
<uap3:Properties>
171-
<SingleTap MessageWParam="0"/>
172+
<SingleTap MessageWParam="0">myapp-copilothotkey://?state=Tap</SingleTap>
172173
<PressAndHoldStart MessageWParam="1">myapp-copilothotkey://?state=Down</PressAndHoldStart>
173174
<PressAndHoldStop MessageWParam="2">myapp-copilothotkey://?state=Up</PressAndHoldStop>
174175
</uap3:Properties>

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

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ The experimental channel includes releases of the Windows App SDK with [experime
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 experimental releases, see [Install tools for preview and experimental channels of the Windows App SDK](preview-experimental-install.md).
2121

22-
**Experimental channel release note archive:**
23-
24-
- [Experimental channel release notes for the Windows App SDK 1.7](release-notes-archive/experimental-channel-1.7.md)
25-
- [Experimental channel release notes for the Windows App SDK 1.6](release-notes-archive/experimental-channel-1.6.md)
26-
- [Experimental channel release notes for the Windows App SDK 1.5](release-notes-archive/experimental-channel-1.5.md)
27-
- [Experimental channel release notes for the Windows App SDK 1.4](release-notes-archive/experimental-channel-1.4.md)
28-
- [Experimental channel release notes for the Windows App SDK 1.3](release-notes-archive/experimental-channel-1.3.md)
29-
- [Experimental channel release notes for the Windows App SDK 1.2](release-notes-archive/experimental-channel-1.2.md)
30-
- [Experimental channel release notes for the Windows App SDK 1.0](release-notes-archive/experimental-channel-1.0.md)
31-
- [Experimental channel release notes for the Windows App SDK 0.8](release-notes-archive/experimental-channel-0.8.md)
32-
3322
## Version 1.8 Experimental (1.8.0-Experimental4)
3423

3524
### Use on-device AI with Windows AI APIs
@@ -467,6 +456,10 @@ Microsoft.Windows.Widgets.Feeds.Providers
467456

468457
## Version 1.8 Experimental (1.8.0-experimental3)
469458

459+
<details>
460+
461+
<summary>Expand to see details for the Windows App SDK 1.8 Experimental (1.8.0-experimental3) release</summary>
462+
470463
### Use on-device AI with Windows AI APIs
471464

472465
> [!IMPORTANT]
@@ -821,8 +814,14 @@ Microsoft.Windows.Widgets.Feeds.Providers
821814
IFeedManager3
822815
```
823816

817+
</details>
818+
824819
## Version 1.8 Experimental (1.8.0-experimental2)
825820

821+
<details>
822+
823+
<summary>Expand to see details for the Windows App SDK 1.8 Experimental (1.8.0-experimental2) release</summary>
824+
826825
### Use on-device AI with Windows AI APIs
827826

828827
> [!IMPORTANT]
@@ -1197,8 +1196,14 @@ Microsoft.Windows.Widgets.Providers
11971196
* If you're using the Microsoft.WindowsAppSDK.WinUI component package in its default self-contained mode, make sure to set the WebView2EnableCsWinRTProjection property to true when utilizing WebView2 APIs. This helps prevent version conflicts and avoids related warnings.
11981197
* When using the WindowsAppSDK component packages, you may notice a warning `NU1603` indicating the specified version of a dependent component package was not found, but another was resolved instead. This is expected with the experimental2 build and NuGet will correctly resolve a newer version of the package which will allow your project to build. If you treat warnings as errors, you can temporarily treat this specific warning as not an error by specifying the property `<WarningsNotAsErrors>NU1603</WarningsNotAsErrors>`.
11991198

1199+
</details>
1200+
12001201
## Version 1.8 Experimental (1.8.0-experimental1)
12011202

1203+
<details>
1204+
1205+
<summary>Expand to see details for the Windows App SDK 1.8 Experimental (1.8.0-experimental1) release</summary>
1206+
12021207
### Use on-device AI with Windows AI APIs
12031208

12041209
> [!IMPORTANT]
@@ -1568,8 +1573,24 @@ This release includes the following bug fixes:
15681573

15691574
- Fixed an issue where mouse wheel input is ignored if the "Scroll inactive windows when hovering over them" option in Windows Settings is disabled. For more info, see GitHub issue [#10091](https://github.com/microsoft/microsoft-ui-xaml/issues/10091).
15701575

1576+
</details>
1577+
1578+
## Archive of experimental channel release notes
15711579

1580+
<details>
1581+
1582+
<summary>Expand for links to archived experimental channel release notes</summary>
1583+
1584+
- [Experimental channel release notes for the Windows App SDK 1.7](release-notes-archive/experimental-channel-1.7.md)
1585+
- [Experimental channel release notes for the Windows App SDK 1.6](release-notes-archive/experimental-channel-1.6.md)
1586+
- [Experimental channel release notes for the Windows App SDK 1.5](release-notes-archive/experimental-channel-1.5.md)
1587+
- [Experimental channel release notes for the Windows App SDK 1.4](release-notes-archive/experimental-channel-1.4.md)
1588+
- [Experimental channel release notes for the Windows App SDK 1.3](release-notes-archive/experimental-channel-1.3.md)
1589+
- [Experimental channel release notes for the Windows App SDK 1.2](release-notes-archive/experimental-channel-1.2.md)
1590+
- [Experimental channel release notes for the Windows App SDK 1.0](release-notes-archive/experimental-channel-1.0.md)
1591+
- [Experimental channel release notes for the Windows App SDK 0.8](release-notes-archive/experimental-channel-0.8.md)
15721592

1593+
</details>
15731594

15741595
## Related topics
15751596

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

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,6 @@ The preview channel includes releases of the Windows App SDK with [preview chann
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-
**Preview channel release note archive:**
23-
24-
- [Preview channel release notes for the Windows App SDK 1.6](release-notes-archive/preview-channel-1.6.md)
25-
- [Preview channel release notes for the Windows App SDK 1.5](release-notes-archive/preview-channel-1.5.md)
26-
- [Preview channel release notes for the Windows App SDK 1.4](release-notes-archive/preview-channel-1.4.md)
27-
- [Preview channel release notes for the Windows App SDK 1.3](release-notes-archive/preview-channel-1.3.md)
28-
- [Preview channel release notes for the Windows App SDK 1.2](release-notes-archive/preview-channel-1.2.md)
29-
- [Preview channel release notes for the Windows App SDK 1.1](release-notes-archive/preview-channel-1.1.md)
30-
- [Preview channel release notes for the Windows App SDK 1.0](release-notes-archive/preview-channel-1.0.md)
31-
32-
33-
34-
3522
## Version 1.7 Preview 1 (1.7-preview1)
3623

3724
This is the latest release of the preview channel for version 1.7.
@@ -181,6 +168,22 @@ This release includes the following bug fixes:
181168
- Fixed a potential layout cycle crash in `StackLayout`. For more info, see GitHub issue [#9852](https://github.com/microsoft/microsoft-ui-xaml/issues/9852).
182169
- Fixed a potential crash in `ItemsView` when removing items. For more info, see GitHub issue [#9868](https://github.com/microsoft/microsoft-ui-xaml/issues/9868).
183170

171+
## Archive of preview channel release notes
172+
173+
<details>
174+
175+
<summary>Expand for links to archived preview channel release notes</summary>
176+
177+
- [Preview channel release notes for the Windows App SDK 1.6](release-notes-archive/preview-channel-1.6.md)
178+
- [Preview channel release notes for the Windows App SDK 1.5](release-notes-archive/preview-channel-1.5.md)
179+
- [Preview channel release notes for the Windows App SDK 1.4](release-notes-archive/preview-channel-1.4.md)
180+
- [Preview channel release notes for the Windows App SDK 1.3](release-notes-archive/preview-channel-1.3.md)
181+
- [Preview channel release notes for the Windows App SDK 1.2](release-notes-archive/preview-channel-1.2.md)
182+
- [Preview channel release notes for the Windows App SDK 1.1](release-notes-archive/preview-channel-1.1.md)
183+
- [Preview channel release notes for the Windows App SDK 1.0](release-notes-archive/preview-channel-1.0.md)
184+
185+
</details>
186+
184187
## Related topics
185188

186189
- [Stable channel](stable-channel.md)

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

Lines changed: 38 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ The stable channel provides releases of the Windows App SDK that are supported f
1515

1616
- 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).
1717

18-
**Stable channel release note archive:**
19-
20-
- [Stable channel release notes for the Windows App SDK 1.6](release-notes-archive/stable-channel-1.6.md)
21-
- [Stable channel release notes for the Windows App SDK 1.5](release-notes-archive/stable-channel-1.5.md)
22-
- [Stable channel release notes for the Windows App SDK 1.4](release-notes-archive/stable-channel-1.4.md)
23-
- [Stable channel release notes for the Windows App SDK 1.3](release-notes-archive/stable-channel-1.3.md)
24-
- [Stable channel release notes for the Windows App SDK 1.2](release-notes-archive/stable-channel-1.2.md)
25-
- [Stable channel release notes for the Windows App SDK 1.1](release-notes-archive/stable-channel-1.1.md)
26-
- [Stable channel release notes for the Windows App SDK 1.0](release-notes-archive/stable-channel-1.0.md)
27-
- [Stable channel release notes for the Windows App SDK 0.8](release-notes-archive/stable-channel-0.8.md)
28-
- [Stable channel release notes for the Windows App SDK 0.5](release-notes-archive/stable-channel-0.5.md)
29-
3018
## Downloads for the Windows App SDK
3119

3220
> [!NOTE]
@@ -40,6 +28,8 @@ For the updated runtime and MSIX, see [Downloads for the Windows App SDK](./down
4028

4129
### Version 1.7.3 (1.7.250606001)
4230

31+
This is the latest service release for Version 1.7 of the Windows App SDK.
32+
4333
#### Windows AI APIs
4434

4535
> [!IMPORTANT]
@@ -77,6 +67,10 @@ Microsoft.Windows.Widgets.Providers
7767

7868
### Version 1.7.2 (1.7.250513003)
7969

70+
<details>
71+
72+
<summary>Expand to see details for the Windows App SDK 1.7.2 (1.7.250513003) release</summary>
73+
8074
#### Windows AI APIs
8175

8276
> [!IMPORTANT]
@@ -200,8 +194,14 @@ Microsoft.Windows.Workloads
200194
WorkloadsContract
201195
```
202196

197+
</details>
198+
203199
### Version 1.7.1 (1.7.250401001)
204200

201+
<details>
202+
203+
<summary>Expand to see details for the Windows App SDK 1.7.1 (1.7.250401001) release</summary>
204+
205205
This is a servicing release of the Windows App SDK that includes critical bug fixes for the 1.7 release.
206206

207207
- Improved the telemetry for failure scenarios in WindowsAppRuntimeInstall-&lt;arch&gt;.exe. For more info, see GitHub issue [#5289](https://github.com/microsoft/WindowsAppSDK/pull/5289). ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): N/A, installer change)
@@ -216,8 +216,14 @@ This is a servicing release of the Windows App SDK that includes critical bug fi
216216
- Fixed a potential crash caused by WebView2::UpdateCoreWebViewVisibility sometimes triggering reentrancy. For more info, see GitHub issue [#10305](https://github.com/microsoft/microsoft-ui-xaml/issues/10305). ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): FixWebViewVisibilityReentrancyCrash)
217217
- Fixed an issue where app UI sometimes permanently freezes and can stop rendering due to the DispatcherQueue getting stuck. ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): FixRandomUIFreezeInDispatcher)
218218

219+
</details>
220+
219221
### Version 1.7.0 (1.7.250310001)
220222

223+
<details>
224+
225+
<summary>Expand to see details for the Windows App SDK 1.7.0 (1.7.250310001) release</summary>
226+
221227
The following sections describe new and updated features and known issues for version 1.7.
222228

223229
#### New Badge Notifications Feature
@@ -479,6 +485,26 @@ This release includes the following bug fixes:
479485
- Fixed an issue in 1.7-preview1 where popups no longer correctly moved with their parent window. For more info, see GitHub issue [#10386](https://github.com/microsoft/microsoft-ui-xaml/issues/10386).
480486
- Based on feedback from 1.7-preview1, renamed some properties on the new `TitleBar` control.
481487

488+
</details>
489+
490+
## Archive of stable channel release notes
491+
492+
<details>
493+
494+
<summary>Expand for links to archived experimental channel release notes</summary>
495+
496+
- [Stable channel release notes for the Windows App SDK 1.6](release-notes-archive/stable-channel-1.6.md)
497+
- [Stable channel release notes for the Windows App SDK 1.5](release-notes-archive/stable-channel-1.5.md)
498+
- [Stable channel release notes for the Windows App SDK 1.4](release-notes-archive/stable-channel-1.4.md)
499+
- [Stable channel release notes for the Windows App SDK 1.3](release-notes-archive/stable-channel-1.3.md)
500+
- [Stable channel release notes for the Windows App SDK 1.2](release-notes-archive/stable-channel-1.2.md)
501+
- [Stable channel release notes for the Windows App SDK 1.1](release-notes-archive/stable-channel-1.1.md)
502+
- [Stable channel release notes for the Windows App SDK 1.0](release-notes-archive/stable-channel-1.0.md)
503+
- [Stable channel release notes for the Windows App SDK 0.8](release-notes-archive/stable-channel-0.8.md)
504+
- [Stable channel release notes for the Windows App SDK 0.5](release-notes-archive/stable-channel-0.5.md)
505+
506+
</details>
507+
482508
## Related topics
483509

484510
- [Preview channel](preview-channel.md)

0 commit comments

Comments
 (0)