mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 13:51:40 +00:00
Rename some UDB files that were missed before to UZB
This commit is contained in:
parent
55158443ca
commit
86b0d431d8
2 changed files with 7 additions and 7 deletions
|
@ -161,11 +161,11 @@ namespace CodeImp.DoomBuilder
|
|||
//internal const int SIF_ALL = SIF_RANGE + SIF_PAGE + SIF_POS + SIF_TRACKPOS;
|
||||
|
||||
// Files and Folders
|
||||
private const string LEGACY_SETTINGS_FILE = "GZBuilder.cfg"; // To make transision from GZDB* easier
|
||||
private const string SETTINGS_FILE = "UDBuilder.cfg";
|
||||
private const string DEFAULT_SETTINGS_FILE = "UDBuilder.default.cfg"; //mxd
|
||||
private const string LEGACY_SETTINGS_FILE = "UDBuilder.cfg"; // To make transision from UDB easier
|
||||
private const string SETTINGS_FILE = "UZBuilder.cfg";
|
||||
private const string DEFAULT_SETTINGS_FILE = "UZBuilder.default.cfg"; //mxd
|
||||
private const string SETTINGS_DIR = "Ultimate Zone Builder";
|
||||
private const string LOG_FILE = "UDBuilder.log";
|
||||
private const string LOG_FILE = "UZBuilder.log";
|
||||
private const string GAME_CONFIGS_DIR = "Configurations";
|
||||
private const string COMPILERS_DIR = "Compilers";
|
||||
private const string PLUGINS_DIR = "Plugins";
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
{
|
||||
public partial class ExceptionDialog : Form
|
||||
{
|
||||
private const string CRASH_DUMP_FILE = "UDBCrash.txt";
|
||||
private const string CRASH_DUMP_FILE = "UZBCrash.txt";
|
||||
|
||||
private readonly bool isterminating;
|
||||
private readonly string logpath;
|
||||
|
@ -113,8 +113,8 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
}
|
||||
}
|
||||
|
||||
// Get GZDB version
|
||||
result += "UDB: R" + General.ThisAssembly.GetName().Version.Revision + Environment.NewLine;
|
||||
// Get UZB version
|
||||
result += "UZB: " + General.ThisAssembly.GetName().Version + Environment.NewLine;
|
||||
result += "Platform: " + (Environment.Is64BitProcess ? "x64" : "x86") + Environment.NewLine + Environment.NewLine;
|
||||
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue