For now keeping "check for unstable updates" and fixing exception if a wrong mapping is used.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1884 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-05-18 18:11:36 +00:00
commit 85bcd49851
2 changed files with 6 additions and 2 deletions

View file

@ -174,8 +174,6 @@ namespace GreenshotPlugin.Core {
[IniProperty("MinimizeWorkingSetSize", Description="Optimize memory footprint, but with a performance penalty!", DefaultValue="False")]
public bool MinimizeWorkingSetSize;
// change to false for releases
[IniProperty("CheckUnstable", Description = "Also check for unstable version updates", DefaultValue = "False")]
public bool CheckUnstable;
@ -285,6 +283,9 @@ namespace GreenshotPlugin.Core {
/// This method will be called after reading the configuration, so eventually some corrections can be made
/// </summary>
public override void AfterLoad() {
// Comment with releases
CheckUnstable = true;
if (OutputDestinations == null) {
OutputDestinations = new List<string>();
}