implemented Selene 'KCAP' archive format.

This commit is contained in:
morkt
2015-03-11 16:37:51 +04:00
parent 520e7215ba
commit 7580d36414
11 changed files with 413 additions and 2 deletions

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 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.0.3.26")]
[assembly: AssemblyFileVersion ("1.0.3.26")]
[assembly: AssemblyVersion ("1.0.3.28")]
[assembly: AssemblyFileVersion ("1.0.3.28")]

View File

@@ -249,5 +249,29 @@ namespace GameRes.Formats.Properties {
this["WARCNameLength"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string KCAPPassPhrase {
get {
return ((string)(this["KCAPPassPhrase"]));
}
set {
this["KCAPPassPhrase"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string KCAPScheme {
get {
return ((string)(this["KCAPScheme"]));
}
set {
this["KCAPScheme"] = value;
}
}
}
}

View File

@@ -59,5 +59,11 @@
<Setting Name="WARCNameLength" Type="System.Int32" Scope="User">
<Value Profile="(Default)">8</Value>
</Setting>
<Setting Name="KCAPPassPhrase" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="KCAPScheme" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>