This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created class to manage all properties (Globals.cs),
Hotfixed Minimise bug where if minimise after redemption was enabled then you couldn't bring SMITE to the foreground.
- Loading branch information
Showing
81 changed files
with
247 additions
and
98 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Dolphin Script/obj/Debug/Dolphin Script.csproj.GenerateResource.Cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Dolphin Script/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Dolphin Script/obj/Release/Dolphin Script.csproj.GenerateResource.Cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Dolphin Script/obj/Release/TempPE/Properties.Resources.Designer.cs.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
SmiteMixerCodeGrabberCLI/bin/Release/SmiteMixerListener.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
SmiteMixerCodeGrabberCLI/bin/Release/SmiteMixerListener.pdb
Binary file not shown.
Binary file modified
BIN
-20 Bytes
(100%)
...xerCodeGrabberCLI/obj/Debug/SmiteMixerCodeGrabberCLI.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...rCodeGrabberCLI/obj/Release/SmiteMixerCodeGrabberCLI.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
SmiteMixerCodeGrabberCLI/obj/Release/SmiteMixerListener.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
SmiteMixerCodeGrabberCLI/obj/Release/SmiteMixerListener.pdb
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace SmiteMixerCodeGrabberGUI.Classes | ||
{ | ||
class Globals | ||
{ | ||
public static bool AFKMode { get; set; } | ||
public static bool shouldMinimise { get; set; } | ||
public static string smiteWindowTitle { get; set; } | ||
|
||
public static bool notificationSetting | ||
{ | ||
get { return Properties.Settings.Default.notificationSetting; } | ||
set | ||
{ | ||
Properties.Settings.Default.notificationSetting = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static bool whitelistOnly | ||
{ | ||
get { return Properties.Settings.Default.whitelistOnly; } | ||
set | ||
{ | ||
Properties.Settings.Default.whitelistOnly = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static int codeLength | ||
{ | ||
get { return Properties.Settings.Default.codeLength; } | ||
set | ||
{ | ||
Properties.Settings.Default.codeLength = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static string codesStartWith | ||
{ | ||
get { return Properties.Settings.Default.codesStartWith; } | ||
set | ||
{ | ||
Properties.Settings.Default.codesStartWith = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static System.Collections.Specialized.StringCollection whitelistedUsernames | ||
{ | ||
get { return Properties.Settings.Default.whitelistedUsernames; } | ||
set | ||
{ | ||
Properties.Settings.Default.whitelistedUsernames = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static string notificationSoundFilePath | ||
{ | ||
get { return Properties.Settings.Default.notificationSoundFilePath; } | ||
set | ||
{ | ||
Properties.Settings.Default.notificationSoundFilePath = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static bool notificationSound | ||
{ | ||
get { return Properties.Settings.Default.notificationSound; } | ||
set | ||
{ | ||
Properties.Settings.Default.notificationSound = value; | ||
SaveSettings(); | ||
} | ||
} | ||
public static bool minimiseAfterRedeeming | ||
{ | ||
get { return Properties.Settings.Default.minimiseAfterRedeeming; } | ||
set | ||
{ | ||
Properties.Settings.Default.minimiseAfterRedeeming = value; | ||
SaveSettings(); | ||
} | ||
} | ||
|
||
private static void SaveSettings() | ||
{ | ||
Properties.Settings.Default.Save(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.