diff --git a/GUI/AboutBox.Designer.cs b/GUI/AboutBox.Designer.cs index 231a5c8..2ccbbe6 100644 --- a/GUI/AboutBox.Designer.cs +++ b/GUI/AboutBox.Designer.cs @@ -122,9 +122,9 @@ namespace OpenHardwareMonitor.GUI { this.label3.Location = new System.Drawing.Point(86, 36); this.label3.Margin = new System.Windows.Forms.Padding(12, 0, 12, 0); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(90, 15); + this.label3.Size = new System.Drawing.Size(99, 15); this.label3.TabIndex = 4; - this.label3.Text = "Version 0.1 Beta"; + this.label3.Text = "Version 0.1.1 Beta"; // // label4 // diff --git a/Hardware/CPU/IntelCPU.cs b/Hardware/CPU/IntelCPU.cs index ed0cfa4..ef3a613 100644 --- a/Hardware/CPU/IntelCPU.cs +++ b/Hardware/CPU/IntelCPU.cs @@ -141,7 +141,17 @@ namespace OpenHardwareMonitor.Hardware.CPU { } public string GetReport() { - return null; + StringBuilder r = new StringBuilder(); + + r.AppendLine("Intel CPU"); + r.AppendLine(); + r.AppendFormat("Name: {0}{1}", name, Environment.NewLine); + r.AppendFormat("Number of cores: {0}{1}", coreTemperatures.Length, + Environment.NewLine); + r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine); + r.AppendLine(); + + return r.ToString(); } public void Update() { diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index ff323b9..02110f1 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.1.0.0")] +[assembly: AssemblyVersion("0.1.1.0")] [assembly: AssemblyFileVersion("0.1.0.0")]