Major bugfixes.

Can now begin at system startup.
This commit is contained in:
Darren Ohonba - Evans
2024-05-24 00:07:59 +01:00
parent cccb93f739
commit b27d2d13ee
5 changed files with 216 additions and 120 deletions

View File

@@ -118,5 +118,29 @@ namespace AsusFanControlGUI.Properties {
this["startMinimised"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1")]
public int hysteresis {
get {
return ((int)(this["hysteresis"]));
}
set {
this["hysteresis"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("2000")]
public int updateSpeed {
get {
return ((int)(this["updateSpeed"]));
}
set {
this["updateSpeed"] = value;
}
}
}
}

View File

@@ -26,5 +26,11 @@
<Setting Name="startMinimised" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="hysteresis" Type="System.Int32" Scope="User">
<Value Profile="(Default)">1</Value>
</Setting>
<Setting Name="updateSpeed" Type="System.Int32" Scope="User">
<Value Profile="(Default)">2000</Value>
</Setting>
</Settings>
</SettingsFile>