Release version 0.1.1
authormoel.mich
Wed, 27 Jan 2010 23:10:38 +0000
changeset 5a5ecd988d38f
parent 4 5d81d4a63965
child 6 56c9d6c8c08b
Release version 0.1.1
GUI/AboutBox.Designer.cs
Hardware/CPU/IntelCPU.cs
Properties/AssemblyInfo.cs
     1.1 --- a/GUI/AboutBox.Designer.cs	Wed Jan 27 23:00:13 2010 +0000
     1.2 +++ b/GUI/AboutBox.Designer.cs	Wed Jan 27 23:10:38 2010 +0000
     1.3 @@ -122,9 +122,9 @@
     1.4        this.label3.Location = new System.Drawing.Point(86, 36);
     1.5        this.label3.Margin = new System.Windows.Forms.Padding(12, 0, 12, 0);
     1.6        this.label3.Name = "label3";
     1.7 -      this.label3.Size = new System.Drawing.Size(90, 15);
     1.8 +      this.label3.Size = new System.Drawing.Size(99, 15);
     1.9        this.label3.TabIndex = 4;
    1.10 -      this.label3.Text = "Version 0.1 Beta";
    1.11 +      this.label3.Text = "Version 0.1.1 Beta";
    1.12        // 
    1.13        // label4
    1.14        // 
     2.1 --- a/Hardware/CPU/IntelCPU.cs	Wed Jan 27 23:00:13 2010 +0000
     2.2 +++ b/Hardware/CPU/IntelCPU.cs	Wed Jan 27 23:10:38 2010 +0000
     2.3 @@ -141,7 +141,17 @@
     2.4      }
     2.5  
     2.6      public string GetReport() {
     2.7 -      return null;
     2.8 +      StringBuilder r = new StringBuilder();
     2.9 +
    2.10 +      r.AppendLine("Intel CPU");
    2.11 +      r.AppendLine();
    2.12 +      r.AppendFormat("Name: {0}{1}", name, Environment.NewLine);
    2.13 +      r.AppendFormat("Number of cores: {0}{1}", coreTemperatures.Length, 
    2.14 +        Environment.NewLine);
    2.15 +      r.AppendFormat("TjMax: {0}{1}", tjMax, Environment.NewLine);
    2.16 +      r.AppendLine();
    2.17 +
    2.18 +      return r.ToString();
    2.19      }
    2.20  
    2.21      public void Update() {
     3.1 --- a/Properties/AssemblyInfo.cs	Wed Jan 27 23:00:13 2010 +0000
     3.2 +++ b/Properties/AssemblyInfo.cs	Wed Jan 27 23:10:38 2010 +0000
     3.3 @@ -32,5 +32,5 @@
     3.4  // You can specify all the values or you can default the Build and Revision Numbers 
     3.5  // by using the '*' as shown below:
     3.6  // [assembly: AssemblyVersion("1.0.*")]
     3.7 -[assembly: AssemblyVersion("0.1.0.0")]
     3.8 +[assembly: AssemblyVersion("0.1.1.0")]
     3.9  [assembly: AssemblyFileVersion("0.1.0.0")]