diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs index 43d2403..420419b 100644 --- a/Assembly/ASMInfo.cs +++ b/Assembly/ASMInfo.cs @@ -7,7 +7,13 @@ namespace Bot.Assemble public class ASMInfo { public static string BotName = "ZBotCore"; - public static double BotVer = 5.1; - public static string GitPassword = "**REMOVED**"; + public static double BotVer = 5.2; + public static string GitPassword + { + get + { + return MainConfiguration.Load().GitPassword; + } + } } } diff --git a/ConfigSystem/MainConfiguration.cs b/ConfigSystem/MainConfiguration.cs index 5efdee0..6e48bae 100644 --- a/ConfigSystem/MainConfiguration.cs +++ b/ConfigSystem/MainConfiguration.cs @@ -28,6 +28,8 @@ namespace Bot //public License LicenseKey { get; set; } public string ActivationCode { get; set; } + public string GitPassword { get; set; } + public MainConfiguration() {