# HG changeset patch # User moel.mich # Date 1352034653 0 # Node ID 93cee0b9f619265c6d9b6521e34e328c4df0fdea # Parent c25816e366bd30bea6945f080013cd8175cf4aee Changed the super I/O fan control: Fan controls are now always displayed, even if the value is null (as for example for ITE 87XX chips in automatic mode. diff -r c25816e366bd -r 93cee0b9f619 Hardware/Mainboard/SuperIOHardware.cs --- a/Hardware/Mainboard/SuperIOHardware.cs Sat Nov 03 17:58:55 2012 +0000 +++ b/Hardware/Mainboard/SuperIOHardware.cs Sun Nov 04 13:10:53 2012 +0000 @@ -1213,6 +1213,7 @@ superIO.SetControl(index, (byte)(control.SoftwareValue * 2.55)); sensor.Control = control; controls.Add(sensor); + ActivateSensor(sensor); } } } @@ -1261,10 +1262,7 @@ foreach (Sensor sensor in controls) { float? value = readControl(sensor.Index); - if (value.HasValue) { - sensor.Value = value; - ActivateSensor(sensor); - } + sensor.Value = value; } postUpdate(); diff -r c25816e366bd -r 93cee0b9f619 Properties/AssemblyVersion.cs --- a/Properties/AssemblyVersion.cs Sat Nov 03 17:58:55 2012 +0000 +++ b/Properties/AssemblyVersion.cs Sun Nov 04 13:10:53 2012 +0000 @@ -10,5 +10,5 @@ using System.Reflection; -[assembly: AssemblyVersion("0.5.1.8")] -[assembly: AssemblyInformationalVersion("0.5.1.8 Alpha")] \ No newline at end of file +[assembly: AssemblyVersion("0.5.1.9")] +[assembly: AssemblyInformationalVersion("0.5.1.9 Alpha")] \ No newline at end of file