diff --git a/src/CustomConsole.cs b/src/CustomConsole.cs index 3141fd7..34d7cbe 100644 --- a/src/CustomConsole.cs +++ b/src/CustomConsole.cs @@ -16,15 +16,15 @@ internal class CustomConsole : MonoBehaviour private const string s_argPattern = @"((?:<[^>]+>)|(?:\[[^\]]+\]))"; // GUI Style values. - private const int s_maxHistory = 1000; + private const int s_maxHistory = 5000; private const int s_fontSize = 16; private const int s_historyEntryMargin = 10; private static Color s_backgroundColor = new Color32(42, 47, 58, 165); - private GUIStyle m_consoleStyle = new GUIStyle(); + private GUIStyle m_consoleStyle = new GUIStyle(); private Font m_font = Font.CreateDynamicFontFromOSFont("Consolas", s_fontSize); // History-related values. - private List m_history = new List(); + private List m_history = new List(); // GUI drawing variables. private Vector2 m_scrollPosition = new Vector2(0, int.MaxValue); diff --git a/src/Gungnir.cs b/src/Gungnir.cs index 9a4ff73..d0238f0 100644 --- a/src/Gungnir.cs +++ b/src/Gungnir.cs @@ -16,7 +16,7 @@ public class Gungnir : BaseUnityPlugin public const string ModName = "Gungnir"; public const string ModOrg = "zamboni"; public const string ModGUID = ModOrg + "." + ModName; - public const string ModVersion = "1.7.3"; + public const string ModVersion = "1.7.4"; private readonly Harmony m_harmony = new Harmony(ModGUID); private CommandHandler m_handler = new CommandHandler();