add "Dump with PathID as filename" feature

This commit is contained in:
VaDiM
2020-07-27 23:22:53 +03:00
parent c5f7ef6e91
commit 04266251aa
9 changed files with 66 additions and 30 deletions

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.14.38.3")]
[assembly: AssemblyFileVersion("0.14.38.3")]
[assembly: AssemblyVersion("0.14.38.4")]
[assembly: AssemblyFileVersion("0.14.38.4")]

View File

@ -274,5 +274,17 @@ namespace AssetStudioGUI.Properties {
this["pathIDAsImageName"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool pathIDAsDumpName {
get {
return ((bool)(this["pathIDAsDumpName"]));
}
set {
this["pathIDAsDumpName"] = value;
}
}
}
}

View File

@ -65,5 +65,8 @@
<Setting Name="pathIDAsImageName" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="pathIDAsDumpName" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>