From 21ae80972a56bb63ee4bf4fba34a2d5aea3e4cd6 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 1 Feb 2016 18:30:58 +1100 Subject: [PATCH] Release 0.98.6. --- ClassicalSharp/2D/Screens/Menu/GuiOptionsScreen.cs | 12 +++++------- ClassicalSharp/Program.cs | 2 +- Launcher2/LauncherWindow.cs | 1 - Launcher2/Program.cs | 2 +- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/ClassicalSharp/2D/Screens/Menu/GuiOptionsScreen.cs b/ClassicalSharp/2D/Screens/Menu/GuiOptionsScreen.cs index 2b8276800..5d4d22016 100644 --- a/ClassicalSharp/2D/Screens/Menu/GuiOptionsScreen.cs +++ b/ClassicalSharp/2D/Screens/Menu/GuiOptionsScreen.cs @@ -43,8 +43,7 @@ namespace ClassicalSharp { Options.Set( OptionsKey.TabAutocomplete, v == "yes" ); } ), - // Column 2 - + // Column 2 Make( 140, -150, "Clickable chat", OnWidgetClick, g => g.ClickableChat ? "yes" : "no", (g, v) => { g.ClickableChat = v == "yes"; @@ -67,8 +66,7 @@ namespace ClassicalSharp { Make( 140, 0, "Arial chat font", OnWidgetClick, g => g.Drawer2D.UseBitmappedChat ? "no" : "yes", - (g, v) => { g.ChatLines = Int32.Parse( v ); - g.Drawer2D.UseBitmappedChat = v == "no"; + (g, v) => { g.Drawer2D.UseBitmappedChat = v == "no"; Options.Set( OptionsKey.ArialChatFont, v == "yes" ); HandleFontChange(); } ), @@ -106,12 +104,12 @@ namespace ClassicalSharp { validators = new MenuInputValidator[] { new BooleanValidator(), new BooleanValidator(), - new RealValidator( 0.25f, 5f ), - new RealValidator( 0.25f, 5f ), + new RealValidator( 0.25f, 4f ), + new RealValidator( 0.25f, 4f ), new BooleanValidator(), new BooleanValidator(), - new RealValidator( 0.25f, 5f ), + new RealValidator( 0.25f, 4f ), new IntegerValidator( 1, 30 ), new BooleanValidator(), new StringValidator( 32 ), diff --git a/ClassicalSharp/Program.cs b/ClassicalSharp/Program.cs index af9a01c4c..7f9ef01c3 100644 --- a/ClassicalSharp/Program.cs +++ b/ClassicalSharp/Program.cs @@ -8,7 +8,7 @@ namespace ClassicalSharp { internal static class Program { - public const string AppName = "ClassicalSharp 0.98.5"; + public const string AppName = "ClassicalSharp 0.98.6"; public static string AppDirectory; diff --git a/Launcher2/LauncherWindow.cs b/Launcher2/LauncherWindow.cs index 2918d28a8..eccb42290 100644 --- a/Launcher2/LauncherWindow.cs +++ b/Launcher2/LauncherWindow.cs @@ -85,7 +85,6 @@ namespace Launcher2 { } catch( Exception ) { FontName = "Arial"; Options.Set( "gui-fontname", "Arial" ); - FontFamily.Families; } } diff --git a/Launcher2/Program.cs b/Launcher2/Program.cs index d6b4c1d4f..c90d90917 100644 --- a/Launcher2/Program.cs +++ b/Launcher2/Program.cs @@ -6,7 +6,7 @@ namespace Launcher2 { internal sealed class Program { - public const string AppName = "ClassicalSharp Launcher 0.98.5"; + public const string AppName = "ClassicalSharp Launcher 0.98.6"; public static string AppDirectory;