win32more-Microsoft.WindowsAppSDK 0.6.1.7.250513003__py2.py3-none-any.whl → 0.6.1.8.250907003__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.

Files changed (25) hide show
  1. win32more/Microsoft/Foundation/__init__.py +1 -1
  2. win32more/Microsoft/UI/Content/__init__.py +10 -10
  3. win32more/Microsoft/UI/Input/__init__.py +43 -43
  4. win32more/Microsoft/UI/Xaml/__init__.py +2 -2
  5. win32more/Microsoft/Windows/AI/Foundation/__init__.py +46 -0
  6. win32more/Microsoft/Windows/AI/Imaging/__init__.py +36 -0
  7. win32more/Microsoft/Windows/AI/Text/__init__.py +178 -1
  8. win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py +2 -4
  9. win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +0 -11
  10. win32more/Microsoft/Windows/Foundation/__init__.py +220 -0
  11. win32more/Microsoft/Windows/Storage/Pickers/__init__.py +258 -0
  12. win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +8 -0
  13. win32more/Microsoft/Windows/Widgets/Providers/__init__.py +24 -0
  14. win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
  15. win32more/appsdk/versioninfo.py +2 -2
  16. win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  17. win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  18. win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  19. win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  20. win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  21. win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  22. {win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/METADATA +2 -2
  23. {win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/RECORD +25 -22
  24. {win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +5 -3
  25. {win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/WHEEL +0 -0
@@ -0,0 +1,258 @@
1
+ from __future__ import annotations
2
+ from win32more.winrt.prelude import *
3
+ import win32more.Microsoft.UI
4
+ import win32more.Microsoft.Windows.Storage.Pickers
5
+ import win32more.Windows.Foundation
6
+ import win32more.Windows.Foundation.Collections
7
+ class FileOpenPicker(ComPtr):
8
+ extends: IInspectable
9
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker
10
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FileOpenPicker'
11
+ def __init__(self, *args, **kwargs):
12
+ if kwargs:
13
+ super().__init__(**kwargs)
14
+ elif len(args) == 1:
15
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker.CreateInstance(*args))
16
+ else:
17
+ raise ValueError('no matched constructor')
18
+ @winrt_factorymethod
19
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker: ...
20
+ @winrt_mixinmethod
21
+ def get_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
22
+ @winrt_mixinmethod
23
+ def put_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
24
+ @winrt_mixinmethod
25
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
26
+ @winrt_mixinmethod
27
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
28
+ @winrt_mixinmethod
29
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> WinRT_String: ...
30
+ @winrt_mixinmethod
31
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: WinRT_String) -> Void: ...
32
+ @winrt_mixinmethod
33
+ def get_FileTypeFilter(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.Collections.IVector[WinRT_String]: ...
34
+ @winrt_mixinmethod
35
+ def PickSingleFileAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
36
+ @winrt_mixinmethod
37
+ def PickMultipleFilesAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]]: ...
38
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
39
+ FileTypeFilter = property(get_FileTypeFilter, None)
40
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
41
+ ViewMode = property(get_ViewMode, put_ViewMode)
42
+ class FileSavePicker(ComPtr):
43
+ extends: IInspectable
44
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker
45
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FileSavePicker'
46
+ def __init__(self, *args, **kwargs):
47
+ if kwargs:
48
+ super().__init__(**kwargs)
49
+ elif len(args) == 1:
50
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker.CreateInstance(*args))
51
+ else:
52
+ raise ValueError('no matched constructor')
53
+ @winrt_factorymethod
54
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker: ...
55
+ @winrt_mixinmethod
56
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
57
+ @winrt_mixinmethod
58
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
59
+ @winrt_mixinmethod
60
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
61
+ @winrt_mixinmethod
62
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
63
+ @winrt_mixinmethod
64
+ def get_FileTypeChoices(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, win32more.Windows.Foundation.Collections.IVector[WinRT_String]]: ...
65
+ @winrt_mixinmethod
66
+ def get_DefaultFileExtension(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
67
+ @winrt_mixinmethod
68
+ def put_DefaultFileExtension(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
69
+ @winrt_mixinmethod
70
+ def get_SuggestedFileName(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
71
+ @winrt_mixinmethod
72
+ def put_SuggestedFileName(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
73
+ @winrt_mixinmethod
74
+ def get_SuggestedFolder(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> WinRT_String: ...
75
+ @winrt_mixinmethod
76
+ def put_SuggestedFolder(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: WinRT_String) -> Void: ...
77
+ @winrt_mixinmethod
78
+ def PickSaveFileAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
79
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
80
+ DefaultFileExtension = property(get_DefaultFileExtension, put_DefaultFileExtension)
81
+ FileTypeChoices = property(get_FileTypeChoices, None)
82
+ SuggestedFileName = property(get_SuggestedFileName, put_SuggestedFileName)
83
+ SuggestedFolder = property(get_SuggestedFolder, put_SuggestedFolder)
84
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
85
+ class FolderPicker(ComPtr):
86
+ extends: IInspectable
87
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker
88
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FolderPicker'
89
+ def __init__(self, *args, **kwargs):
90
+ if kwargs:
91
+ super().__init__(**kwargs)
92
+ elif len(args) == 1:
93
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FolderPicker.CreateInstance(*args))
94
+ else:
95
+ raise ValueError('no matched constructor')
96
+ @winrt_factorymethod
97
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFolderPickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FolderPicker: ...
98
+ @winrt_mixinmethod
99
+ def get_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
100
+ @winrt_mixinmethod
101
+ def put_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
102
+ @winrt_mixinmethod
103
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
104
+ @winrt_mixinmethod
105
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
106
+ @winrt_mixinmethod
107
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> WinRT_String: ...
108
+ @winrt_mixinmethod
109
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: WinRT_String) -> Void: ...
110
+ @winrt_mixinmethod
111
+ def PickSingleFolderAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFolderResult]: ...
112
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
113
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
114
+ ViewMode = property(get_ViewMode, put_ViewMode)
115
+ class IFileOpenPicker(ComPtr):
116
+ extends: IInspectable
117
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileOpenPicker'
118
+ _iid_ = Guid('{9d00f175-c783-51bd-8c93-fb63695d3abc}')
119
+ @winrt_commethod(6)
120
+ def get_ViewMode(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
121
+ @winrt_commethod(7)
122
+ def put_ViewMode(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
123
+ @winrt_commethod(8)
124
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
125
+ @winrt_commethod(9)
126
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
127
+ @winrt_commethod(10)
128
+ def get_CommitButtonText(self) -> WinRT_String: ...
129
+ @winrt_commethod(11)
130
+ def put_CommitButtonText(self, value: WinRT_String) -> Void: ...
131
+ @winrt_commethod(12)
132
+ def get_FileTypeFilter(self) -> win32more.Windows.Foundation.Collections.IVector[WinRT_String]: ...
133
+ @winrt_commethod(13)
134
+ def PickSingleFileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
135
+ @winrt_commethod(14)
136
+ def PickMultipleFilesAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]]: ...
137
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
138
+ FileTypeFilter = property(get_FileTypeFilter, None)
139
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
140
+ ViewMode = property(get_ViewMode, put_ViewMode)
141
+ class IFileOpenPickerFactory(ComPtr):
142
+ extends: IInspectable
143
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileOpenPickerFactory'
144
+ _iid_ = Guid('{315e86d7-d7a2-5d81-b379-7af78207b1af}')
145
+ @winrt_commethod(6)
146
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker: ...
147
+ class IFileSavePicker(ComPtr):
148
+ extends: IInspectable
149
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileSavePicker'
150
+ _iid_ = Guid('{79f1f4df-741b-59b2-aa06-fe9ac817b7dd}')
151
+ @winrt_commethod(6)
152
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
153
+ @winrt_commethod(7)
154
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
155
+ @winrt_commethod(8)
156
+ def get_CommitButtonText(self) -> WinRT_String: ...
157
+ @winrt_commethod(9)
158
+ def put_CommitButtonText(self, value: WinRT_String) -> Void: ...
159
+ @winrt_commethod(10)
160
+ def get_FileTypeChoices(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, win32more.Windows.Foundation.Collections.IVector[WinRT_String]]: ...
161
+ @winrt_commethod(11)
162
+ def get_DefaultFileExtension(self) -> WinRT_String: ...
163
+ @winrt_commethod(12)
164
+ def put_DefaultFileExtension(self, value: WinRT_String) -> Void: ...
165
+ @winrt_commethod(13)
166
+ def get_SuggestedFileName(self) -> WinRT_String: ...
167
+ @winrt_commethod(14)
168
+ def put_SuggestedFileName(self, value: WinRT_String) -> Void: ...
169
+ @winrt_commethod(15)
170
+ def get_SuggestedFolder(self) -> WinRT_String: ...
171
+ @winrt_commethod(16)
172
+ def put_SuggestedFolder(self, value: WinRT_String) -> Void: ...
173
+ @winrt_commethod(17)
174
+ def PickSaveFileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
175
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
176
+ DefaultFileExtension = property(get_DefaultFileExtension, put_DefaultFileExtension)
177
+ FileTypeChoices = property(get_FileTypeChoices, None)
178
+ SuggestedFileName = property(get_SuggestedFileName, put_SuggestedFileName)
179
+ SuggestedFolder = property(get_SuggestedFolder, put_SuggestedFolder)
180
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
181
+ class IFileSavePickerFactory(ComPtr):
182
+ extends: IInspectable
183
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileSavePickerFactory'
184
+ _iid_ = Guid('{2e256696-30b6-5a05-a8f5-c752db6dd268}')
185
+ @winrt_commethod(6)
186
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker: ...
187
+ class IFolderPicker(ComPtr):
188
+ extends: IInspectable
189
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFolderPicker'
190
+ _iid_ = Guid('{3ef0d1ca-97c6-5873-8ea2-02c450174290}')
191
+ @winrt_commethod(6)
192
+ def get_ViewMode(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
193
+ @winrt_commethod(7)
194
+ def put_ViewMode(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
195
+ @winrt_commethod(8)
196
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
197
+ @winrt_commethod(9)
198
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
199
+ @winrt_commethod(10)
200
+ def get_CommitButtonText(self) -> WinRT_String: ...
201
+ @winrt_commethod(11)
202
+ def put_CommitButtonText(self, value: WinRT_String) -> Void: ...
203
+ @winrt_commethod(12)
204
+ def PickSingleFolderAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFolderResult]: ...
205
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
206
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
207
+ ViewMode = property(get_ViewMode, put_ViewMode)
208
+ class IFolderPickerFactory(ComPtr):
209
+ extends: IInspectable
210
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFolderPickerFactory'
211
+ _iid_ = Guid('{e1550d89-b389-5886-8395-022b1588d6a8}')
212
+ @winrt_commethod(6)
213
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FolderPicker: ...
214
+ class IPickFileResult(ComPtr):
215
+ extends: IInspectable
216
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IPickFileResult'
217
+ _iid_ = Guid('{e6f2e3d6-7bb0-5d81-9e7d-6fd35a1f25ab}')
218
+ @winrt_commethod(6)
219
+ def get_Path(self) -> WinRT_String: ...
220
+ Path = property(get_Path, None)
221
+ class IPickFolderResult(ComPtr):
222
+ extends: IInspectable
223
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IPickFolderResult'
224
+ _iid_ = Guid('{6f7fd316-fe29-59d1-9343-c49cf5cde680}')
225
+ @winrt_commethod(6)
226
+ def get_Path(self) -> WinRT_String: ...
227
+ Path = property(get_Path, None)
228
+ class PickFileResult(ComPtr):
229
+ extends: IInspectable
230
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IPickFileResult
231
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.PickFileResult'
232
+ @winrt_mixinmethod
233
+ def get_Path(self: win32more.Microsoft.Windows.Storage.Pickers.IPickFileResult) -> WinRT_String: ...
234
+ Path = property(get_Path, None)
235
+ class PickFolderResult(ComPtr):
236
+ extends: IInspectable
237
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IPickFolderResult
238
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.PickFolderResult'
239
+ @winrt_mixinmethod
240
+ def get_Path(self: win32more.Microsoft.Windows.Storage.Pickers.IPickFolderResult) -> WinRT_String: ...
241
+ Path = property(get_Path, None)
242
+ class PickerLocationId(Enum, Int32):
243
+ DocumentsLibrary = 0
244
+ ComputerFolder = 1
245
+ Desktop = 2
246
+ Downloads = 3
247
+ MusicLibrary = 5
248
+ PicturesLibrary = 6
249
+ VideosLibrary = 7
250
+ Objects3D = 8
251
+ Unspecified = 9
252
+ class PickerViewMode(Enum, Int32):
253
+ List = 0
254
+ Thumbnail = 1
255
+ StoragePickersContract: UInt32 = 65544
256
+
257
+
258
+ make_ready(__name__)
@@ -89,6 +89,8 @@ class FeedManager(ComPtr):
89
89
  def SendMessageToContent(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager2, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, message: WinRT_String) -> Void: ...
90
90
  @winrt_mixinmethod
91
91
  def TryShowAnnouncement(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager2, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcement: win32more.Microsoft.Windows.Widgets.Notifications.FeedAnnouncement) -> Void: ...
92
+ @winrt_mixinmethod
93
+ def TryRemoveAnnouncementById(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager3, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcementId: WinRT_String) -> Void: ...
92
94
  @winrt_classmethod
93
95
  def GetDefault(cls: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManagerStatics) -> win32more.Microsoft.Windows.Widgets.Feeds.Providers.FeedManager: ...
94
96
  class FeedMessageReceivedArgs(ComPtr):
@@ -288,6 +290,12 @@ class IFeedManager2(ComPtr):
288
290
  def SendMessageToContent(self, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, message: WinRT_String) -> Void: ...
289
291
  @winrt_commethod(7)
290
292
  def TryShowAnnouncement(self, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcement: win32more.Microsoft.Windows.Widgets.Notifications.FeedAnnouncement) -> Void: ...
293
+ class IFeedManager3(ComPtr):
294
+ extends: IInspectable
295
+ _classid_ = 'Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager3'
296
+ _iid_ = Guid('{a6af915b-0cdc-46f1-a4d6-10d8c644984a}')
297
+ @winrt_commethod(6)
298
+ def TryRemoveAnnouncementById(self, feedProviderDefinitionId: WinRT_String, feedDefinitionId: WinRT_String, announcementId: WinRT_String) -> Void: ...
291
299
  class IFeedManagerStatics(ComPtr):
292
300
  extends: IInspectable
293
301
  _classid_ = 'Microsoft.Windows.Widgets.Feeds.Providers.IFeedManagerStatics'
@@ -100,6 +100,13 @@ class IWidgetInfo2(ComPtr):
100
100
  @winrt_commethod(6)
101
101
  def get_IsPlaceholderContent(self) -> Boolean: ...
102
102
  IsPlaceholderContent = property(get_IsPlaceholderContent, None)
103
+ class IWidgetInfo3(ComPtr):
104
+ extends: IInspectable
105
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetInfo3'
106
+ _iid_ = Guid('{965538cd-289d-54ab-916e-9315ebf97ea4}')
107
+ @winrt_commethod(6)
108
+ def get_Rank(self) -> Int32: ...
109
+ Rank = property(get_Rank, None)
103
110
  class IWidgetManager(ComPtr):
104
111
  extends: IInspectable
105
112
  _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetManager'
@@ -272,6 +279,15 @@ class IWidgetUpdateRequestOptions2(ComPtr):
272
279
  @winrt_commethod(7)
273
280
  def put_IsPlaceholderContent(self, value: win32more.Windows.Foundation.IReference[Boolean]) -> Void: ...
274
281
  IsPlaceholderContent = property(get_IsPlaceholderContent, put_IsPlaceholderContent)
282
+ class IWidgetUpdateRequestOptions3(ComPtr):
283
+ extends: IInspectable
284
+ _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions3'
285
+ _iid_ = Guid('{a78e2a8b-a26c-596a-ade3-db8f4c72fe02}')
286
+ @winrt_commethod(6)
287
+ def get_Rank(self) -> win32more.Windows.Foundation.IReference[Int32]: ...
288
+ @winrt_commethod(7)
289
+ def put_Rank(self, value: win32more.Windows.Foundation.IReference[Int32]) -> Void: ...
290
+ Rank = property(get_Rank, put_Rank)
275
291
  class IWidgetUpdateRequestOptionsFactory(ComPtr):
276
292
  extends: IInspectable
277
293
  _classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptionsFactory'
@@ -370,10 +386,13 @@ class WidgetInfo(ComPtr):
370
386
  def get_LastUpdateTime(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetInfo) -> win32more.Windows.Foundation.DateTime: ...
371
387
  @winrt_mixinmethod
372
388
  def get_IsPlaceholderContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetInfo2) -> Boolean: ...
389
+ @winrt_mixinmethod
390
+ def get_Rank(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetInfo3) -> Int32: ...
373
391
  CustomState = property(get_CustomState, None)
374
392
  Data = property(get_Data, None)
375
393
  IsPlaceholderContent = property(get_IsPlaceholderContent, None)
376
394
  LastUpdateTime = property(get_LastUpdateTime, None)
395
+ Rank = property(get_Rank, None)
377
396
  Template = property(get_Template, None)
378
397
  WidgetContext = property(get_WidgetContext, None)
379
398
  class WidgetManager(ComPtr):
@@ -499,11 +518,16 @@ class WidgetUpdateRequestOptions(ComPtr, metaclass=_WidgetUpdateRequestOptions_M
499
518
  def get_IsPlaceholderContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions2) -> win32more.Windows.Foundation.IReference[Boolean]: ...
500
519
  @winrt_mixinmethod
501
520
  def put_IsPlaceholderContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions2, value: win32more.Windows.Foundation.IReference[Boolean]) -> Void: ...
521
+ @winrt_mixinmethod
522
+ def get_Rank(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions3) -> win32more.Windows.Foundation.IReference[Int32]: ...
523
+ @winrt_mixinmethod
524
+ def put_Rank(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions3, value: win32more.Windows.Foundation.IReference[Int32]) -> Void: ...
502
525
  @winrt_classmethod
503
526
  def get_UnsetValue(cls: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptionsStatics) -> WinRT_String: ...
504
527
  CustomState = property(get_CustomState, put_CustomState)
505
528
  Data = property(get_Data, put_Data)
506
529
  IsPlaceholderContent = property(get_IsPlaceholderContent, put_IsPlaceholderContent)
530
+ Rank = property(get_Rank, put_Rank)
507
531
  Template = property(get_Template, put_Template)
508
532
  WidgetId = property(get_WidgetId, None)
509
533
  _WidgetUpdateRequestOptions_Meta_.UnsetValue = property(get_UnsetValue, None)
@@ -1,7 +1,7 @@
1
1
  from __future__ import annotations
2
2
  from win32more.winrt.prelude import *
3
3
  import win32more.Microsoft.Windows.Widgets
4
- WidgetContract: UInt32 = 589824
4
+ WidgetContract: UInt32 = 786432
5
5
  class WidgetSize(Enum, Int32):
6
6
  Small = 0
7
7
  Medium = 1
@@ -1,3 +1,3 @@
1
- WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010007
1
+ WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010008
2
2
  WINDOWSAPPSDK_RELEASE_VERSION_SHORTTAG_W = ''
3
- WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1B5801F208C60000
3
+ WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1F40026801300000
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: win32more-Microsoft.WindowsAppSDK
3
- Version: 0.6.1.7.250513003
3
+ Version: 0.6.1.8.250907003
4
4
  License-File: LICENSE (Microsoft.WindowsAppSDK).txt
5
- Requires-Dist: win32more-microsoft-web-webview2<0.7,>=0.6.1.0.2903.40
5
+ Requires-Dist: win32more-microsoft-web-webview2<0.7,>=0.6.1.0.3179.45
6
6
  Requires-Dist: win32more==0.6.*
@@ -1,4 +1,4 @@
1
- win32more/Microsoft/Foundation/__init__.py,sha256=feBJ9L-32cBuaZcOqTcSAlphKPCuBuS2Pk8wjCUBwjQ,179
1
+ win32more/Microsoft/Foundation/__init__.py,sha256=POmlmDLcGimhp11WKTU1ViBvH6eyIGRmPhIfOHgp-2w,179
2
2
  win32more/Microsoft/Graphics/DirectX/__init__.py,sha256=RsgWf1DQuqYiIvZ4JPLekn6H_ag9dp3XChNM4GrxERw,4378
3
3
  win32more/Microsoft/Graphics/Display/__init__.py,sha256=ZizE6Ik8esmKDt_zHH_T7XPq96jn4_mGohBZoWi3jiQ,12295
4
4
  win32more/Microsoft/Graphics/Imaging/__init__.py,sha256=O3stCuvWAQk4p-UKAVSqr_Lb9oNP9kIsjh2r_J_RhcI,4312
@@ -11,15 +11,15 @@ win32more/Microsoft/UI/Composition/Effects/__init__.py,sha256=T0eSAqOIUArUCv0-yB
11
11
  win32more/Microsoft/UI/Composition/Interactions/__init__.py,sha256=M8IizRfTzoHVoh1UhjdljqNgEr-CE9TIogYUEpcUvww,74403
12
12
  win32more/Microsoft/UI/Composition/Scenes/__init__.py,sha256=t56JUkbf-_1clPM6cwMTXQdszniwyIIUKfBQbG4qXus,47635
13
13
  win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py,sha256=LgNvhL3_ISUqWaH3uKe0srZH2rYty0lflvtl4Cxs80c,24185
14
- win32more/Microsoft/UI/Content/__init__.py,sha256=kxubQCWjP-W4167kEX5kMVktk024wsBMXbPBT_kdZzY,104780
14
+ win32more/Microsoft/UI/Content/__init__.py,sha256=xBteXwaSC3GVkuUCksb2hG_9vjJxTFo_sPS0w41Tcgo,104780
15
15
  win32more/Microsoft/UI/Dispatching/__init__.py,sha256=M87ewZVfWQbTgmSsU9ba1lKm56uokGC6Goc7uOfOTP4,15736
16
- win32more/Microsoft/UI/Input/__init__.py,sha256=P8boioZuDNYmvpWBce1yF69Ty9crFfXpQWDHR_Kazzw,142454
16
+ win32more/Microsoft/UI/Input/__init__.py,sha256=uevK36hfVU5qnRG--oj8qRePHomER6DLjhg5m4ojks8,142454
17
17
  win32more/Microsoft/UI/Input/DragDrop/__init__.py,sha256=2iMK_E0nrYwqDefwYZ670VPYMqi2tP7u48gcS62Iza0,15463
18
18
  win32more/Microsoft/UI/Input/Interop/__init__.py,sha256=0gFhJRIBX_xacYnnBYEDPI9DbSnxUJtgxKQg9qSBlYg,934
19
19
  win32more/Microsoft/UI/System/__init__.py,sha256=xy-amtK-mT_i8ZGnIVqhwz7aomI6IHDsjorXXtIRXo0,2589
20
20
  win32more/Microsoft/UI/Text/__init__.py,sha256=XeqmlNr39iOY4JiVUZgN7iQv3f4uEcmBP8zVLwqxRsQ,54100
21
21
  win32more/Microsoft/UI/Windowing/__init__.py,sha256=N5lbddj2PzgP8bfxay4KSbgn7w83hwrR7reIRJ5jsBs,63348
22
- win32more/Microsoft/UI/Xaml/__init__.py,sha256=BghIiRVJ6GZ1ur_Ys1RrBdfC9EJjPMvNWS_-qRFBo48,401204
22
+ win32more/Microsoft/UI/Xaml/__init__.py,sha256=Mg7Tkugk1gQ86PB1mPianT9hUyDlqnpnK_1YowvsOww,401204
23
23
  win32more/Microsoft/UI/Xaml/Automation/__init__.py,sha256=ZnlDh5CD4SVUw-lxEN2kXaL6m5uWeOwgFoNrFcMKbug,115915
24
24
  win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py,sha256=4pp45QkHrJkUptgaFIACKn_8rC6wwu-iYN8s4Okn-kM,245594
25
25
  win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py,sha256=Vew552Fi4dXmuMzc62RrbptqQQz6gMDBWbLNCArZZww,25356
@@ -44,38 +44,41 @@ win32more/Microsoft/UI/Xaml/Shapes/__init__.py,sha256=7RWAUodNJyWTjvZu5dDKb5cV2f
44
44
  win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py,sha256=CsgOE_svpH_moSFAUCQFZWaxzZeeAEQ-p1w-DNLKQBQ,2211
45
45
  win32more/Microsoft/Windows/AI/__init__.py,sha256=RRJ4SF5yl0h3aVsMmD1snfZp7kJYlaFmQhI4d8wBuxc,2238
46
46
  win32more/Microsoft/Windows/AI/ContentSafety/__init__.py,sha256=c1eVwgUOB2TFaUxUOpvokESEFEL2JKTwJkpF8ww591c,14331
47
- win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=xLqhS6QoB6-wmFNQprror6mV9J_oMDQajRXy8_ygdkc,22759
48
- win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=-clYHCM9vYjLOdY1lVInvGf0R7WvuwTHKkv_hRp3qKc,15674
47
+ win32more/Microsoft/Windows/AI/Foundation/__init__.py,sha256=U31CdOMucSoanrPjffb54W5yjfrgW1mEtdfO1er_QO8,2319
48
+ win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=2uz8BmFv6dsPZd1057eCsG_tvjCbvgQuB_mQuTuC4h8,25809
49
+ win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=QSgtiqc9JMidCgD1M2dP9HNgu29h6kHfT6Uxug_QUDY,27039
49
50
  win32more/Microsoft/Windows/AppLifecycle/__init__.py,sha256=HMKTbKGoWfTfA0cyqA6_mcosViTmpklmpwiKWgok46w,10183
50
51
  win32more/Microsoft/Windows/AppNotifications/__init__.py,sha256=tZCBxF_LI0Am2HeKABub75eIeORYZ94Zi_hnCVAh174,21474
51
52
  win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py,sha256=XutDaU0tB0KsbeGVIiU48gRlui1cNHzer3vmMHy-KWM,44205
52
53
  win32more/Microsoft/Windows/ApplicationModel/Background/__init__.py,sha256=HrM0c0MTgTELHbqDLuy5hUqUD0EuC3X919RjZwFvQao,4319
53
- win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py,sha256=WBUH7AwSWh1FEN3nilRYLJCSMUx6VrQl-J3b7oqRN24,1557
54
+ win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py,sha256=IImZTq9bg1p7ZpH9sZqGljsGzZi6iYiDlh30vhxrqkU,1399
54
55
  win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py,sha256=a1GAeUoyM8sSLm59sZsafJIypa3w8qJPo66uZB8U-MI,17689
55
56
  win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py,sha256=dTwfMSyiUeU5-ZNi-WHJYAhzrzLxTPnSYvtcWvqQqDg,22488
56
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py,sha256=PV5vyAnqfYuEPGJip8kYP-MsF61Q1K9Ak3br2SeGMMk,15333
57
+ win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py,sha256=eTh7xzDwPp8GGRpSVZkncE1yYen6O1DapzBhQ1bN-DY,14794
57
58
  win32more/Microsoft/Windows/BadgeNotifications/__init__.py,sha256=i2OIEzaI2HEdaCgZUub-Er_UcdZvQH_7SStFYf5HavY,2562
59
+ win32more/Microsoft/Windows/Foundation/__init__.py,sha256=Z26vE9k6TQMGQR8Ikloqaolf3CEy_ZoPC-pc_y8TUJY,18582
58
60
  win32more/Microsoft/Windows/Globalization/__init__.py,sha256=4hCvka6EU6AxoBHNI-2p_D6XhaunVSk2bYLQeplBeLE,2345
59
61
  win32more/Microsoft/Windows/Management/Deployment/__init__.py,sha256=i-bdvqompyuE7c_8Upl6tTknp9FojCvJJK3qLNa82YQ,97397
60
62
  win32more/Microsoft/Windows/Media/Capture/__init__.py,sha256=z_BWkCbTstLRzeATIlRnlJpuPuNQH_mqHIp3G_cvM5E,12395
61
63
  win32more/Microsoft/Windows/PushNotifications/__init__.py,sha256=2pXcCusNn76F3Bt9f7hpLBacTVuAtkSsOVcyWQAgiSE,9672
62
64
  win32more/Microsoft/Windows/Security/AccessControl/__init__.py,sha256=bEplGy_jueooNgb8m5TGHEKVkTXWBbYRdgLcNtTI8DE,1938
63
65
  win32more/Microsoft/Windows/Storage/__init__.py,sha256=_Xqx6zTdbNC9qaDJO02_f0yExmMEdNiRG5LxqJPZR3A,10830
66
+ win32more/Microsoft/Windows/Storage/Pickers/__init__.py,sha256=m-oX7Wcffn1D6HSKaggf4M-twbu3ezUf6cwzP2F9WKM,16553
64
67
  win32more/Microsoft/Windows/System/__init__.py,sha256=nfm68OJeDJp-GlH9RCJIcTpISqMBB9GElf_MJ0Nuuv0,4558
65
68
  win32more/Microsoft/Windows/System/Power/__init__.py,sha256=XfShesmPKNrekgLD_KnEWiKZdk6t0btIMqWSYop_ONI,16057
66
- win32more/Microsoft/Windows/Widgets/__init__.py,sha256=EAxPd8SMCGV2whpJE31eTxPXuoKB4vlZgaiB6GwZInQ,256
67
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=dr9Wr65mdTMxK-7x7Z_82leGY5pWEbMtCOT0HL4zBGQ,28878
69
+ win32more/Microsoft/Windows/Widgets/__init__.py,sha256=RKNYYxZMiEFDaxrAdrk8uKzMzeWsZL9Wp_F8DwFvvfU,256
70
+ win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=2dI_Red5_iR8BCCjSc85lT_WM5f9Olcv-Xda1FS10AY,29498
68
71
  win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=NWMyMMYXv845dIRW2MnlnXBfOlz6nc2JaxuC-S9Ab_g,12572
69
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=uGTHfYHNQzvprGqEjnluJ3E6zU2rfNx30z01cyjc468,31076
72
+ win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=wwvQbBn8lovXWtpiLVauK_WJThmmGcicmmW7eIB1ROw,32409
70
73
  win32more/Microsoft/Windows/Workloads/__init__.py,sha256=6jbfkZ9ZAvZmVRIJWVGlC3bNFW1QVu46l7njIH1F5fA,280
71
- win32more/appsdk/versioninfo.py,sha256=Ww2RRDSTiTlS_1OCNNQrTwntl4olNJPC7KX61f9-dTY,149
72
- win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=j0rU2GY74oXAIC8LCLA3VoirlOQ5AfBcYwsMgM72VsU,72224
73
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=I6ENCYVX7aBWWQereBYLgeSDlkta3BBwXeFVNw1U2rA,388672
74
- win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=EBD4RROIH0W_PcsdlRsGaBvXVD6241ksvYi1WKC2MdI,79904
75
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=N8Y7WhwqbYhyewbSzbUmcPukssNYDExxSMDHYV8r8xE,396344
76
- win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=YxA3MjG5__zSK6XMkDksio3lBwqFfvnnp0fWn3AlNuE,59960
77
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=v6GBiGZ3wFSlGAEkyuK9FscIIl5lsJ58Lut_bmwNpfc,348216
78
- win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info/METADATA,sha256=9Iu8spqMjF5pfStqKNEl1S1rKbcsmTdS4FHjjSdZT54,243
79
- win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
80
- win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=s-4tv980OTZQta_MSYgXPrBvs8-5SQYFj3byRJTfD9w,12291
81
- win32more_microsoft_windowsappsdk-0.6.1.7.250513003.dist-info/RECORD,,
74
+ win32more/appsdk/versioninfo.py,sha256=q4YIexEqyEoDVW9SNyaFl54WrJCp0EwjoVlV2zBPxCc,149
75
+ win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=7yJrrfq_O6St__WbgvAXLS9cvoRXdQ61zp0yJYMqFHE,81952
76
+ win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=flQneEX8KbD7wlND_w-DxhJVGoGhIgMnhze4In1WPIY,392736
77
+ win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=pzKgoH87ZG8qYfehDCFSnn5H7yqgSqNiDc0xC0jdomE,87608
78
+ win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=DxeBwGgirYV4J-H38GBJqWhscZCMmfD_Lnh7apky5mU,399928
79
+ win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=nV79iCGYjBe3NuPZNUeGsHxfOE73-VUA3t4tkVIHpHY,65576
80
+ win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=onG0CPBUkJXSlPGngLZB1Y7SBdxxgPjNP6mT_th7X_k,351272
81
+ win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/METADATA,sha256=UwQviMXrVTQ8qer_sxiwWwebunvEmPMC8E7-c-ic3CA,243
82
+ win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
83
+ win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=WxHmNHdW5A_gJ0vAjJf4kgG5Tw1QGBoJoA8fR0CEBQE,12637
84
+ win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info/RECORD,,
@@ -8,7 +8,7 @@ These license terms are an agreement between you and Microsoft Corporation (or o
8
8
 
9
9
  1. INSTALLATION AND USE RIGHTS.
10
10
 
11
- a) General. Subject to the terms of this agreement, you may install and use any number of copies of the software to develop and test your applications, solely for use on Windows.
11
+ a) General. Subject to the terms of this agreement, you may install and use any number of copies of the software to develop and test your applications, solely for use on Windows. When building Generative AI applications follow the guidelines in https://learn.microsoft.com/windows/ai/rai.
12
12
 
13
13
  b) Included Microsoft Applications. The software may include other Microsoft applications. These license terms apply to those included applications, if any, unless other license terms are provided with the other Microsoft applications.
14
14
 
@@ -24,9 +24,11 @@ These license terms are an agreement between you and Microsoft Corporation (or o
24
24
 
25
25
  a) Distribution Rights. The code and test files described below are distributable if included with the software.
26
26
 
27
- i. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
27
+ i. Any files that are binplaced with your application by the WindowsAppSDK NuGet package are, by definition, permitted to be redistributed. This applies to both framework package dependent and self-contained deployments.
28
28
 
29
- ii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
29
+ ii. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
30
+
31
+ iii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
30
32
 
31
33
  b) Distribution Requirements. For any code you distribute, you must:
32
34