From 0b3a36892d03e89f89d10e6a63490e5d0033da6b Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 22 Sep 2010 09:42:40 +0000 Subject: [PATCH] Fixed default git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@896 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- GreenshotCore/Configuration/CoreConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotCore/Configuration/CoreConfiguration.cs b/GreenshotCore/Configuration/CoreConfiguration.cs index 5d7456e57..98390ad49 100644 --- a/GreenshotCore/Configuration/CoreConfiguration.cs +++ b/GreenshotCore/Configuration/CoreConfiguration.cs @@ -63,7 +63,7 @@ namespace Greenshot.Core { [IniProperty("OutputFilePath", Description="Output file path.")] public string OutputFilePath; - [IniProperty("OutputFileFilenamePattern", Description="Filename pattern for screenshot.", DefaultValue="%title%_%YYYY%-%MM%-%DD%_%hh%-%mm%-%ss%")] + [IniProperty("OutputFileFilenamePattern", Description="Filename pattern for screenshot.", DefaultValue="${capturetime}_${title}")] public string OutputFileFilenamePattern; [IniProperty("OutputFileFormat", Description="Default file type for writing screenshots. (Bmp, Gif, Jepg, Png, Tiff)", DefaultValue="Png")] public OutputFormat OutputFileFormat = OutputFormat.Png;