From 9f1831d385880a403be4693c65331664afe5ca38 Mon Sep 17 00:00:00 2001 From: Max Palmer <53301524+MaxPalmer-UH@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:07:19 +0100 Subject: [PATCH] =?UTF-8?q?Fixed=20broken=20project=20validation=20help=20?= =?UTF-8?q?link=20for=20-=20MRTK3=20profile=20may=20nee=E2=80=A6=20(#886)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixed broken porject validation help link for - MRTK3 profile may need to be assigned for the Standalone build target * Updated changelog to add PR link * Removed the locale from the modified url --------- Co-authored-by: Max Palme --- org.mixedrealitytoolkit.core/CHANGELOG.md | 6 ++++++ .../Editor/MRTKProjectValidation.cs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/org.mixedrealitytoolkit.core/CHANGELOG.md b/org.mixedrealitytoolkit.core/CHANGELOG.md index 7534ff1df..6ac09fd09 100644 --- a/org.mixedrealitytoolkit.core/CHANGELOG.md +++ b/org.mixedrealitytoolkit.core/CHANGELOG.md @@ -2,6 +2,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [3.3.0-development] - 2024-06-24 + +### Fixed + +* Fixed broken project validation help link, for item 'MRTK3 profile may need to be assigned for the Standalone build target' (Issue #882) [PR#886 (https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/886)] + ## [3.2.2-development] - 2024-06-13 ### Fixed diff --git a/org.mixedrealitytoolkit.core/Editor/MRTKProjectValidation.cs b/org.mixedrealitytoolkit.core/Editor/MRTKProjectValidation.cs index 27abd0925..855ac453f 100644 --- a/org.mixedrealitytoolkit.core/Editor/MRTKProjectValidation.cs +++ b/org.mixedrealitytoolkit.core/Editor/MRTKProjectValidation.cs @@ -130,7 +130,7 @@ private static BuildValidationRule GenerateProfileRule(BuildTargetGroup buildTar AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(DefaultMRTKProfileGuid))), FixItMessage = $"Assign the default MRTK3 profile for the {buildTargetGroup} build target", Error = false, - HelpLink = "https://docs.microsoft.com/windows/mixed-reality/mrtk-unity/mrtk3-overview/setup#4-configure-mrtk-profile-after-import" + HelpLink = "https://learn.microsoft.com/windows/mixed-reality/mrtk-unity/mrtk3-overview/getting-started/setting-up/setup-new-project#4-configure-mrtk-profile-after-import" }; }