First build for version 7.31
Updatebuddy is now intergrated into RB
-Updates will occur now during startup to ensure that the latest version is downloaded before compilation, reducing the need for restarts
-Plugin list will now be sorted by enabled plugins, then alphabetically
-Botbase list will now be sorted alphabetically
-Downloading new addons will still require a restart (for now)
JsonSettings class now implements INotifyPropertyChanged, no longer implements IDisposable
JsonSettings<T> added to allow easy inheritance of a instance method
-ex: public class CharacterSettings : JsonSettings<CharacterSettings>
--CharacterSettings.Instance.Variable
--Example of utilizing INotifyPropertyChanged
private float _mountdistance;
[DefaultValue(40.0f)]
[Setting]
public float MountDistance
{
get => _mountdistance;
set => SetField(ref _mountdistance, value);
}