mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Add sequential auto backup option
This commit is contained in:
parent
40d15dc74f
commit
e56e9874a8
4 changed files with 74 additions and 12 deletions
32
src/ARKServerManager/Config.Designer.cs
generated
32
src/ARKServerManager/Config.Designer.cs
generated
|
|
@ -1402,7 +1402,37 @@ namespace ServerManagerTool {
|
|||
this["AutoBackup_BackupPeriod"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("True")]
|
||||
public bool AutoBackup_ParallelBackup
|
||||
{
|
||||
get
|
||||
{
|
||||
return ((bool)(this["AutoBackup_ParallelBackup"]));
|
||||
}
|
||||
set
|
||||
{
|
||||
this["AutoBackup_ParallelBackup"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("10")]
|
||||
public int AutoBackup_SequencialDelayPeriod
|
||||
{
|
||||
get
|
||||
{
|
||||
return ((int)(this["AutoBackup_SequencialDelayPeriod"]));
|
||||
}
|
||||
set
|
||||
{
|
||||
this["AutoBackup_SequencialDelayPeriod"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("False")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue