Skip to content

Commit

Permalink
Bump for latest patch
Browse files Browse the repository at this point in the history
  • Loading branch information
zambony committed Oct 12, 2023
1 parent ecb04b9 commit bce0184
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/CustomConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<string> m_history = new List<string>();
private List<string> m_history = new List<string>();

// GUI drawing variables.
private Vector2 m_scrollPosition = new Vector2(0, int.MaxValue);
Expand Down
2 changes: 1 addition & 1 deletion src/Gungnir.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit bce0184

Please sign in to comment.