Move config to AppData

This commit is contained in:
Natsumi
2021-08-03 01:45:44 +12:00
parent d0c520e678
commit a66ff77fce
5 changed files with 28 additions and 8 deletions

View File

@@ -18,8 +18,8 @@ namespace VRCX
{
var cefSettings = new CefSettings
{
CachePath = Path.Combine(Program.BaseDirectory, "cache"),
UserDataPath = Path.Combine(Program.BaseDirectory, "userdata"),
CachePath = Path.Combine(Program.AppDataDirectory, "cache"),
UserDataPath = Path.Combine(Program.AppDataDirectory, "userdata"),
IgnoreCertificateErrors = true,
LogSeverity = LogSeverity.Disable,
WindowlessRenderingEnabled = true,