mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-17 11:35:08 -04:00
Release 0.98.6.
This commit is contained in:
parent
d7972f43f3
commit
21ae80972a
@ -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 ),
|
||||
|
@ -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;
|
||||
|
||||
|
@ -85,7 +85,6 @@ namespace Launcher2 {
|
||||
} catch( Exception ) {
|
||||
FontName = "Arial";
|
||||
Options.Set( "gui-fontname", "Arial" );
|
||||
FontFamily.Families;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user