alternative encryption schemes for LPK archives.

This commit is contained in:
morkt
2015-04-25 02:07:14 +04:00
parent 0e18247492
commit 8ee82a8c31
9 changed files with 198 additions and 79 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.4.42")]
[assembly: AssemblyFileVersion ("1.0.4.42")]
[assembly: AssemblyVersion ("1.0.4.43")]
[assembly: AssemblyFileVersion ("1.0.4.43")]

View File

@@ -285,5 +285,17 @@ namespace GameRes.Formats.Properties {
this["WARCScheme"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Default")]
public string LPKScheme {
get {
return ((string)(this["LPKScheme"]));
}
set {
this["LPKScheme"] = value;
}
}
}
}

View File

@@ -68,5 +68,8 @@
<Setting Name="WARCScheme" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="LPKScheme" Type="System.String" Scope="User">
<Value Profile="(Default)">Default</Value>
</Setting>
</Settings>
</SettingsFile>