remember last directory used for extraction.

This commit is contained in:
morkt 2015-08-01 00:20:21 +04:00
parent 28ec300c12
commit d07ea919d7
3 changed files with 17 additions and 2 deletions

View File

@ -51,5 +51,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion ("1.1.4.21")]
[assembly: AssemblyFileVersion ("1.1.4.21")]
[assembly: AssemblyVersion ("1.1.4.22")]
[assembly: AssemblyFileVersion ("1.1.4.22")]

View File

@ -345,5 +345,17 @@ namespace GARbro.GUI.Properties {
this["appIgnoreConversionErrors"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string appLastDestination {
get {
return ((string)(this["appLastDestination"]));
}
set {
this["appLastDestination"] = value;
}
}
}
}

View File

@ -83,5 +83,8 @@
<Setting Name="appIgnoreConversionErrors" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="appLastDestination" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>