Skip to content

Commit 7231426

Browse files
Sample App - Update Version to 6.1.0, What's New, and Landing Page Links
1 parent 4a1a102 commit 7231426

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

Microsoft.Toolkit.Uwp.SampleApp/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" IgnorableNamespaces="uap mp uap3">
3-
<Identity Name="52b9212c-97a9-4639-9426-3e1ea9c1569e" Publisher="CN=Nikola" Version="6.0.0.0" />
3+
<Identity Name="52b9212c-97a9-4639-9426-3e1ea9c1569e" Publisher="CN=Nikola" Version="6.1.0.0" />
44
<mp:PhoneIdentity PhoneProductId="52b9212c-97a9-4639-9426-3e1ea9c1569e" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>Microsoft.Toolkit.Uwp.SampleApp</DisplayName>

Microsoft.Toolkit.Uwp.SampleApp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
[assembly: AssemblyTitle("Microsoft.Toolkit.Uwp.SampleApp")]
1212
[assembly: AssemblyDescription("")]
1313
[assembly: AssemblyConfiguration("")]
14-
[assembly: AssemblyCompany("")]
14+
[assembly: AssemblyCompany(".NET Foundation")]
1515
[assembly: AssemblyProduct("Microsoft.Toolkit.Uwp.SampleApp")]
16-
[assembly: AssemblyCopyright("Copyright © 2016")]
16+
[assembly: AssemblyCopyright("Copyright © 2016-2020")]
1717
[assembly: AssemblyTrademark("")]
1818
[assembly: AssemblyCulture("")]
1919

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/samples.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@
839839
"CodeUrl": "https://github.com/windows-toolkit/WindowsCommunityToolkit/tree/master/Microsoft.Toolkit/ObservableGroup",
840840
"CodeFile": "ObservableGroup.bind",
841841
"Icon": "/Assets/Helpers.png",
842-
"DocumentationUrl": "https://raw.githubusercontent.com/MicrosoftDocs/WindowsCommunityToolkitDocs/master/docs/helpers/ObservableGroup.md"
842+
"DocumentationUrl": "https://raw.githubusercontent.com/MicrosoftDocs/WindowsCommunityToolkitDocs/master/docs/collections/ObservableGroups.md"
843843
},
844844
{
845845
"Name": "CameraHelper",
@@ -930,6 +930,20 @@
930930
"Icon": "/SamplePages/WeatherLiveTileAndToast/WeatherLiveTileAndToast.png",
931931
"DocumentationUrl": "https://raw.githubusercontent.com/MicrosoftDocs/WindowsCommunityToolkitDocs/master/docs/notifications/NotificationsOverview.md"
932932
},
933+
{
934+
"Name": "Guard APIs",
935+
"Subcategory": "Developer",
936+
"About": "The Guard APIs can be used to validate method arguments in a streamlined manner, which is also faster, less verbose, more expressive and less error prone than manually writing checks and throwing exceptions.",
937+
"Icon": "/Assets/Helpers.png",
938+
"DocumentationUrl": "https://raw.githubusercontent.com/MicrosoftDocs/WindowsCommunityToolkitDocs/master/docs/developer-tools/Guard.md"
939+
},
940+
{
941+
"Name": "High Performance APIs",
942+
"Subcategory": "Developer",
943+
"About": "The High Performance package contains a set of APIs that are heavily focused on optimization. All the new APIs have been carefully crafted to achieve the best possible performance when using them, either through reduced memory allocation, micro-optimizations at the assembly level, or by structuring the APIs in a way that facilitates writing performance oriented code in general.",
944+
"Icon": "/Assets/Helpers.png",
945+
"DocumentationUrl": "https://raw.githubusercontent.com/MicrosoftDocs/WindowsCommunityToolkitDocs/master/docs/high-performance/Introduction.md"
946+
},
933947
{
934948
"Name": "PlatformSpecificAnalyzer",
935949
"Subcategory": "Developer",
@@ -969,7 +983,7 @@
969983
"DocumentationUrl": "https://raw.githubusercontent.com/MicrosoftDocs/WindowsCommunityToolkitDocs/master/docs/helpers/Triggers.md"
970984
},
971985
{
972-
"Name": "IsNullOrEmptyStateTriggers",
986+
"Name": "IsNullOrEmptyStateTrigger",
973987
"Type": "IsNullOrEmptyStateTriggerPage",
974988
"Subcategory": "State Triggers",
975989
"About": "Enables a state if an Object is null or a String/IEnumerable is empty",

Microsoft.Toolkit.Uwp.SampleApp/landingPageLinks.json

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"new-section-title": "What's New",
3-
"new-samples": [ "EyeDropper", "ViewportBehavior", "LoginButton", "PeoplePicker", "PersonView" ],
3+
"new-samples": [ "TokenizingTextBox", "PipelineBrush", "WrapLayout", "IsNullOrEmptyStateTrigger", "High Performance APIs" ],
44
"resources": [
55
{
66
"title": "Toolkit",
@@ -21,13 +21,13 @@
2121
"title": "Roadmap",
2222
"url": "https://github.com/windows-toolkit/WindowsCommunityToolkit/milestones"
2323
},
24-
{
25-
"title": "UserVoice",
26-
"url": "https://wpdev.uservoice.com/forums/110705-universal-windows-platform/category/193402-uwp-community-toolkit"
27-
},
2824
{
2925
"title": "Contributors",
3026
"url": "https://github.com/windows-toolkit/WindowsCommunityToolkit/graphs/contributors"
27+
},
28+
{
29+
"title": "UWP Community Discord",
30+
"url": "https://discord.gg/zBA5aCn"
3131
}
3232
]
3333
},
@@ -40,15 +40,15 @@
4040
},
4141
{
4242
"title": "Get started with Windows apps",
43-
"url": "https://developer.microsoft.com/windows/apps/getstarted"
43+
"url": "https://docs.microsoft.com/windows/uwp/get-started/"
4444
},
4545
{
4646
"title": "Windows apps design",
47-
"url": "https://developer.microsoft.com/en-us/windows/apps/design"
47+
"url": "https://docs.microsoft.com/windows/uwp/design/"
4848
},
4949
{
5050
"title": "Code samples",
51-
"url": "https://developer.microsoft.com/en-us/windows/samples"
51+
"url": "https://developer.microsoft.com/windows/samples/"
5252
},
5353
{
5454
"title": "UWP app samples",
@@ -58,13 +58,17 @@
5858
"title": "XAML Controls Gallery",
5959
"url": "https://www.microsoft.com/p/xaml-controls-gallery/9msvh128x2zt"
6060
},
61+
{
62+
"title": "XAML Studio",
63+
"url": "https://aka.ms/GetXAMLStudio"
64+
},
6165
{
6266
"title": "Windows UI Library",
6367
"url": "https://docs.microsoft.com/uwp/toolkits/winui/"
6468
},
6569
{
6670
"title": "Windows Template Studio",
67-
"url": "https://github.com/microsoft/windowsTemplateStudio"
71+
"url": "https://github.com/microsoft/WindowsTemplateStudio"
6872
},
6973
{
7074
"title": "UI for UWP",

0 commit comments

Comments
 (0)