diff --git a/DBFZ-mod-manager/App.config b/DBFZ-mod-manager/App.config index 6b000f6..e859ed5 100644 --- a/DBFZ-mod-manager/App.config +++ b/DBFZ-mod-manager/App.config @@ -2,6 +2,7 @@ +
@@ -9,6 +10,11 @@ + + + C:\Program Files (x86)\Steam\steamapps\common\DRAGON BALL FighterZ\ + + C:\ diff --git a/DBFZ-mod-manager/DBFZ-mod-manager.csproj b/DBFZ-mod-manager/DBFZ-mod-manager.csproj index c7f406a..175a39d 100644 --- a/DBFZ-mod-manager/DBFZ-mod-manager.csproj +++ b/DBFZ-mod-manager/DBFZ-mod-manager.csproj @@ -7,7 +7,7 @@ {C361F41D-0E9C-4D90-81F6-59B41FE79085} WinExe Properties - DBFZ_mod_manager + ModManager DBFZ-mod-manager v4.5.2 512 @@ -49,17 +49,18 @@ - + Form - - Form1.cs + + MainForm.cs + - - Form1.cs + + MainForm.cs ResXFileCodeGenerator diff --git a/DBFZ-mod-manager/Form1.cs b/DBFZ-mod-manager/Form1.cs deleted file mode 100644 index 83ffd90..0000000 --- a/DBFZ-mod-manager/Form1.cs +++ /dev/null @@ -1,139 +0,0 @@ -using System; -using System.IO; -using System.Windows.Forms; -using System.Diagnostics; - -namespace DBFZ_mod_manager -{ - public partial class Form1 : Form - { - private string drive; - private string gamePath; - private string activeModPath; - private string inactiveModPath; - - public Form1() - { - InitializeComponent(); - this.drive = Properties.Settings.Default.drive; - this.gamePath = this.drive + @"Program Files (x86)\Steam\steamapps\common\DRAGON BALL FighterZ\"; - this.activeModPath = this.gamePath + @"RED\Content\Paks\~mods\"; - this.inactiveModPath = this.gamePath + @"RED\Content\Paks\inactive-mods\"; - } - - private void Form1_Load(object sender, EventArgs e) - { - this.loadDrives(); - - // check if the user has the game installed on thier primary drive - if (Directory.Exists(this.gamePath)){ - this.loadModsList(); - } else { - MessageBox.Show("DragonBallFighterZ is not installed on your C:\\ drive! Please go to 'Options' and choose the correct drive."); - } - } - - private void loadModsList() - { - modsList.DataSource = null; - modsList.Rows.Clear(); - - this.loadMods(this.activeModPath); - this.loadMods(this.inactiveModPath); - } - - private void loadMods(string path) - { - bool active = (path == this.activeModPath); - - if (!Directory.Exists(path)){ - Directory.CreateDirectory(path); - } - - string[] files = Directory.GetFiles(path, "*.pak"); - - foreach (string file in files){ - FileInfo fileInfo = new FileInfo(file); - this.modsList.Rows.Add(active, fileInfo.Name.Replace(".pak", ""), file); - } - } - - private void refreshModsList_Click(object sender, EventArgs e) - { - this.loadModsList(); - } - - private void openModsFolderBtn_Click(object sender, EventArgs e) - { - Process.Start("explorer.exe", this.activeModPath); - } - - private void startGameBtn_Click(object sender, EventArgs e) - { - this.saveMods(); - Process.Start("steam://rungameid/678950"); - } - - private void saveBtn_Click(object sender, EventArgs e) - { - this.saveMods(); - MessageBox.Show("Changes saved!"); - } - - private void moveFile(string source, string dest) - { - if (File.Exists(source)){ - File.Copy(source, dest, true); - File.Delete(source); - } - } - - private void saveMods() - { - Properties.Settings.Default.drive = driveList.Text; - Properties.Settings.Default.Save(); - - foreach (DataGridViewRow row in this.modsList.Rows){ - string active = row.Cells["modsActive"].Value.ToString(); - string name = row.Cells["modsName"].Value.ToString(); - - if (active == "True"){ - this.moveFile(this.inactiveModPath + name + ".pak", this.activeModPath + name + ".pak"); - this.moveFile(this.inactiveModPath + name + ".sig", this.activeModPath + name + ".sig"); - } else { - this.moveFile(this.activeModPath + name + ".pak", this.inactiveModPath + name + ".pak"); - this.moveFile(this.activeModPath + name + ".sig", this.inactiveModPath + name + ".sig"); - } - } - } - - private void patchExe_Click(object sender, EventArgs e) - { - DialogResult dialogResult = MessageBox.Show("Are you sure you want to patch DragonBallFighterZ.exe? \n\n (This is required to use mods and can be reverted at any time by going into Steam and choosing 'Verify Integrity of Game Files')", "Patch DragonBallFighterZ.exe", MessageBoxButtons.YesNo); - if (dialogResult == DialogResult.Yes){ - try{ - File.WriteAllBytes(this.gamePath + "DBFighterZ.exe", Properties.Resources.DBFighterZ); - MessageBox.Show("DragonBallFighterZ.exe has been successfully patched!"); - } - catch (Exception exception){ - MessageBox.Show("The following error occurred when patching the game: " + exception.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - } - } - } - - private void button1_Click(object sender, EventArgs e) - { - MessageBox.Show("Once EasyAntiCheat opens, choose 'Dragon Ball Fighter Z' and click uninstall."); - Process.Start(this.gamePath + @"EasyAntiCheat\EasyAntiCheat_Setup.exe"); - } - - private void loadDrives() - { - foreach(var drive in DriveInfo.GetDrives()){ - driveList.Items.Add(drive.Name); - } - - driveList.SelectedIndex = driveList.FindStringExact(Path.GetPathRoot(Environment.GetFolderPath(Environment.SpecialFolder.System))); - } - } -} diff --git a/DBFZ-mod-manager/Form1.Designer.cs b/DBFZ-mod-manager/MainForm.Designer.cs similarity index 89% rename from DBFZ-mod-manager/Form1.Designer.cs rename to DBFZ-mod-manager/MainForm.Designer.cs index dbd1480..b89d047 100644 --- a/DBFZ-mod-manager/Form1.Designer.cs +++ b/DBFZ-mod-manager/MainForm.Designer.cs @@ -1,6 +1,6 @@ -namespace DBFZ_mod_manager +namespace ModManager { - partial class Form1 + partial class MainForm { /// /// Required designer variable. @@ -28,7 +28,7 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.startGameBtn = new System.Windows.Forms.Button(); this.saveBtn = new System.Windows.Forms.Button(); this.tabControl1 = new System.Windows.Forms.TabControl(); @@ -41,11 +41,12 @@ private void InitializeComponent() this.disableEasyAntiCheatBtn = new System.Windows.Forms.Button(); this.openModsFolderBtn = new System.Windows.Forms.Button(); this.tabPage2 = new System.Windows.Forms.TabPage(); - this.driveList = new System.Windows.Forms.ComboBox(); + this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.modName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.modActive = new System.Windows.Forms.DataGridViewCheckBoxColumn(); - this.label2 = new System.Windows.Forms.Label(); + this.gamePathTextBox = new System.Windows.Forms.TextBox(); + this.gamePathBtn = new System.Windows.Forms.Button(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.modsList)).BeginInit(); @@ -182,33 +183,35 @@ private void InitializeComponent() // // tabPage2 // + this.tabPage2.Controls.Add(this.gamePathBtn); + this.tabPage2.Controls.Add(this.gamePathTextBox); this.tabPage2.Controls.Add(this.label2); - this.tabPage2.Controls.Add(this.driveList); this.tabPage2.Controls.Add(this.label1); this.tabPage2.Location = new System.Drawing.Point(4, 25); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(3); - this.tabPage2.Size = new System.Drawing.Size(1022, 404); + this.tabPage2.Size = new System.Drawing.Size(813, 477); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Options"; this.tabPage2.UseVisualStyleBackColor = true; // - // driveList + // label2 // - this.driveList.FormattingEnabled = true; - this.driveList.Location = new System.Drawing.Point(70, 13); - this.driveList.Name = "driveList"; - this.driveList.Size = new System.Drawing.Size(121, 24); - this.driveList.TabIndex = 1; + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(18, 51); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(377, 17); + this.label2.TabIndex = 2; + this.label2.Text = "(change this if the game is installed in a different directory)"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(18, 17); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(45, 17); + this.label1.Size = new System.Drawing.Size(83, 17); this.label1.TabIndex = 0; - this.label1.Text = "Drive:"; + this.label1.Text = "Game Path:"; // // modName // @@ -227,16 +230,25 @@ private void InitializeComponent() this.modActive.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; this.modActive.Width = 70; // - // label2 + // gamePathTextBox // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(206, 16); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(376, 17); - this.label2.TabIndex = 2; - this.label2.Text = "(change this if the game is installed on a drive besides C:\\)"; + this.gamePathTextBox.Location = new System.Drawing.Point(107, 16); + this.gamePathTextBox.Name = "gamePathTextBox"; + this.gamePathTextBox.ReadOnly = true; + this.gamePathTextBox.Size = new System.Drawing.Size(275, 22); + this.gamePathTextBox.TabIndex = 3; + // + // gamePathBtn + // + this.gamePathBtn.Location = new System.Drawing.Point(388, 14); + this.gamePathBtn.Name = "gamePathBtn"; + this.gamePathBtn.Size = new System.Drawing.Size(35, 26); + this.gamePathBtn.TabIndex = 4; + this.gamePathBtn.Text = "..."; + this.gamePathBtn.UseVisualStyleBackColor = true; + this.gamePathBtn.Click += new System.EventHandler(this.gamePathBtn_Click); // - // Form1 + // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; @@ -246,7 +258,7 @@ private void InitializeComponent() this.Controls.Add(this.startGameBtn); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(753, 524); - this.Name = "Form1"; + this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "DBFZ Mod Manager"; this.Load += new System.EventHandler(this.Form1_Load); @@ -274,9 +286,10 @@ private void InitializeComponent() private System.Windows.Forms.DataGridView modsList; private System.Windows.Forms.DataGridViewCheckBoxColumn modsActive; private System.Windows.Forms.DataGridViewTextBoxColumn modsName; - private System.Windows.Forms.ComboBox driveList; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button gamePathBtn; + private System.Windows.Forms.TextBox gamePathTextBox; } } diff --git a/DBFZ-mod-manager/MainForm.cs b/DBFZ-mod-manager/MainForm.cs new file mode 100644 index 0000000..50e28a4 --- /dev/null +++ b/DBFZ-mod-manager/MainForm.cs @@ -0,0 +1,158 @@ +using System; +using System.IO; +using System.Windows.Forms; +using System.Diagnostics; +using Microsoft.Win32; + +namespace ModManager +{ + public partial class MainForm : Form + { + private string GamePath; + private string ActiveModPath; + private string InactiveModPath; + + public MainForm() + { + InitializeComponent(); + this.GamePath = Properties.Settings.Default.gamePath; + this.ActiveModPath = this.GamePath + @"RED\Content\Paks\~mods\"; + this.InactiveModPath = this.GamePath + @"RED\Content\Paks\inactive-mods\"; + } + + private void Form1_Load(object sender, EventArgs e) + { + gamePathTextBox.Text = this.GamePath; + + // Register custom URL protocol + + + + // check if the user has the game installed on thier primary drive + if (Directory.Exists(this.GamePath)) + { + this.LoadModsList(); + } + else + { + MessageBox.Show("DragonBallFighterZ is not installed in the default location. Please go to 'Options' and choose the correct game path!"); + } + } + + private void LoadModsList() + { + modsList.DataSource = null; + modsList.Rows.Clear(); + + this.LoadMods(this.ActiveModPath); + this.LoadMods(this.InactiveModPath); + } + + private void LoadMods(string path) + { + bool active = (path == this.ActiveModPath); + + if (!Directory.Exists(path)) + { + Directory.CreateDirectory(path); + } + + string[] files = Directory.GetFiles(path, "*.pak"); + + foreach (string file in files) + { + FileInfo fileInfo = new FileInfo(file); + this.modsList.Rows.Add(active, fileInfo.Name.Replace(".pak", ""), file); + } + } + + private void refreshModsList_Click(object sender, EventArgs e) + { + this.LoadModsList(); + } + + private void openModsFolderBtn_Click(object sender, EventArgs e) + { + Process.Start("explorer.exe", this.ActiveModPath); + } + + private void startGameBtn_Click(object sender, EventArgs e) + { + this.SaveMods(); + Process.Start("steam://rungameid/678950"); + } + + private void saveBtn_Click(object sender, EventArgs e) + { + this.SaveMods(); + MessageBox.Show("Changes saved!"); + } + + private void SaveMods() + { + this.GamePath = gamePathTextBox.Text; + Properties.Settings.Default.gamePath = gamePathTextBox.Text; + Properties.Settings.Default.Save(); + + foreach (DataGridViewRow row in this.modsList.Rows) + { + string active = row.Cells["modsActive"].Value.ToString(); + string name = row.Cells["modsName"].Value.ToString(); + + if (active == "True") + { + Mod.Move(this.InactiveModPath + name + ".pak", this.ActiveModPath + name + ".pak"); + Mod.Move(this.InactiveModPath + name + ".sig", this.ActiveModPath + name + ".sig"); + } + else + { + Mod.Move(this.ActiveModPath + name + ".pak", this.InactiveModPath + name + ".pak"); + Mod.Move(this.ActiveModPath + name + ".sig", this.InactiveModPath + name + ".sig"); + } + } + } + + private void patchExe_Click(object sender, EventArgs e) + { + DialogResult dialogResult = MessageBox.Show("Are you sure you want to patch DragonBallFighterZ.exe? \n\n (This is required to use mods and can be reverted at any time by going into Steam and choosing 'Verify Integrity of Game Files')", "Patch DragonBallFighterZ.exe", MessageBoxButtons.YesNo); + if (dialogResult == DialogResult.Yes) + { + try + { + File.WriteAllBytes(this.GamePath + "DBFighterZ.exe", Properties.Resources.DBFighterZ); + MessageBox.Show("DragonBallFighterZ.exe has been successfully patched!"); + } + catch (Exception exception) + { + MessageBox.Show("The following error occurred when patching the game: " + exception.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + + private void button1_Click(object sender, EventArgs e) + { + MessageBox.Show("Once EasyAntiCheat opens, choose 'Dragon Ball Fighter Z' and click uninstall."); + Process.Start(this.GamePath + @"EasyAntiCheat\EasyAntiCheat_Setup.exe"); + } + + private void gamePathBtn_Click(object sender, EventArgs e) + { + FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog(); + if (folderBrowserDialog1.ShowDialog() == DialogResult.OK) + { + if (File.Exists(folderBrowserDialog1.SelectedPath + @"\DBFighterZ.exe")) + { + this.gamePathTextBox.Text = folderBrowserDialog1.SelectedPath + @"\"; + this.GamePath = folderBrowserDialog1.SelectedPath + @"\"; + this.ActiveModPath = this.GamePath + @"RED\Content\Paks\~mods\"; + this.InactiveModPath = this.GamePath + @"RED\Content\Paks\inactive-mods\"; + this.LoadModsList(); + } + else + { + MessageBox.Show("Error, could not find DBFighterZ.exe in this folder. Are you sure you chose the correct folder?", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } + } +} diff --git a/DBFZ-mod-manager/Form1.resx b/DBFZ-mod-manager/MainForm.resx similarity index 100% rename from DBFZ-mod-manager/Form1.resx rename to DBFZ-mod-manager/MainForm.resx diff --git a/DBFZ-mod-manager/Mod.cs b/DBFZ-mod-manager/Mod.cs new file mode 100644 index 0000000..e3dbf03 --- /dev/null +++ b/DBFZ-mod-manager/Mod.cs @@ -0,0 +1,17 @@ +using System.IO; + +namespace ModManager +{ + class Mod + { + // Move a mod to a new location + public static void Move(string source, string dest) + { + if (File.Exists(source)) + { + File.Copy(source, dest, true); + File.Delete(source); + } + } + } +} diff --git a/DBFZ-mod-manager/Program.cs b/DBFZ-mod-manager/Program.cs index c4965f2..399c148 100644 --- a/DBFZ-mod-manager/Program.cs +++ b/DBFZ-mod-manager/Program.cs @@ -4,7 +4,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace DBFZ_mod_manager +namespace ModManager { static class Program { @@ -16,7 +16,7 @@ static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); + Application.Run(new MainForm()); } } } diff --git a/DBFZ-mod-manager/Properties/Resources.Designer.cs b/DBFZ-mod-manager/Properties/Resources.Designer.cs index 75089ef..d97a497 100644 --- a/DBFZ-mod-manager/Properties/Resources.Designer.cs +++ b/DBFZ-mod-manager/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace DBFZ_mod_manager.Properties { +namespace ModManager.Properties { using System; @@ -39,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DBFZ_mod_manager.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ModManager.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/DBFZ-mod-manager/Properties/Settings.Designer.cs b/DBFZ-mod-manager/Properties/Settings.Designer.cs index 06d729a..dd7da2f 100644 --- a/DBFZ-mod-manager/Properties/Settings.Designer.cs +++ b/DBFZ-mod-manager/Properties/Settings.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace DBFZ_mod_manager.Properties { +namespace ModManager.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -25,13 +25,13 @@ public static Settings Default { [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("C:\\")] - public string drive { + [global::System.Configuration.DefaultSettingValueAttribute("C:\\Program Files (x86)\\Steam\\steamapps\\common\\DRAGON BALL FighterZ\\")] + public string gamePath { get { - return ((string)(this["drive"])); + return ((string)(this["gamePath"])); } set { - this["drive"] = value; + this["gamePath"] = value; } } } diff --git a/DBFZ-mod-manager/Properties/Settings.settings b/DBFZ-mod-manager/Properties/Settings.settings index c715762..dfdb2f7 100644 --- a/DBFZ-mod-manager/Properties/Settings.settings +++ b/DBFZ-mod-manager/Properties/Settings.settings @@ -1,9 +1,9 @@  - + - - C:\ + + C:\Program Files (x86)\Steam\steamapps\common\DRAGON BALL FighterZ\ \ No newline at end of file diff --git a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.FileListAbsolute.txt b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.FileListAbsolute.txt index ad85f21..63f24df 100644 --- a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.FileListAbsolute.txt +++ b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.FileListAbsolute.txt @@ -1,9 +1,9 @@ C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\bin\Release\DBFZ-mod-manager.exe.config C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\bin\Release\DBFZ-mod-manager.exe C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\bin\Release\DBFZ-mod-manager.pdb -C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\DBFZ_mod_manager.Form1.resources -C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\DBFZ_mod_manager.Properties.Resources.resources C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\DBFZ-mod-manager.csproj.GenerateResource.Cache C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\DBFZ-mod-manager.exe C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\DBFZ-mod-manager.pdb C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\DBFZ-mod-manager.csprojResolveAssemblyReference.cache +C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\ModManager.MainForm.resources +C:\Users\Daniel\Documents\Visual Studio 2015\Projects\DBFZ-mod-manager\DBFZ-mod-manager\obj\Release\ModManager.Properties.Resources.resources diff --git a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.GenerateResource.Cache b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.GenerateResource.Cache index a8345f5..89ad786 100644 Binary files a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.GenerateResource.Cache and b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.csproj.GenerateResource.Cache differ diff --git a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.exe b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.exe index 13f1cd2..2a3a682 100644 Binary files a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.exe and b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.exe differ diff --git a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.pdb b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.pdb index ea5ae58..9fb95d6 100644 Binary files a/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.pdb and b/DBFZ-mod-manager/obj/Release/DBFZ-mod-manager.pdb differ diff --git a/DBFZ-mod-manager/obj/Release/DesignTimeResolveAssemblyReferences.cache b/DBFZ-mod-manager/obj/Release/DesignTimeResolveAssemblyReferences.cache index c45e2da..e0c53d6 100644 Binary files a/DBFZ-mod-manager/obj/Release/DesignTimeResolveAssemblyReferences.cache and b/DBFZ-mod-manager/obj/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/DBFZ-mod-manager/obj/Release/DBFZ_mod_manager.Form1.resources b/DBFZ-mod-manager/obj/Release/ModManager.MainForm.resources similarity index 100% rename from DBFZ-mod-manager/obj/Release/DBFZ_mod_manager.Form1.resources rename to DBFZ-mod-manager/obj/Release/ModManager.MainForm.resources diff --git a/DBFZ-mod-manager/obj/Release/DBFZ_mod_manager.Properties.Resources.resources b/DBFZ-mod-manager/obj/Release/ModManager.Properties.Resources.resources similarity index 100% rename from DBFZ-mod-manager/obj/Release/DBFZ_mod_manager.Properties.Resources.resources rename to DBFZ-mod-manager/obj/Release/ModManager.Properties.Resources.resources diff --git a/DBFZ-mod-manager/obj/Release/TempPE/Properties.Resources.Designer.cs.dll b/DBFZ-mod-manager/obj/Release/TempPE/Properties.Resources.Designer.cs.dll index e15c902..b939d3d 100644 Binary files a/DBFZ-mod-manager/obj/Release/TempPE/Properties.Resources.Designer.cs.dll and b/DBFZ-mod-manager/obj/Release/TempPE/Properties.Resources.Designer.cs.dll differ