mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-23 20:57:12 -04:00
Release 0.99.3
This commit is contained in:
parent
a69309e12d
commit
764fea65cb
@ -9,7 +9,7 @@ namespace ClassicalSharp {
|
||||
|
||||
internal static class Program {
|
||||
|
||||
public const string AppName = "ClassicalSharp 0.99.2";
|
||||
public const string AppName = "ClassicalSharp 0.99.3";
|
||||
|
||||
public static string AppDirectory;
|
||||
|
||||
|
@ -10,4 +10,4 @@ using System.Runtime.InteropServices;
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: AssemblyVersion("0.99.2")]
|
||||
[assembly: AssemblyVersion("0.99.3")]
|
||||
|
@ -29,11 +29,11 @@ namespace Launcher.Gui.Views {
|
||||
protected override void MakeWidgets() {
|
||||
widgetIndex = 0;
|
||||
|
||||
MakeInput( Get( 0 ), 330, false, 32, "&7Username.." )
|
||||
MakeInput( Get( 0 ), 330, false, 32, "&gUsername.." )
|
||||
.SetLocation( Anchor.Centre, Anchor.Centre, 0, -120 );
|
||||
MakeInput( Get( 1 ), 330, false, 64, "&7IP address:Port number.." )
|
||||
MakeInput( Get( 1 ), 330, false, 64, "&gIP address:Port number.." )
|
||||
.SetLocation( Anchor.Centre, Anchor.Centre, 0, -75 );
|
||||
MakeInput( Get( 2 ), 330, false, 32, "&7Mppass.." )
|
||||
MakeInput( Get( 2 ), 330, false, 32, "&gMppass.." )
|
||||
.SetLocation( Anchor.Centre, Anchor.Centre, 0, -30 );
|
||||
|
||||
connectIndex = widgetIndex;
|
||||
|
@ -41,9 +41,9 @@ namespace Launcher.Gui.Views {
|
||||
internal string updateText = "&eChecking..";
|
||||
protected override void MakeWidgets() {
|
||||
widgetIndex = 0;
|
||||
MakeInput( Get( 0 ), 280, false, 16, "&7Username.." )
|
||||
MakeInput( Get( 0 ), 280, false, 16, "&gUsername.." )
|
||||
.SetLocation( Anchor.Centre, Anchor.Centre, 0, -120 );
|
||||
MakeInput( Get( 1 ), 280, true, 64, "&7Password.." )
|
||||
MakeInput( Get( 1 ), 280, true, 64, "&gPassword.." )
|
||||
.SetLocation( Anchor.Centre, Anchor.Centre, 0, -75 );
|
||||
|
||||
loginIndex = widgetIndex;
|
||||
|
@ -35,9 +35,9 @@ namespace Launcher.Gui.Views {
|
||||
|
||||
protected override void MakeWidgets() {
|
||||
widgetIndex = 0;
|
||||
MakeInput( Get( 0 ), 475, false, 32, "&7Search servers.." )
|
||||
MakeInput( Get( 0 ), 475, false, 32, "&gSearch servers.." )
|
||||
.SetLocation( Anchor.LeftOrTop, Anchor.LeftOrTop, 10, 10 );
|
||||
MakeInput( Get( 1 ), 475, false, 32, "&7classicube.net/server/play/..." )
|
||||
MakeInput( Get( 1 ), 475, false, 32, "&gclassicube.net/server/play/..." )
|
||||
.SetLocation( Anchor.LeftOrTop, Anchor.BottomOrRight, 10, -10 );
|
||||
|
||||
Makers.Button( this, "Back", 110, 30, titleFont )
|
||||
|
@ -84,14 +84,17 @@ namespace Launcher {
|
||||
//Minimised = Window.WindowState == WindowState.Minimized;
|
||||
|
||||
PlatformID platform = Environment.OSVersion.Platform;
|
||||
if( platform == PlatformID.Win32Windows )
|
||||
if( platform == PlatformID.Win32Windows ) {
|
||||
platformDrawer = new WinOldPlatformDrawer();
|
||||
else if( Configuration.RunningOnWindows )
|
||||
} else if( Configuration.RunningOnWindows ) {
|
||||
platformDrawer = new WinPlatformDrawer();
|
||||
else if( Configuration.RunningOnX11 )
|
||||
} else if( Configuration.RunningOnX11 ) {
|
||||
platformDrawer = new X11PlatformDrawer();
|
||||
else if( Configuration.RunningOnMacOS )
|
||||
} else if( Configuration.RunningOnMacOS ) {
|
||||
platformDrawer = new OSXPlatformDrawer();
|
||||
}
|
||||
|
||||
Drawer.Colours['g'] = new FastColour( 125, 125, 125 );
|
||||
}
|
||||
|
||||
void LoadFont() {
|
||||
|
@ -8,7 +8,7 @@ namespace Launcher {
|
||||
|
||||
internal static class Program {
|
||||
|
||||
public const string AppName = "ClassicalSharp Launcher 0.99.2";
|
||||
public const string AppName = "ClassicalSharp Launcher 0.99.3";
|
||||
|
||||
public static string AppDirectory;
|
||||
|
||||
|
@ -10,4 +10,4 @@ using System.Runtime.InteropServices;
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: AssemblyVersion("0.99.2")]
|
||||
[assembly: AssemblyVersion("0.99.3")]
|
||||
|
@ -9,4 +9,4 @@ using System.Runtime.InteropServices;
|
||||
[assembly: AssemblyTrademark("OpenTK")]
|
||||
[assembly: System.Security.AllowPartiallyTrustedCallers]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: AssemblyVersion("0.99.2")]
|
||||
[assembly: AssemblyVersion("0.99.3")]
|
Loading…
x
Reference in New Issue
Block a user