Skip to content

Commit 7243b57

Browse files
committed
fix(Core): use SnapXL for System Files path
1 parent 830fc50 commit 7243b57

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

SnapX.Core/SettingManager.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public static void LoadApplicationConfig(bool fallbackSupport = true)
137137

138138
configurationBuilder
139139
#if WINDOWS
140-
.AddRegistry(@"Software\BrycensRanch\SnapX")
140+
.AddRegistry(@"Software\SnapXL\SnapX")
141141
#endif
142142
.AddCommandLine(Environment.GetCommandLineArgs())
143143

@@ -167,7 +167,7 @@ public static void LoadUploadersConfig(bool fallbackSupport = true)
167167
// Allows ALL settings to be managed via the Windows Registry.
168168
// This call does nothing on non-Windows Operating Systems
169169
#if WINDOWS
170-
.AddRegistry(@"Software\BrycensRanch\SnapX")
170+
.AddRegistry(@"Software\SnapXL\SnapX")
171171
#endif
172172
.AddEnvironmentVariables(prefix: "SNAPX_")
173173
.AddCommandLine(Environment.GetCommandLineArgs());
@@ -189,7 +189,7 @@ public static void LoadHotkeysConfig(bool fallbackSupport = true)
189189
// Allows ALL settings to be managed via the Windows Registry.
190190
// This call does nothing on non-Windows Operating Systems
191191
#if WINDOWS
192-
.AddRegistry(@"Software\BrycensRanch\SnapX")
192+
.AddRegistry(@"Software\SnapXL\SnapX")
193193
#endif
194194
.AddEnvironmentVariables(prefix: "SNAPX_")
195195
.AddCommandLine(Environment.GetCommandLineArgs());

packaging/PRIVACY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Ensure there are no extra commas at the end of the last item. Do not add the beg
7777

7878
You can additionally disable it with an environment variable. With `SNAPX_DISABLETELEMETRY=true` or the [failed standard](https://consoledonottrack.com/) `DO_NOT_TRACK=1`
7979

80-
You can also set a registry key for those using SnapX in Windows organizations. `Computer\HKEY_LOCAL_MACHINE\SOFTWARE\BrycensRanch\SnapX\DisableTelemetry` with the value of `1`
80+
You can also set a registry key for those using SnapX in Windows organizations. `Computer\HKEY_LOCAL_MACHINE\SOFTWARE\SnapXL\SnapX\DisableTelemetry` with the value of `1`
8181

8282

8383
Settings are pulled in via the first match from:

0 commit comments

Comments
 (0)