Browse Source

Fix version and logger.

Stephen Damm 5 years ago
parent
commit
bcbdb687b8
2 changed files with 2 additions and 2 deletions
  1. 1 1
      SongBrowserPlugin/Logging/Logger.cs
  2. 1 1
      SongBrowserPlugin/Plugin.cs

+ 1 - 1
SongBrowserPlugin/Logging/Logger.cs

@@ -14,7 +14,7 @@ namespace SongBrowser.Logging
     public class Logger
     public class Logger
     {
     {
         private static readonly string LoggerName = "SongBrowser";
         private static readonly string LoggerName = "SongBrowser";
-        private static readonly LogLevel LogLevel = LogLevel.Debug;
+        private static readonly LogLevel LogLevel = LogLevel.Info;
         private static readonly ConsoleColor DefaultFgColor = ConsoleColor.Gray;
         private static readonly ConsoleColor DefaultFgColor = ConsoleColor.Gray;
 
 
         private static void ResetForegroundColor()
         private static void ResetForegroundColor()

+ 1 - 1
SongBrowserPlugin/Plugin.cs

@@ -12,7 +12,7 @@ namespace SongBrowser
 {
 {
     public class Plugin : IPlugin
     public class Plugin : IPlugin
     {
     {
-        public const string VERSION_NUMBER = "5.0.0-Beta-4";
+        public const string VERSION_NUMBER = "5.0.0";
         public static Plugin Instance;
         public static Plugin Instance;
 
 
         public string Name
         public string Name