From 1a746e0138229bc7983bd52ef752bc1af5b56816 Mon Sep 17 00:00:00 2001 From: Stanley Goldman Date: Mon, 10 Dec 2018 15:11:03 -0500 Subject: [PATCH 1/2] Changing the path used shared settings to something located in the home directory for linux users --- src/GitHub.Api/Platform/DefaultEnvironment.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitHub.Api/Platform/DefaultEnvironment.cs b/src/GitHub.Api/Platform/DefaultEnvironment.cs index d056f21c1..2eed349ba 100644 --- a/src/GitHub.Api/Platform/DefaultEnvironment.cs +++ b/src/GitHub.Api/Platform/DefaultEnvironment.cs @@ -33,7 +33,7 @@ public DefaultEnvironment() else { localAppData = GetSpecialFolder(Environment.SpecialFolder.LocalApplicationData).ToNPath(); - commonAppData = "/usr/local/share/".ToNPath(); + commonAppData = GetSpecialFolder(Environment.SpecialFolder.ApplicationData).ToNPath(); } UserCachePath = localAppData.Combine(ApplicationInfo.ApplicationName); From 2ee51018b419be05c93b043ea3c844216064aeb7 Mon Sep 17 00:00:00 2001 From: Stanley Goldman Date: Mon, 10 Dec 2018 15:11:09 -0500 Subject: [PATCH 2/2] Updating some docs --- .github/ISSUE_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a180d0516..c17e1dc1c 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -10,6 +10,7 @@ Have you read GitHub for Unity's Code of Conduct? By filing an Issue, you are ex - Include the log file in the PR. - On Windows, the extension log file is at `%LOCALAPPDATA%\GitHubUnity\github-unity.log` - On macOS, the extension log file is at `~/Library/Logs/GitHubUnity/github-unity.log` + - On linux, the extension log file is at `~/.local/share/GitHubUnity/github-unity.log` ### Description