Release 0.98.6.

This commit is contained in:
UnknownShadow200 2016-02-01 18:30:58 +11:00
parent d7972f43f3
commit 21ae80972a
4 changed files with 7 additions and 10 deletions

View File

@ -43,8 +43,7 @@ namespace ClassicalSharp {
Options.Set( OptionsKey.TabAutocomplete, v == "yes" ); Options.Set( OptionsKey.TabAutocomplete, v == "yes" );
} ), } ),
// Column 2 // Column 2
Make( 140, -150, "Clickable chat", OnWidgetClick, Make( 140, -150, "Clickable chat", OnWidgetClick,
g => g.ClickableChat ? "yes" : "no", g => g.ClickableChat ? "yes" : "no",
(g, v) => { g.ClickableChat = v == "yes"; (g, v) => { g.ClickableChat = v == "yes";
@ -67,8 +66,7 @@ namespace ClassicalSharp {
Make( 140, 0, "Arial chat font", OnWidgetClick, Make( 140, 0, "Arial chat font", OnWidgetClick,
g => g.Drawer2D.UseBitmappedChat ? "no" : "yes", g => g.Drawer2D.UseBitmappedChat ? "no" : "yes",
(g, v) => { g.ChatLines = Int32.Parse( v ); (g, v) => { g.Drawer2D.UseBitmappedChat = v == "no";
g.Drawer2D.UseBitmappedChat = v == "no";
Options.Set( OptionsKey.ArialChatFont, v == "yes" ); Options.Set( OptionsKey.ArialChatFont, v == "yes" );
HandleFontChange(); HandleFontChange();
} ), } ),
@ -106,12 +104,12 @@ namespace ClassicalSharp {
validators = new MenuInputValidator[] { validators = new MenuInputValidator[] {
new BooleanValidator(), new BooleanValidator(),
new BooleanValidator(), new BooleanValidator(),
new RealValidator( 0.25f, 5f ), new RealValidator( 0.25f, 4f ),
new RealValidator( 0.25f, 5f ), new RealValidator( 0.25f, 4f ),
new BooleanValidator(), new BooleanValidator(),
new BooleanValidator(), new BooleanValidator(),
new RealValidator( 0.25f, 5f ), new RealValidator( 0.25f, 4f ),
new IntegerValidator( 1, 30 ), new IntegerValidator( 1, 30 ),
new BooleanValidator(), new BooleanValidator(),
new StringValidator( 32 ), new StringValidator( 32 ),

View File

@ -8,7 +8,7 @@ namespace ClassicalSharp {
internal static class Program { internal static class Program {
public const string AppName = "ClassicalSharp 0.98.5"; public const string AppName = "ClassicalSharp 0.98.6";
public static string AppDirectory; public static string AppDirectory;

View File

@ -85,7 +85,6 @@ namespace Launcher2 {
} catch( Exception ) { } catch( Exception ) {
FontName = "Arial"; FontName = "Arial";
Options.Set( "gui-fontname", "Arial" ); Options.Set( "gui-fontname", "Arial" );
FontFamily.Families;
} }
} }

View File

@ -6,7 +6,7 @@ namespace Launcher2 {
internal sealed class Program { 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; public static string AppDirectory;