Rename some UDB files that were missed before to UZB

This commit is contained in:
spherallic 2023-05-30 11:34:21 +02:00
parent 55158443ca
commit 86b0d431d8
2 changed files with 7 additions and 7 deletions

View file

@ -161,11 +161,11 @@ namespace CodeImp.DoomBuilder
//internal const int SIF_ALL = SIF_RANGE + SIF_PAGE + SIF_POS + SIF_TRACKPOS; //internal const int SIF_ALL = SIF_RANGE + SIF_PAGE + SIF_POS + SIF_TRACKPOS;
// Files and Folders // Files and Folders
private const string LEGACY_SETTINGS_FILE = "GZBuilder.cfg"; // To make transision from GZDB* easier private const string LEGACY_SETTINGS_FILE = "UDBuilder.cfg"; // To make transision from UDB easier
private const string SETTINGS_FILE = "UDBuilder.cfg"; private const string SETTINGS_FILE = "UZBuilder.cfg";
private const string DEFAULT_SETTINGS_FILE = "UDBuilder.default.cfg"; //mxd private const string DEFAULT_SETTINGS_FILE = "UZBuilder.default.cfg"; //mxd
private const string SETTINGS_DIR = "Ultimate Zone Builder"; 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 GAME_CONFIGS_DIR = "Configurations";
private const string COMPILERS_DIR = "Compilers"; private const string COMPILERS_DIR = "Compilers";
private const string PLUGINS_DIR = "Plugins"; private const string PLUGINS_DIR = "Plugins";

View file

@ -12,7 +12,7 @@ namespace CodeImp.DoomBuilder.Windows
{ {
public partial class ExceptionDialog : Form 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 bool isterminating;
private readonly string logpath; private readonly string logpath;
@ -113,8 +113,8 @@ namespace CodeImp.DoomBuilder.Windows
} }
} }
// Get GZDB version // Get UZB version
result += "UDB: R" + General.ThisAssembly.GetName().Version.Revision + Environment.NewLine; result += "UZB: " + General.ThisAssembly.GetName().Version + Environment.NewLine;
result += "Platform: " + (Environment.Is64BitProcess ? "x64" : "x86") + Environment.NewLine + Environment.NewLine; result += "Platform: " + (Environment.Is64BitProcess ? "x64" : "x86") + Environment.NewLine + Environment.NewLine;
return result; return result;