fix: use a valid windows path

This commit is contained in:
Anna 2024-02-17 23:56:02 -05:00
parent 4bc2f0d841
commit 009ca481d9
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public class Configuration : IPluginConfiguration {
public string SaveDirectory = Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.MyPictures), "Screenie");
public Format SaveFormat = Format.Png;
public int SaveFormatData = 90;
public string SaveFileNameFormat = "{{ captured_at_local | date.to_string '%Y/%m/[%H:%M:%S]' }} {{ active_character.name }} - {{ location }}";
public string SaveFileNameFormat = "{{ captured_at_local | date.to_string '%Y/%m/[%H.%M.%S]' }} {{ active_character.name }} - {{ location }}";
private int _templateHashCode;
private Template? _template;