Release version 0.1.1

This commit is contained in:
Michael Möller 2010-01-27 23:10:38 +00:00
parent d9a90e20d7
commit cf85bde358
3 changed files with 14 additions and 4 deletions

View File

@ -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
//

View File

@ -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() {

View File

@ -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")]