From 21e583f81e4b370e8efe1d87a2f913490cc96202 Mon Sep 17 00:00:00 2001 From: Lucas Teske Date: Thu, 23 Feb 2017 00:52:52 -0300 Subject: [PATCH] Changed assembly version to 1.0.2 --- goesdump/Properties/AssemblyInfo.cs | 6 +++--- goesdump/UIComponents/MouseCursor.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/goesdump/Properties/AssemblyInfo.cs b/goesdump/Properties/AssemblyInfo.cs index d11b816..77c0cf6 100644 --- a/goesdump/Properties/AssemblyInfo.cs +++ b/goesdump/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle ("GOES Dumper")] [assembly: AssemblyDescription ("OpenSatelliteProject GOES Data Dumper")] [assembly: AssemblyConfiguration ("")] -[assembly: AssemblyCompany ("")] -[assembly: AssemblyProduct ("")] +[assembly: AssemblyCompany ("OpenSatelliteProject")] +[assembly: AssemblyProduct ("GOES Dumper")] [assembly: AssemblyCopyright ("Lucas Teske")] [assembly: AssemblyTrademark ("")] [assembly: AssemblyCulture ("")] @@ -17,7 +17,7 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion ("1.0.0")] +[assembly: AssemblyVersion ("1.0.2")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/goesdump/UIComponents/MouseCursor.cs b/goesdump/UIComponents/MouseCursor.cs index 61bd0fc..64d5589 100644 --- a/goesdump/UIComponents/MouseCursor.cs +++ b/goesdump/UIComponents/MouseCursor.cs @@ -27,8 +27,8 @@ public void draw(SpriteBatch spriteBatch, Microsoft.Xna.Framework.GameTime gameT #region Updatable implementation public void update(Microsoft.Xna.Framework.GameTime gameTime) { - Point mPos = Mouse.GetState().Position; - position = new Rectangle(mPos.X, mPos.Y, cursorSize, cursorSize); + //Point mPos = Mouse.GetState().Position; + //position = new Rectangle(mPos.X, mPos.Y, cursorSize, cursorSize); } #endregion