You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hub/apps/develop/feeds/feed-provider-manifest.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,8 @@ Represents the registration for a single feed.
85
85
|**ContentUri**| string | Yes | The URI from which feed content is retrieved. | N/A |
86
86
|**Icon**| string | Yes | The package-relative path to an icon image file that is displayed in the Widgets Board. | N/A |
87
87
|**WebRequestFilter**| string | No | A web request filter string specifying the set of URLs for which the resource requests will be redirected to the feed provider's implementation of **IFeedResourceProvider**. The pattern is expressed using the format described in [Match Patterns](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns). The filter string in the registration must use [Punycode](https://en.wikipedia.org/wiki/Punycode) where necessary. All content types will be redirected when matched so the filter should only resolve to content intended to be obtained through the **IFeedResourceProvider** in the application. | N/A |
88
+
|**ExcludedRegions**| string | No | A list of regions where the feed should not be available. Feeds can specify **ExcludedRegions** or **ExclusiveRegions** but must not specify both in a single feed definition. The value of the attribute is a comma separated list of two character region codes.| N/A |
89
+
|**ExclusiveRegions**| string | No | A list of the only regions where the feed should be available. Feeds can specify **ExcludedRegions** or **ExclusiveRegions** but must not specify both in single feed definition. The value of the attribute is a comma separated list of two character region codes.| N/A |
88
90
89
91
90
92
You can use localized resources instead of string literals for the UI-facing attribute values. For more information, see [Localize strings in your UI and app package manifest](/windows/uwp/app-resources/localize-strings-ui-manifest).
@@ -101,10 +103,13 @@ The following code example illustrates the usage of the feed package manifest XM
Copy file name to clipboardExpand all lines: hub/apps/develop/widgets/widget-provider-manifest.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,6 +122,9 @@ Represents the registration for a single widget.
122
122
|**Description**| string | Yes | Short description of the widget. | N/A |
123
123
|**AllowMultiple**| boolean | No | Set to false if only one instance of this widget is supported. This attribute is optional and the default value is true. | true |
124
124
|**IsCustomizable**| boolean | No | Introduced in Windows App SDK 1.4. Set to true if your app supports widget customization. This causes the **Customize widget** button to be displayed in the widget's ellipsis menu. | false |
125
+
|**AdditionalInfoUri**| string | No | A URI that can be associated with the widget to be used when the user clicks on the title bar of the widget frame or when clicking the **Powered by** element of its context menu.| N/A |
126
+
|**ExcludedRegions**| string | No | A list of regions where the widget should not be available. Widgets can specify **ExcludedRegions** or **ExclusiveRegions** but must not specify both in a single widget definition. The value of the attribute is a comma separated list of two character region codes.| N/A |
127
+
|**ExclusiveRegions**| string | No | A list of the only regions where the widget should be available. Widgets can specify **ExcludedRegions** or **ExclusiveRegions** but must not specify both in single widget definition. The value of the attribute is a comma separated list of two character region codes.| N/A |
125
128
126
129
## Capabilities
127
130
@@ -200,6 +203,8 @@ The following code example illustrates the usage of the widget package manifest
0 commit comments