# HG changeset patch
# User moel.mich
# Date 1284822806 0
# Node ID 6ce1c13899e170238b48e36b238d236acbc05654
# Parent  a7c93597137f219d731f0a0a0ab578164d3b2981
Corrected the size of the DriveCommandParameter structure to match the documentation of SENDCMDINPARAMS http://msdn.microsoft.com/en-us/library/ff565401%28VS.85%29.aspx

diff -r a7c93597137f -r 6ce1c13899e1 GUI/AboutBox.cs
--- a/GUI/AboutBox.cs	Fri Sep 17 18:32:11 2010 +0000
+++ b/GUI/AboutBox.cs	Sat Sep 18 15:13:26 2010 +0000
@@ -48,7 +48,7 @@
       InitializeComponent();
       this.Font = SystemFonts.MessageBoxFont;
       this.label3.Text = "Version " + 
-        System.Windows.Forms.Application.ProductVersion + " Beta";
+        System.Windows.Forms.Application.ProductVersion;
       linkLabel.Links.Remove(linkLabel.Links[0]);
       linkLabel.Links.Add(0, linkLabel.Text.Length,
         "http://openhardwaremonitor.org");
diff -r a7c93597137f -r 6ce1c13899e1 Hardware/HDD/SMART.cs
--- a/Hardware/HDD/SMART.cs	Fri Sep 17 18:32:11 2010 +0000
+++ b/Hardware/HDD/SMART.cs	Sat Sep 18 15:13:26 2010 +0000
@@ -154,7 +154,7 @@
       private uint BufferSize;           
       public CommandBlockRegisters Registers;           
       public byte DriveNumber;   
-      [MarshalAs(UnmanagedType.ByValArray, SizeConst = 19)]
+      [MarshalAs(UnmanagedType.ByValArray, SizeConst = 20)]
       public byte[] Reserved;                                
     }
 
diff -r a7c93597137f -r 6ce1c13899e1 Properties/AssemblyVersion.cs
--- a/Properties/AssemblyVersion.cs	Fri Sep 17 18:32:11 2010 +0000
+++ b/Properties/AssemblyVersion.cs	Sat Sep 18 15:13:26 2010 +0000
@@ -38,5 +38,5 @@
 using System;
 using System.Reflection;
 
-[assembly: AssemblyVersion("0.1.37.13")]
-[assembly: AssemblyFileVersion("0.1.37.13")]
+[assembly: AssemblyVersion("0.1.37.14")]
+[assembly: AssemblyInformationalVersion("0.1.37.14 Alpha")]
\ No newline at end of file