Browse Source

Merge branch 'master' into fastload

HOME 3 years ago
parent
commit
9fbaff8e63

+ 1 - 1
BeatModsReleaseTemplate.txt

@@ -1,6 +1,6 @@
 SongBrowser
 
-6.1.3
+6.1.4
 
 SongCore@3.0.0,SongDataCore@1.3.5
 

+ 1 - 1
SongBrowserPlugin/Logging/Logger.cs

@@ -29,7 +29,7 @@ namespace SongBrowser.Logging
                 return;
             }
             Console.ForegroundColor = ConsoleColor.Cyan;
-            Console.WriteLine("[" + LoggerName + " @ " + DateTime.Now.ToString("HH:mm") + " - Trace] " + String.Format(format, args));
+            Plugin.Log.Trace("[" + LoggerName + " @ " + DateTime.Now.ToString("HH:mm") + " - Trace] " + String.Format(format, args));
             ResetForegroundColor();
         }
 

+ 1 - 1
SongBrowserPlugin/SongBrowserApplication.cs

@@ -44,7 +44,7 @@ namespace SongBrowser
 
             SongBrowserApplication.MainProgressBar = SongBrowser.UI.ProgressBar.Create();
 
-            Console.WriteLine("SongBrowser Plugin Loaded()");
+            Plugin.Log.Info("SongBrowser Plugin OnLoad Complete");
         }
 
         /// <summary>

+ 1 - 1
SongBrowserPlugin/UI/Base64Sprites.cs

@@ -49,7 +49,7 @@ namespace SongBrowser.UI
             }
             catch (Exception)
             {
-                Console.WriteLine("Exception loading texture from base64 data.");
+                Plugin.Log.Critical("Exception loading texture from base64 data.");
                 s = null;
             }
 

+ 1 - 1
SongBrowserPlugin/manifest.json

@@ -5,7 +5,7 @@
   "gameVersion": "1.13.2",
   "id": "SongBrowser",
   "name": "Song Browser",
-  "version": "6.1.3",
+  "version": "6.1.4",
   "dependsOn": {
     "SongCore": "^3.0.0",
     "SongDataCore": "^1.3.5",