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

@ -44,7 +44,6 @@ namespace ClassicalSharp {
} ),
// 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 ),

View File

@ -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;

View File

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

View File

@ -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;