Release 0.99.1

This commit is contained in:
UnknownShadow200 2016-06-06 22:00:19 +10:00
parent 303812a0df
commit 0cfd1c2e37
7 changed files with 9 additions and 9 deletions

View File

@ -13,10 +13,10 @@ namespace ClassicalSharp.Gui {
float ScrollbarScale { get { return TableHeight / (float)rows; } }
void DrawScrollbar() {
api.Draw2DQuad( TableX, TableY, scrollbarWidth, TableHeight, scrollCol );
api.Draw2DQuad( TableX - scrollbarWidth, TableY, scrollbarWidth, TableHeight, scrollCol );
int y, height;
GetScrollbarCoords( out y, out height );
api.Draw2DQuad( TableX, TableY + y, scrollbarWidth, height, scrollUsedCol );
api.Draw2DQuad( TableX - scrollbarWidth, TableY + y, scrollbarWidth, height, scrollUsedCol );
}
void GetScrollbarCoords( out int y, out int height ) {

View File

@ -28,8 +28,8 @@ namespace ClassicalSharp.Gui {
int TableX { get { return startX - 5 - 10; } }
int TableY { get { return startY - 5 - 30; } }
int TableWidth { get { return blocksPerRow * blockSize + 10 + 10; } }
int TableHeight { get { return Math.Min( rows, maxRows ) * blockSize + 10 + 30; } }
int TableWidth { get { return blocksPerRow * blockSize + 10 + 20; } }
int TableHeight { get { return Math.Min( rows, maxRows ) * blockSize + 10 + 40; } }
// These were sourced by taking a screenshot of vanilla
// Then using paint to extract the colour components

View File

@ -9,7 +9,7 @@ namespace ClassicalSharp {
internal static class Program {
public const string AppName = "ClassicalSharp 0.99.0";
public const string AppName = "ClassicalSharp 0.99.1";
public static string AppDirectory;

View File

@ -10,4 +10,4 @@ using System.Runtime.InteropServices;
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("0.98.9")]
[assembly: AssemblyVersion("0.99.1")]

View File

@ -7,7 +7,7 @@ namespace Launcher {
internal static class Program {
public const string AppName = "ClassicalSharp Launcher 0.99.0";
public const string AppName = "ClassicalSharp Launcher 0.99.1";
public static string AppDirectory;

View File

@ -10,4 +10,4 @@ using System.Runtime.InteropServices;
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("0.98.9")]
[assembly: AssemblyVersion("0.99.1")]

View File

@ -9,4 +9,4 @@ using System.Runtime.InteropServices;
[assembly: AssemblyTrademark("OpenTK")]
[assembly: System.Security.AllowPartiallyTrustedCallers]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("0.98.9")]
[assembly: AssemblyVersion("0.99.1")]