win32more-Microsoft.WindowsAppSDK 0.7.1.6.250108002__py2.py3-none-any.whl → 0.7.1.6.250228001__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.
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py +24 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
- win32more/appsdk/versioninfo.py +1 -1
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- {win32more_microsoft_windowsappsdk-0.7.1.6.250108002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info}/METADATA +1 -1
- {win32more_microsoft_windowsappsdk-0.7.1.6.250108002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info}/RECORD +10 -10
- {win32more_microsoft_windowsappsdk-0.7.1.6.250108002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info}/WHEEL +0 -0
- {win32more_microsoft_windowsappsdk-0.7.1.6.250108002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +0 -0
|
@@ -93,6 +93,13 @@ class IWidgetInfo(ComPtr):
|
|
|
93
93
|
LastUpdateTime = property(get_LastUpdateTime, None)
|
|
94
94
|
Template = property(get_Template, None)
|
|
95
95
|
WidgetContext = property(get_WidgetContext, None)
|
|
96
|
+
class IWidgetInfo2(ComPtr):
|
|
97
|
+
extends: IInspectable
|
|
98
|
+
_classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetInfo2'
|
|
99
|
+
_iid_ = Guid('{081b0a6f-d784-5408-bb29-252fef2926d4}')
|
|
100
|
+
@winrt_commethod(6)
|
|
101
|
+
def get_IsPlaceholderContent(self) -> Boolean: ...
|
|
102
|
+
IsPlaceholderContent = property(get_IsPlaceholderContent, None)
|
|
96
103
|
class IWidgetManager(ComPtr):
|
|
97
104
|
extends: IInspectable
|
|
98
105
|
_classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetManager'
|
|
@@ -256,6 +263,15 @@ class IWidgetUpdateRequestOptions(ComPtr):
|
|
|
256
263
|
Data = property(get_Data, put_Data)
|
|
257
264
|
Template = property(get_Template, put_Template)
|
|
258
265
|
WidgetId = property(get_WidgetId, None)
|
|
266
|
+
class IWidgetUpdateRequestOptions2(ComPtr):
|
|
267
|
+
extends: IInspectable
|
|
268
|
+
_classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions2'
|
|
269
|
+
_iid_ = Guid('{77c4efc4-38f3-57a5-aba1-f83f257b899e}')
|
|
270
|
+
@winrt_commethod(6)
|
|
271
|
+
def get_IsPlaceholderContent(self) -> win32more.Windows.Foundation.IReference[Boolean]: ...
|
|
272
|
+
@winrt_commethod(7)
|
|
273
|
+
def put_IsPlaceholderContent(self, value: win32more.Windows.Foundation.IReference[Boolean]) -> Void: ...
|
|
274
|
+
IsPlaceholderContent = property(get_IsPlaceholderContent, put_IsPlaceholderContent)
|
|
259
275
|
class IWidgetUpdateRequestOptionsFactory(ComPtr):
|
|
260
276
|
extends: IInspectable
|
|
261
277
|
_classid_ = 'Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptionsFactory'
|
|
@@ -352,8 +368,11 @@ class WidgetInfo(ComPtr):
|
|
|
352
368
|
def get_CustomState(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetInfo) -> hstr: ...
|
|
353
369
|
@winrt_mixinmethod
|
|
354
370
|
def get_LastUpdateTime(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetInfo) -> win32more.Windows.Foundation.DateTime: ...
|
|
371
|
+
@winrt_mixinmethod
|
|
372
|
+
def get_IsPlaceholderContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetInfo2) -> Boolean: ...
|
|
355
373
|
CustomState = property(get_CustomState, None)
|
|
356
374
|
Data = property(get_Data, None)
|
|
375
|
+
IsPlaceholderContent = property(get_IsPlaceholderContent, None)
|
|
357
376
|
LastUpdateTime = property(get_LastUpdateTime, None)
|
|
358
377
|
Template = property(get_Template, None)
|
|
359
378
|
WidgetContext = property(get_WidgetContext, None)
|
|
@@ -476,10 +495,15 @@ class WidgetUpdateRequestOptions(ComPtr, metaclass=_WidgetUpdateRequestOptions_M
|
|
|
476
495
|
def get_CustomState(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions) -> hstr: ...
|
|
477
496
|
@winrt_mixinmethod
|
|
478
497
|
def put_CustomState(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions, value: hstr) -> Void: ...
|
|
498
|
+
@winrt_mixinmethod
|
|
499
|
+
def get_IsPlaceholderContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions2) -> win32more.Windows.Foundation.IReference[Boolean]: ...
|
|
500
|
+
@winrt_mixinmethod
|
|
501
|
+
def put_IsPlaceholderContent(self: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptions2, value: win32more.Windows.Foundation.IReference[Boolean]) -> Void: ...
|
|
479
502
|
@winrt_classmethod
|
|
480
503
|
def get_UnsetValue(cls: win32more.Microsoft.Windows.Widgets.Providers.IWidgetUpdateRequestOptionsStatics) -> hstr: ...
|
|
481
504
|
CustomState = property(get_CustomState, put_CustomState)
|
|
482
505
|
Data = property(get_Data, put_Data)
|
|
506
|
+
IsPlaceholderContent = property(get_IsPlaceholderContent, put_IsPlaceholderContent)
|
|
483
507
|
Template = property(get_Template, put_Template)
|
|
484
508
|
WidgetId = property(get_WidgetId, None)
|
|
485
509
|
_WidgetUpdateRequestOptions_Meta_.UnsetValue = property(get_UnsetValue, None)
|
win32more/appsdk/versioninfo.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: win32more-Microsoft.WindowsAppSDK
|
|
3
|
-
Version: 0.7.1.6.
|
|
3
|
+
Version: 0.7.1.6.250228001
|
|
4
4
|
License-File: LICENSE (Microsoft.WindowsAppSDK).txt
|
|
5
5
|
Requires-Dist: win32more-core==0.7.*
|
|
6
6
|
Requires-Dist: win32more-microsoft-web-webview2<0.8,>=0.7.1.0.2651.64
|
|
@@ -53,15 +53,15 @@ win32more/Microsoft/Windows/Security/AccessControl/__init__.py,sha256=qi__JVEKPq
|
|
|
53
53
|
win32more/Microsoft/Windows/Storage/__init__.py,sha256=hyCZxynJAMGh0YuQ7z1YUvdpytoK8VPKx3S0e6WLDjQ,10601
|
|
54
54
|
win32more/Microsoft/Windows/System/__init__.py,sha256=2GQnrlhdzzkVj7IRF4LOTn9nruLVG7T7rhqdNTSPGvA,4393
|
|
55
55
|
win32more/Microsoft/Windows/System/Power/__init__.py,sha256=mzBzuX4Ez5fZBO6ZCtAFuW1Z7ZfRbRQmihxsD_1J_4M,18069
|
|
56
|
-
win32more/Microsoft/Windows/Widgets/__init__.py,sha256=
|
|
56
|
+
win32more/Microsoft/Windows/Widgets/__init__.py,sha256=6awEudys6GNOAQfG47-V5wSgR3k1N6jIspoLOuk4cJ0,251
|
|
57
57
|
win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=w7eFaw42idP71iIj2DeKhJk2PhDho7_xeWWeDN-G4pU,28265
|
|
58
58
|
win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=VlHjcJjaIjTM-CTSpmyhMvi9xDuiP7iHT7X5kaI3YPk,12343
|
|
59
|
-
win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=
|
|
60
|
-
win32more/appsdk/versioninfo.py,sha256=
|
|
61
|
-
win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=
|
|
62
|
-
win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=
|
|
63
|
-
win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=
|
|
64
|
-
win32more_microsoft_windowsappsdk-0.7.1.6.
|
|
65
|
-
win32more_microsoft_windowsappsdk-0.7.1.6.
|
|
66
|
-
win32more_microsoft_windowsappsdk-0.7.1.6.
|
|
67
|
-
win32more_microsoft_windowsappsdk-0.7.1.6.
|
|
59
|
+
win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=QIAuLeZ35Sde54WG-QEBUGgeQY54vmE-yOlDZ4Aw-1M,30487
|
|
60
|
+
win32more/appsdk/versioninfo.py,sha256=l62RfJJf3mOR_8BKpCyMXt5ameKDJZxHjGTnm8ctiKw,149
|
|
61
|
+
win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=dd4H9TShqvT3YizzQ7OOL4kR9zR0aRhL-i_9QCVmDog,384072
|
|
62
|
+
win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=2SCjPZtlcdUrA2xM2Q8FcQ32fayiqmtK4CpqjSk_Xeo,392224
|
|
63
|
+
win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=K2yslMKtld31ime9piGLRcxAIIwBWQhHwYfJbmI4Q7E,344616
|
|
64
|
+
win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info/METADATA,sha256=4x6_JS0HcpE8RItDfIvn0EMQRCTHnO88CNOciBi-Vvo,248
|
|
65
|
+
win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
|
66
|
+
win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=s-4tv980OTZQta_MSYgXPrBvs8-5SQYFj3byRJTfD9w,12291
|
|
67
|
+
win32more_microsoft_windowsappsdk-0.7.1.6.250228001.dist-info/RECORD,,
|
|
File without changes
|