fix: use better default

This commit is contained in:
Anna 2024-02-17 23:29:30 -05:00
parent 5934b160fe
commit a162429ea4
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,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.year | string.pad_left 4 0 }}/{{ captured_at_local.month | string.pad_left 2 0 }}/[{{ captured_at_local.hour | string.pad_left 2 0 }}:{{ captured_at_local.minute | string.pad_left 2 0 }}:{{ captured_at_local.seconds | string.pad_left 2 0 }}] {{ active_character.name }} - {{ location }}";
public string SaveFileNameFormat = "{{ captured_at_local | date.to_string '%Y/%m/[%H:%M:%S]' }} {{ active_character.name }} - {{ location }}";
}
public enum Format {