From 764fea65cb836b4523f2bfe860028ab7e32d7779 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 18 Oct 2016 09:11:57 +1100 Subject: [PATCH] Release 0.99.3 --- ClassicalSharp/Program.cs | 2 +- ClassicalSharp/Properties/AssemblyInfo.cs | 2 +- Launcher2/Gui/Views/DirectConnectView.cs | 6 +++--- Launcher2/Gui/Views/MainView.cs | 4 ++-- Launcher2/Gui/Views/ServersView.cs | 4 ++-- Launcher2/LauncherWindow.cs | 11 +++++++---- Launcher2/Program.cs | 2 +- Launcher2/Properties/AssemblyInfo.cs | 2 +- OpenTK/Properties/AssemblyInfo.cs | 2 +- 9 files changed, 19 insertions(+), 16 deletions(-) diff --git a/ClassicalSharp/Program.cs b/ClassicalSharp/Program.cs index 29db89bda..58daa4399 100644 --- a/ClassicalSharp/Program.cs +++ b/ClassicalSharp/Program.cs @@ -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; diff --git a/ClassicalSharp/Properties/AssemblyInfo.cs b/ClassicalSharp/Properties/AssemblyInfo.cs index 33f9dd876..7a0b28c03 100644 --- a/ClassicalSharp/Properties/AssemblyInfo.cs +++ b/ClassicalSharp/Properties/AssemblyInfo.cs @@ -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")] diff --git a/Launcher2/Gui/Views/DirectConnectView.cs b/Launcher2/Gui/Views/DirectConnectView.cs index 953526c45..b11938e0d 100644 --- a/Launcher2/Gui/Views/DirectConnectView.cs +++ b/Launcher2/Gui/Views/DirectConnectView.cs @@ -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; diff --git a/Launcher2/Gui/Views/MainView.cs b/Launcher2/Gui/Views/MainView.cs index d20d67e15..e20fd9ed3 100644 --- a/Launcher2/Gui/Views/MainView.cs +++ b/Launcher2/Gui/Views/MainView.cs @@ -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; diff --git a/Launcher2/Gui/Views/ServersView.cs b/Launcher2/Gui/Views/ServersView.cs index d6e29d8d3..b3c8b9bbf 100644 --- a/Launcher2/Gui/Views/ServersView.cs +++ b/Launcher2/Gui/Views/ServersView.cs @@ -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 ) diff --git a/Launcher2/LauncherWindow.cs b/Launcher2/LauncherWindow.cs index 00105f734..24c8bfc21 100644 --- a/Launcher2/LauncherWindow.cs +++ b/Launcher2/LauncherWindow.cs @@ -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() { diff --git a/Launcher2/Program.cs b/Launcher2/Program.cs index 60eae9541..e4a168268 100644 --- a/Launcher2/Program.cs +++ b/Launcher2/Program.cs @@ -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; diff --git a/Launcher2/Properties/AssemblyInfo.cs b/Launcher2/Properties/AssemblyInfo.cs index b3db16965..694bb0f46 100644 --- a/Launcher2/Properties/AssemblyInfo.cs +++ b/Launcher2/Properties/AssemblyInfo.cs @@ -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")] diff --git a/OpenTK/Properties/AssemblyInfo.cs b/OpenTK/Properties/AssemblyInfo.cs index 31a2fe692..29de4b78b 100644 --- a/OpenTK/Properties/AssemblyInfo.cs +++ b/OpenTK/Properties/AssemblyInfo.cs @@ -9,4 +9,4 @@ using System.Runtime.InteropServices; [assembly: AssemblyTrademark("OpenTK")] [assembly: System.Security.AllowPartiallyTrustedCallers] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("0.99.2")] \ No newline at end of file +[assembly: AssemblyVersion("0.99.3")] \ No newline at end of file