release v7.0.0.1 Beta

This commit is contained in:
stax76
2023-12-11 11:38:36 +01:00
parent a61a0506fd
commit 8e45cdb47d
8 changed files with 101 additions and 148 deletions

View File

@@ -73,15 +73,4 @@ public class InputConf
return InputHelp.ConvertToString(defaults);
}
}
public void CreateBackup()
{
if (!File.Exists(Path))
return;
string targetPath = System.IO.Path.GetTempPath().AddSep() +
"mpv.net input.conf backup " + Guid.NewGuid() + ".conf";
File.Copy(Path, targetPath);
}
}