mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-30 05:47:38 +00:00
Release version 0.1.1
This commit is contained in:
parent
d9a90e20d7
commit
cf85bde358
4
GUI/AboutBox.Designer.cs
generated
4
GUI/AboutBox.Designer.cs
generated
@ -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
|
||||
//
|
||||
|
@ -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() {
|
||||
|
@ -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")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user