forked from dalavanmanphonsy/WinDevPlatStatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.json
1278 lines (1278 loc) · 42.2 KB
/
status.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Chaseable Tiles",
"category": "tile",
"summary": "Allow apps to know what was on their Live Tile when the user clicked it.",
"status": {
"text": "Shipped",
"buildNumber": "14393"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2016/04/06/chaseable-tiles-know-what-was-clicked-on-your-live-tile-windows-10-uwp/",
"demo": "",
"id": null
},
{
"name": "Adaptive Toast Notifications",
"category": "toast",
"summary": "Support the same visual richness that Tiles have on Toast",
"status": {
"text": "Shipped",
"buildNumber": "14393"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2016/06/10/whats-new-for-toast-notifications-and-action-center-in-windows-10-anniversary-update/",
"demo": "",
"id": null
},
{
"name": "Context menu on Toast notification",
"category": "toast",
"summary": "Allow developer-specified context menu actions on the Toast notification",
"status": {
"text": "Shipped",
"buildNumber": "14393"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2016/06/10/whats-new-for-toast-notifications-and-action-center-in-windows-10-anniversary-update/",
"demo": "",
"id": null
},
{
"name": "Notification Listener",
"category": "toast",
"summary": "Allow apps to access your notifications, so wearable apps can be created",
"status": {
"text": "Shipped",
"buildNumber": "14393"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2016/05/26/notification-listener-documentation-windows-10/",
"demo": "",
"id": null
},
{
"name": "Support hint-crop on Tile background image",
"category": "tile",
"summary": "Support hint-crop circle on Adaptive Tile notification background images",
"status": {
"text": "Shipped",
"buildNumber": "10586"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/11/03/whats-new-for-adaptive-tile-templates-in-windows-10-version-1511/",
"demo": "",
"id": null
},
{
"name": "Support hint-crop on Tile peek image",
"category": "tile",
"summary": "Support hint-crop circle on Adaptive Tile notification peek images",
"status": {
"text": "Shipped",
"buildNumber": "10586"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/11/03/whats-new-for-adaptive-tile-templates-in-windows-10-version-1511/",
"demo": "",
"id": null
},
{
"name": "Interactive Toast notifications",
"category": "toast",
"summary": "Allow quick reply and other interactive Toast notification scenarios",
"status": {
"text": "Shipped",
"buildNumber": "10240"
},
"msdn": "https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/07/02/adaptive-and-interactive-toast-notifications-for-windows-10/",
"demo": "",
"id": null
},
{
"name": "Third pary alarms break through quiet hours",
"category": "toast",
"summary": "Allow third party alarm notifications to break through quiet hours, just like native Alarm app",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 14801892
},
{
"name": "API to pin primary tile and check if pinned",
"category": "tile",
"summary": "Allow apps to check whether their primary tile is pinned to Start, and request to pin their primary live tile.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "https://docs.microsoft.com/en-us/windows/uwp/controls-and-patterns/tiles-and-notifications-primary-tile-apis",
"demo": "",
"id": null,
"uservoiceid": 2809413
},
{
"name": "XAML for Live Tiles",
"category": "tile",
"summary": "Allow apps to use full XAML on their Live Tile, to create rich and beautiful experiences",
"status": {
"text": "Not currently planned"
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 2282240
},
{
"name": "Allow max length of Toast Tag/Group to be at least GUID length",
"category": "toast",
"summary": "Toast Tag/Group properties each now support up to 64 characters rather than just 16 characters!",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 8629408
},
{
"name": "Allow running longer in the background based on AC availability",
"category": "background",
"summary": "Extended Execution session can run forever when connected to AC",
"status": {
"text": "Shipped",
"buildNumber": "14393"
},
"msdn": "https://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.extendedexecution.extendedexecutionsession.aspx",
"demo": "",
"id": 5782071,
"uservoiceid": null
},
{
"name": "Provide a one-process background task model",
"category": "background",
"summary": "Single-process background execution model for UWP",
"status": {
"text": "Shipped",
"buildNumber": "14393"
},
"msdn": "https://blogs.windows.com/buildingapps/2016/06/07/background-activity-with-the-single-process-model/",
"demo": "",
"id": 5782050,
"uservoiceid": null
},
{
"name": "Background Execution Policy management ",
"category": "background",
"summary": "Allow enterprises to configure background execution policies, both globally and per-app (via GP and User Settings)",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "https://msdn.microsoft.com/windows/hardware/commercialize/customize/mdm/policy-configuration-service-provider#privacy-letappsruninbackground",
"demo": "",
"id": 8239346,
"uservoiceid": null
},
{
"name": "Declare firewall exemptions in the manifest",
"category": "desktopbridge",
"summary": "Allow DesktopBridge apps to declare their firewall exemptions in the appx manifest",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": 8271120,
"uservoiceid": null
},
{
"name": "Support for pre-installed Centennial apps",
"category": "desktopbridge",
"summary": "Support DesktopBridge apps to be preinstalled on Windows images",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": 9075778,
"uservoiceid": null
},
{
"name": "Provide new WinRT events for \"App has begun/exited resize loop\"",
"category": "appviewmgmt",
"summary": "Allow games to be smart about handling Window resize",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": 5883839,
"uservoiceid": null
},
{
"name": "Additional AppModel Developer Diagnostic APIs",
"category": "misc",
"summary": "APIs to diagnose memory, CPU, background execution, etc.",
"status": {
"text": "Under Consideration"
},
"msdn": "",
"demo": "",
"id": 9546400,
"uservoiceid": null
},
{
"name": "Support Secondary Tiles from Win32 Processes",
"category": "desktopbridge",
"summary": "Support secondary tiles for DesktopBridge applications",
"status": {
"text": "Under Consideration"
},
"msdn": "",
"demo": "",
"id": 7365579,
"uservoiceid": null
},
{
"name": "Developers can stop/modify window content from showing in task switcher and other mini views of the application",
"category": "appviewmgmt",
"summary": "Allow apps to override the content shown in mini-views/previews for their apps, for example in the task switcher UI",
"status": {
"text": "Under Consideration"
},
"msdn": "",
"demo": "",
"id": 878384,
"uservoiceid": null
},
{
"name": "Loose file registration from a network share (multiple machines, single share)",
"category": "deployment",
"summary": "Registering an app in development mode allows for quicker iteration in development. In many cases a developer wants to test on multiple devices or collaborate with other developer at the same time. This feature allows the app registration to a network share so multiple devices can share register to teh same folder without the need to copy the files to each device.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "http://blogs.msdn.microsoft.com/appinstaller/2016/11/04/rapid-app-development-using-register-layout-from-network-share-new-in-build-14965/",
"demo": "",
"id": 7223643,
"uservoiceid": null
},
{
"name": "Utility which allows developers to understand update diff between old and new package",
"category": "deployment",
"summary": "When a user gets an update of a UWP app the deployment stack performs a differential download based on changes block with in the app, minimizing the bandwidth and update time for the user. In the Windows 10 Creators Update a new tool was introduced (ComparePackage) to allow the developer to understand what the delta impact across two packages will be to an end user. ComparePackage will show the add, changes, and deletes of files to allowing the developer to further optimize as needed.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "",
"demo": "",
"id": 7068331,
"uservoiceid": null
},
{
"name": "After an upgrade (i.e. RS2 > RS3), do not reinstall uninstalled apps",
"category": "deployment",
"summary": "Many apps come preinstalled with Windows. These are typically apps which are core to the Windows experience or that most people expect the system to have by default. Starting with build 14942 if a user removes an app the Windows upgrade experience will not reinstall the app on the device.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "https://blogs.msdn.microsoft.com/appinstaller/2016/10/25/upgrade-improvements-in-14942/",
"demo": "",
"id": 6240567,
"uservoiceid": null
},
{
"name": "[Enterprise] App install progress for Company Hub",
"category": "deployment",
"summary": "When managing and deploying apps from a Company Hub UWP developers wants the ability to report status and progress of installations of UWP on the device. In the creators update the package catalog class will allow a UWP with Package Management capabilities the ability to listen for state and installation progress of a UWP deployment.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "https://msdn.microsoft.com/en-us/library/windows/apps/Windows.ApplicationModel.PackageCatalog.aspx",
"demo": "",
"id": 342542,
"uservoiceid": null
},
{
"name": "Provide a method to remove an app from all users of the device without the user logging in.",
"category": "deployment",
"summary": "Apps that are preinstalled on Windows 10 desktop are registered to all users that log into the device. An administrator could remove these preinstalled apps so no new users would register the app, but if a user had previously been logged in they would still have the app registered. The Windows 10 Creators Update now offers additional commands allow an administrator to remove the preinstalled app from the devices and from any user profile that has registered the app allowing for a complete removal of the app from the device.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "",
"demo": "",
"id": 3167675,
"uservoiceid": null
},
{
"name": "[STREAMING] Deployment stack support for first time streaming install",
"category": "deployment",
"summary": "Developers can enable their app to launch when a minimal payload is deployed to the user. This allows for quicker app engagement for the user. Within the app the developer can customize the experience of the app as the remaining portion of the app are deployed. A developer can prioritize the downloads of files and see progress of the remaining installation to provide a fluid in app experience.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "https://docs.microsoft.com/en-us/windows/uwp/packaging/streaming-install",
"demo": "",
"id": 7932349,
"uservoiceid": null
},
{
"name": "Allow in-place update for UWPs for large apps",
"category": "deployment",
"summary": "If an app is over 10 GB in space it will update the files in place instead of staging the files side by side with the original version preventing out of disk space errors when updating.",
"status": {
"text": "Shipped",
"buildNumber": "15063"
},
"msdn": "",
"demo": "",
"id": 9506942,
"uservoiceid": null
},
{
"name": "Easy installation of a .appx or .appxbundle file",
"category": "deployment",
"summary": "Shell integration to double click and install a UWP on Windows desktop!",
"status": {
"text": "Shipped",
"buildNumber": 14393
},
"msdn": "https://blogs.msdn.microsoft.com/appinstaller/2016/05/27/app-installer/",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "App extensions",
"category": "deployment",
"summary": "Developers can host the ability to offer independent UWP packages to offer extensibility to their UWP app. The extensions can be provided from first or third party developers. The host app is in control of what extensions can load and run to ensure the integrity and quality of the app experience.",
"status": {
"text": "Shipped",
"buildNumber": 14393
},
"msdn": "https://channel9.msdn.com/Events/Build/2016/B808",
"demo": "",
"id": 4727727,
"uservoiceid": null
},
{
"name": "Developer controlled app updates",
"category": "deployment",
"summary": "Developers have an in app experience to notify the user of required or optional app updates. Based on the state of the update developers can enable or disable functionality (i.e. online experience) until the update has been installed.",
"status": {
"text": "Shipped",
"buildNumber": 14393
},
"msdn": "https://blogs.msdn.microsoft.com/appinstaller/2016/11/11/developer-controlled-app-updates/",
"demo": "",
"id": 5876297,
"uservoiceid": null
},
{
"name": "Remote Sessions",
"category": "projectrome",
"summary": "Remote Sessions enable developers to create experiences that multiple participants can concurrently engage in. These new APIs enable developers to create sessions, discover sessions (proximally), discover other users’ devices (proximally and with \"Share across devices\" setting set to \"everyone nearby\"), and exchange messages with other participants in the session.",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Remote Systems Android SDK",
"category": "projectrome",
"summary": "The Android SDK provides the same client functionality as our Anniversary Update Remote Systems Windows SDK:\n a) Device discovery, proximal and cloud\n b) Remote launch",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "https://github.com/Microsoft/project-rome",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Support for AppUriHandlers in Edge",
"category": "projectrome",
"summary": "AppUriHandlers are now supported in the Edge browser",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Remote Systems: AAD support",
"category": "projectrome",
"summary": "The Remote Systems APIs now support AAD as well. You can discover your devices based on your AAD identity.",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Remote Systems API updates",
"category": "projectrome",
"summary": "The Remote Systems APIs have been updated to support:\n a) Spatially proximal discovery/filtering of devices\n b) Anonymous (cross-user) discovery of devices\n c) Ability to check state of “Share across devices” setting on local device\n d) Ability to check resources/capabilities on a given Remote System\n e) Settings update",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Remote Systems iOS SDK",
"category": "projectrome",
"summary": "The Remote Systems iOS SDK enables you discover devices (proximally or through the cloud), remote launch, and set up app service connections to them.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Remote Systems: Exposing device capabilities",
"category": "projectrome",
"summary": "Through the Remote System APIs you will be able to find details about a given device, such as capabilities, sensors, apps, app services, etc., and interact with those resources.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Lifelike visual experiences through use of lighting and responsive materials",
"category": "ui",
"summary": "Use of lights, effect graphs, blurs, noise assets, blend modes etc. to create more lifelike UI with contextual materials",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Custom page transitions using show/hide implicit animations",
"category": "ui",
"summary": "Developers are able to customize how items are shown or hidden during page transitions ",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Ability to implicitly animate additional properties on CompositionObjects (drop shadows, clips, property sets) ",
"category": "ui",
"summary": "Responding to developer demand, now more Composition objects and properties can be implicitly animated than in the Anniversary Update.",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Per monitor DPI awareness APIs",
"category": "ui",
"summary": "Enhanced DPI APIs to allow Win32 apps more flexibility in controlling UI scaling and fidelity on a per-monitor basis. Developers no longer need to deal with an \"all or nothing\" option for DPI, and can progressively convert portions of their UI over to work better on newer premium PC displays.\n\nE.g. Automatic scaling of the title bar; More controls in ComCtl are DPI aware",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "https://msdn.microsoft.com/library/mt791579(v=vs.85)",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Enable UWPs with depth and volume to look more realistic in 3D/HMD environments",
"category": "ui",
"summary": "Lower barrier to entry for developers who build predominantly 2D UWP apps that have some notion of depth and layers, or volumetric content, to have those apps look more realistic with minimal additional code when used in a 3D environment like Windows Holographic (PC with HMD, HoloLens)",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Game quality rendering comes to UI with particle systems, post-proc effects, env maps, lighting and shadows in the Visual layer",
"category": "ui",
"summary": "We will push the frontiers of Windows UI and experiences with higher fidelity graphics, broader palette of effects, and more dynamic visualizations.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Animated text, sharp and clear text @ scale in the Visual layer",
"category": "ui",
"summary": "Visuals with text primitive support that can be gracefully animated, scaled, have effects applied.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Animated vector graphics support in the Visual layer",
"category": "ui",
"summary": "Support for vector graphic primitives in Visuals that can be gracefully animated, scaled, have effects applied.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 19220554
},
{
"name": "Improve the developer experience in authoring Expression Animations",
"category": "ui",
"summary": "Better Expression Authoring experience with strongly typed classes and IntelliSense support, in contrast to the current \"string-ly typed\" option.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Developer/Designers can directly animate the velocity/acceleration of properties",
"category": "ui",
"summary": "Animating the velocity and acceleration of properties opens up new scenarios around natural motion and interaction with UI. Developers fill find this an easier solution to translate natural feeling motion design into code, without resorting to hacks or workarounds.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Users get familiar intuitive interactions with content using canned physics",
"category": "ui",
"summary": "New physics constructs springs, decays, anchors, hinges that make lists and common panning/zooming/drag-drop interactions feel lifelike",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Ability to animate Visuals along a non-linear path",
"category": "ui",
"summary": "Developers are able to create dynamic paths to allow content to transition from one location to another naturally on any form factor.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Animation system to drive non-CompositionObjects like Win2D objects",
"category": "ui",
"summary": "Developers get one Animation system to animate everything in your UI",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Developers have a complete, documented API set to enable premium Win32 apps to support multi-monitor scenarios correctly",
"category": "ui",
"summary": "Improving Win32 API reference docs specifically where APIs (e.g. in User32) have DPI specific behaviors.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "UWP apps can build screen capture experiences",
"category": "ui",
"summary": "Screen capture APIs to allow bitmap snapshots or streams of frames to be captured from the desktop or on a per-app basis.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Developers can use Windows.UI.Composition APIs in Win32 apps on Windows 10",
"category": "ui",
"summary": "Access to the Visual layer and Dispatcher APIs from a Win32, WPF, WinForms etc. app on Windows 10.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Developers can use UWP XAML controls in Win32 apps on Windows 10",
"category": "ui",
"summary": "Access to the UWP XAML UI and controls from a Win32, WPF, WinForms etc. app on Windows 10.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Apply effects to trees of XAML content",
"category": "ui",
"summary": "Support Layer effects to be applied to entire controls and UIElement trees",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Support for clocks to control Animations",
"category": "ui",
"summary": "Developers are able to control and manage the progression of their animations – making choreographed UI and “playback control” experiences possible to create: Clocks, Triggers, State machines",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "DispatcherQueue allows developers to easily create a secondary thread and schedule work on it",
"category": "ui",
"summary": "Ability to create a worker thread from the Dispatcher Queue. Ability to execute one task at a time, in the order in which they were added. Or schedule multiple concurrent tasks.\n\nDevelopers can also attach system level sources like File Descriptors, Sockets, etc. to DispatcherQueues and build custom handling for them.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "HDR/Wide Color Gamut support with Composition APIs",
"category": "ui",
"summary": "Composing HDR/Wide Color Gamut assets like images, textures, video with Composition APIs",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Improve the Windows Console color scheme",
"category": "console",
"summary": "Update the console color scheme for better contrast, make it easier to read.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": 7905118,
"uservoiceid": null
},
{
"name": "Enable publishing Console apps to the Store",
"category": "console",
"summary": "Developers can publish Console applications to the Windows Store",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": 9206421,
"uservoiceid": null
},
{
"name": "DAC: Add support for Icon Extraction",
"category": "desktopbridge",
"summary": "Extract the icon resources from an app and use them to initialize the converted package’s visual assetsExtract the icon resources from an app and use them to initialize the converted package’s visual assets",
"status": {
"text": "Shipped",
"buildNumber": 14393
},
"msdn": "http://aka.ms/converterdocs",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "DAC: Add support for converting Apps without an installer",
"category": "desktopbridge",
"summary": "DAC should produce a manfest file for simple apps that do not have an installer (ie: xcopy)",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "DAC: Support detecting COM and extract registrations to the AppXManifest",
"category": "desktopbridge",
"summary": "Detect Out of proc COM registrations and add appropriate Packaged COM manifest entries.",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Support calling 3rd party WinRT Components from Win32",
"category": "com",
"summary": "Allow 3rd party developers to create WinRT components that can be called from UWP apps and Win32 apps",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Packaged COM Support for the Desktop Bridge",
"category": "com",
"summary": "Allow apps to register public Out-of-Proc COM servers",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "WinRT registration support for Optional Packages",
"category": "com",
"summary": "Support for Optional Packages when registering WinRT classes",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "https://docs.microsoft.com/windows/uwp/packaging/optional-packages",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Update inbox SQLite for Creators Update",
"category": "com",
"summary": "Update the inbox version of SQLite to the latest version",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "XAML Markup Extensions",
"category": "ui",
"summary": "Add markup extension capability similar to what existed in WPF, to the UWP XAML framework.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 7232264
},
{
"name": "Form Input Validation",
"category": "ui",
"summary": "Foundation support in the XAML Framework to enable forms input validation.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 13052589
},
{
"name": "Improved Repeater controls for UI Virtualization",
"category": "ui",
"summary": "Enabling more flexible layouts and extensible virtualization for repeated item scenarios using XAML.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "UpdateSourceTrigger in x:Bind",
"category": "ui",
"summary": "Bring forward the UpdateSourceTrigger mechanism from classic binding to compiled binding (x:Bind).",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Static SVG Support for things like Icons",
"category": "ui",
"summary": "Ability to specify a static (non-animating) SVG asset to be used as an icon/image.",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "https://docs.microsoft.com/uwp/api/windows.ui.xaml.media.imaging.svgimagesource",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Strikethrough support for TextBlock",
"category": "ui",
"summary": "Ability for a TextBlock to show Strikethrough text.",
"status": {
"text": "Shipped",
"buildNumber": 15063
},
"msdn": "https://docs.microsoft.com/en-us/uwp/api/windows.ui.text.textdecorations",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Support ToUpper / Character Casing on TextBox",
"category": "ui",
"summary": "Ability to specify character casing for text entered into a TextBox.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": 7272924
},
{
"name": "Image-based Closed Captions",
"category": "ui",
"summary": "Improve MediaPlayerElement to support image-based closed captions.",
"status": {
"text": "Under Consideration",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Pull to Refresh Control",
"category": "ui",
"summary": "High quality implementation of this common interaction pattern.",
"status": {
"text": "In Development",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "Swipe Control",
"category": "ui",
"summary": "High quality implementation of this common interaction pattern.",
"status": {
"text": "In Development",
"buildNumber": null
},
"msdn": "",
"demo": "",
"id": null,
"uservoiceid": null
},
{
"name": "ColorPicker Control",
"category": "ui",
"summary": "High quality implementation of this common interaction pattern.",
"status": {
"text": "In Development",
"buildNumber": null
},
"msdn": "",