From 0f27d68edfd8a81ebf7e9a9a6e10c7c36f8987d0 Mon Sep 17 00:00:00 2001 From: Austin Noska Date: Mon, 9 Sep 2019 15:25:35 -0400 Subject: [PATCH 1/2] fix: Net Standard: the Root Config Path is now ICD.Connect in the current environments ProgramData directory --- ICD.Common.Utils/PathUtils.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ICD.Common.Utils/PathUtils.cs b/ICD.Common.Utils/PathUtils.cs index bf53748..7faa121 100644 --- a/ICD.Common.Utils/PathUtils.cs +++ b/ICD.Common.Utils/PathUtils.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.IO; using System.Linq; using ICD.Common.Properties; using ICD.Common.Utils.Extensions; @@ -48,7 +49,7 @@ namespace ICD.Common.Utils #elif LINUX return Join(RootPath, "opt", "ICD.Connect"); #else - return Join(RootPath, "ProgramData", "ICD.Connect"); + return Join(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "ICD.Connect"); #endif } } From 8c0416f70e70dd52a80858815d0b149ed8374fef Mon Sep 17 00:00:00 2001 From: Austin Noska Date: Mon, 9 Sep 2019 15:28:03 -0400 Subject: [PATCH 2/2] docs: updating changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92f2ac1..818ffb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] - ### Added - Added a method for converting 24 hour to 12 hour format - Added a method for determining if a culture uses 24 hour format - Added math util method for mod - Added TimeSpan extension methods for cycling hours and minutes without modifying the day +### Changed + - The Root Config path in Net Standard will now be the ICD.Connect folder in the current environments ProgramData directory + ## [9.8.0] - 2019-09-03 ### Added - Added Public API Properties to get the program install date based on the creation date of core dll file for NetStandard and SimplSharp