Fixed Issue 645.
1.1 --- a/GUI/AboutBox.Designer.cs Sun Dec 28 17:54:26 2014 +0000
1.2 +++ b/GUI/AboutBox.Designer.cs Sun Dec 28 22:42:36 2014 +0000
1.3 @@ -84,7 +84,7 @@
1.4 this.label2.Name = "label2";
1.5 this.label2.Size = new System.Drawing.Size(273, 13);
1.6 this.label2.TabIndex = 3;
1.7 - this.label2.Text = "Copyright © 2009-2013 Michael Möller and contributers. ";
1.8 + this.label2.Text = "Copyright © 2009-2014 Michael Möller and contributers. ";
1.9 //
1.10 // label3
1.11 //
2.1 --- a/Hardware/CPU/CPUGroup.cs Sun Dec 28 17:54:26 2014 +0000
2.2 +++ b/Hardware/CPU/CPUGroup.cs Sun Dec 28 22:42:36 2014 +0000
2.3 @@ -4,7 +4,7 @@
2.4 License, v. 2.0. If a copy of the MPL was not distributed with this
2.5 file, You can obtain one at http://mozilla.org/MPL/2.0/.
2.6
2.7 - Copyright (C) 2009-2013 Michael Möller <mmoeller@openhardwaremonitor.org>
2.8 + Copyright (C) 2009-2014 Michael Möller <mmoeller@openhardwaremonitor.org>
2.9
2.10 */
2.11
2.12 @@ -23,7 +23,7 @@
2.13 private static CPUID[][] GetProcessorThreads() {
2.14
2.15 List<CPUID> threads = new List<CPUID>();
2.16 - for (int i = 0; i < 32; i++) {
2.17 + for (int i = 0; i < 64; i++) {
2.18 try {
2.19 threads.Add(new CPUID(i));
2.20 } catch (ArgumentOutOfRangeException) { }
3.1 --- a/Hardware/CPU/CPUID.cs Sun Dec 28 17:54:26 2014 +0000
3.2 +++ b/Hardware/CPU/CPUID.cs Sun Dec 28 22:42:36 2014 +0000
3.3 @@ -4,7 +4,7 @@
3.4 License, v. 2.0. If a copy of the MPL was not distributed with this
3.5 file, You can obtain one at http://mozilla.org/MPL/2.0/.
3.6
3.7 - Copyright (C) 2009-2010 Michael Möller <mmoeller@openhardwaremonitor.org>
3.8 + Copyright (C) 2009-2014 Michael Möller <mmoeller@openhardwaremonitor.org>
3.9
3.10 */
3.11
3.12 @@ -76,7 +76,7 @@
3.13
3.14 uint eax, ebx, ecx, edx;
3.15
3.16 - if (thread >= 32)
3.17 + if (thread >= 64)
3.18 throw new ArgumentOutOfRangeException("thread");
3.19 ulong mask = 1UL << thread;
3.20
4.1 --- a/Properties/AssemblyVersion.cs Sun Dec 28 17:54:26 2014 +0000
4.2 +++ b/Properties/AssemblyVersion.cs Sun Dec 28 22:42:36 2014 +0000
4.3 @@ -10,5 +10,5 @@
4.4
4.5 using System.Reflection;
4.6
4.7 -[assembly: AssemblyVersion("0.6.0.14")]
4.8 -[assembly: AssemblyInformationalVersion("0.6.0.14 Alpha")]
4.9 \ No newline at end of file
4.10 +[assembly: AssemblyVersion("0.6.0.15")]
4.11 +[assembly: AssemblyInformationalVersion("0.6.0.15 Alpha")]
4.12 \ No newline at end of file