mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
implemented encrypted NSA archives.
This commit is contained in:
@@ -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.1.10.422")]
|
||||
[assembly: AssemblyFileVersion ("1.1.10.422")]
|
||||
[assembly: AssemblyVersion ("1.1.10.423")]
|
||||
[assembly: AssemblyFileVersion ("1.1.10.423")]
|
||||
|
||||
28
ArcFormats/Properties/Settings.Designer.cs
generated
28
ArcFormats/Properties/Settings.Designer.cs
generated
@@ -133,9 +133,9 @@ namespace GameRes.Formats.Properties {
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("None")]
|
||||
public global::GameRes.Formats.ONScripter.Compression ONSCompression {
|
||||
public global::GameRes.Formats.NScripter.Compression ONSCompression {
|
||||
get {
|
||||
return ((global::GameRes.Formats.ONScripter.Compression)(this["ONSCompression"]));
|
||||
return ((global::GameRes.Formats.NScripter.Compression)(this["ONSCompression"]));
|
||||
}
|
||||
set {
|
||||
this["ONSCompression"] = value;
|
||||
@@ -417,5 +417,29 @@ namespace GameRes.Formats.Properties {
|
||||
this["RCTTitle"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("")]
|
||||
public string NSAPassword {
|
||||
get {
|
||||
return ((string)(this["NSAPassword"]));
|
||||
}
|
||||
set {
|
||||
this["NSAPassword"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("")]
|
||||
public string NSATitle {
|
||||
get {
|
||||
return ((string)(this["NSATitle"]));
|
||||
}
|
||||
set {
|
||||
this["NSATitle"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
<Setting Name="SGFileNameEncoding" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">shift-jis</Value>
|
||||
</Setting>
|
||||
<Setting Name="ONSCompression" Type="GameRes.Formats.ONScripter.Compression" Scope="User">
|
||||
<Setting Name="ONSCompression" Type="GameRes.Formats.NScripter.Compression" Scope="User">
|
||||
<Value Profile="(Default)">None</Value>
|
||||
</Setting>
|
||||
<Setting Name="AMIBaseArchive" Type="System.String" Scope="User">
|
||||
@@ -101,5 +101,11 @@
|
||||
<Setting Name="RCTTitle" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)" />
|
||||
</Setting>
|
||||
<Setting Name="NSAPassword" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)" />
|
||||
</Setting>
|
||||
<Setting Name="NSATitle" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)" />
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
</SettingsFile>
|
||||
Reference in New Issue
Block a user