Extend uploader profiles, filters, and diagnostics

This commit is contained in:
Codex Agent
2026-01-13 11:26:04 +01:00
parent 0f9fc76711
commit 003f48addb
5 changed files with 324 additions and 6 deletions

View File

@@ -14,6 +14,7 @@ public sealed class SettingsStore
};
public string SettingsPath { get; }
public string LogPath { get; }
public SettingsStore()
{
@@ -24,6 +25,7 @@ public sealed class SettingsStore
Directory.CreateDirectory(basePath);
SettingsPath = Path.Combine(basePath, "settings.json");
LogPath = Path.Combine(basePath, "uploader.log");
}
public PhotoboothSettings Load()