Release version 0.1.9. Fixed ATI GPU id check.
1.1 --- a/Hardware/ATI/ATIGroup.cs Mon Feb 01 22:11:06 2010 +0000
1.2 +++ b/Hardware/ATI/ATIGroup.cs Mon Feb 01 23:10:05 2010 +0000
1.3 @@ -101,7 +101,7 @@
1.4 report.Append("AdapterID: 0x");
1.5 report.AppendLine(adapterID.ToString("X"));
1.6
1.7 - if (adapterID > 0 &&
1.8 + if (adapterID != 0 &&
1.9 adapterInfo[i].UDID != "" &&
1.10 adapterInfo[i].Present > 0 &&
1.11 (adapterInfo[i].VendorID == ADL.ATI_VENDOR_ID1 ||
2.1 --- a/Properties/AssemblyInfo.cs Mon Feb 01 22:11:06 2010 +0000
2.2 +++ b/Properties/AssemblyInfo.cs Mon Feb 01 23:10:05 2010 +0000
2.3 @@ -69,5 +69,5 @@
2.4 // You can specify all the values or you can default the Build and Revision Numbers
2.5 // by using the '*' as shown below:
2.6 // [assembly: AssemblyVersion("1.0.*")]
2.7 -[assembly: AssemblyVersion("0.1.8.0")]
2.8 -[assembly: AssemblyFileVersion("0.1.8.0")]
2.9 +[assembly: AssemblyVersion("0.1.9.0")]
2.10 +[assembly: AssemblyFileVersion("0.1.9.0")]