diff --git a/Fo76ini/Fo76ini.csproj b/Fo76ini/Fo76ini.csproj
index 8b186da..480805b 100644
--- a/Fo76ini/Fo76ini.csproj
+++ b/Fo76ini/Fo76ini.csproj
@@ -404,6 +404,7 @@
+
diff --git a/Fo76ini/Forms/ExceptionDialog/FormExceptionDialog.cs b/Fo76ini/Forms/ExceptionDialog/FormExceptionDialog.cs
index 0c27718..765a3a6 100644
--- a/Fo76ini/Forms/ExceptionDialog/FormExceptionDialog.cs
+++ b/Fo76ini/Forms/ExceptionDialog/FormExceptionDialog.cs
@@ -24,75 +24,24 @@ public static FormExceptionDialog OpenDialog(Exception ex)
{
string currentIniPrefix = "Fallout76";
string currentGamePath = null;
+ GameEdition currentGameEdition = GameEdition.Unknown;
if (ProfileManager.SelectedGame != null)
{
currentIniPrefix = ProfileManager.SelectedGame.IniPrefix;
if (ProfileManager.SelectedGame.ValidateGamePath())
currentGamePath = ProfileManager.SelectedGame.GamePath;
+ currentGameEdition = ProfileManager.SelectedGame.Edition;
}
- form.textBoxDebugText.Text = "*********** System information ***********\r\n" +
- $"Operating system: {Utils.GetOSName()} {Utils.GetOSArchitecture()}\r\n" +
+ form.textBoxDebugText.Text = $"Operating system: {Utils.GetOSName()} {Utils.GetOSArchitecture()}\r\n" +
$"Program version: {Shared.VERSION}\r\n" +
$"User agent: {Shared.AppUserAgent}\r\n" +
+ $"Running as admin: " + (Utils.HasAdminRights() ? "Yes" : "No") + "\r\n" +
+ $"Game edition: {currentGameEdition}" +
$"System locale: {System.Globalization.CultureInfo.CurrentUICulture.Name}\r\n" +
- "\r\n"; /*+
- "************ Available files ************\r\n" +
- "config.ini: " + (File.Exists(IniFiles.ConfigPath) ? "Yes" : "No") + "\r\n" +
- "profiles.xml: " + (File.Exists(ProfileManager.XMLPath) ? "Yes" : "No") + "\r\n";
-
- if (currentGamePath != null)
- {
- form.textBoxDebugText.Text += "Mods\\managed.xml: " + (File.Exists(Path.Combine(currentGamePath, "Mods", "managed.xml")) ? "Yes" : "No") + "\r\n" +
- "Mods\\manifest.xml: " + (File.Exists(Path.Combine(currentGamePath, "Mods", "manifest.xml")) ? "Yes" : "No") + "\r\n" +
- "Mods\\resources.txt: " + (File.Exists(Path.Combine(currentGamePath, "Mods", "resources.txt")) ? "Yes" : "No") + "\r\n";
- }
-
- if (File.Exists(Path.Combine(IniFiles.ParentPath, $"Fallout76.ini")))
- form.textBoxDebugText.Text += "Fallout76.ini\r\n";
-
- if (File.Exists(Path.Combine(IniFiles.ParentPath, $"Fallout76Prefs.ini")))
- form.textBoxDebugText.Text += "Fallout76Prefs.ini\r\n";
-
- if (File.Exists(Path.Combine(IniFiles.ParentPath, $"Fallout76Custom.ini")))
- form.textBoxDebugText.Text += "Fallout76Custom.ini\r\n";
-
- if (File.Exists(Path.Combine(IniFiles.ParentPath, $"Project76.ini")))
- form.textBoxDebugText.Text += "Project76.ini\r\n";
-
- if (File.Exists(Path.Combine(IniFiles.ParentPath, $"Project76Prefs.ini")))
- form.textBoxDebugText.Text += "Project76Prefs.ini\r\n";
-
- if (File.Exists(Path.Combine(IniFiles.ParentPath, $"Project76Custom.ini")))
- form.textBoxDebugText.Text += "Project76Custom.ini\r\n";
-
- if (currentIniPrefix != "Fallout76" && currentIniPrefix != "Project76")
- {
- form.textBoxDebugText.Text += $"{currentIniPrefix}.ini: " + (File.Exists(Path.Combine(IniFiles.ParentPath, $"{currentIniPrefix}.ini")) ? "Yes" : "No") + "\r\n" +
- $"{currentIniPrefix}Prefs.ini: " + (File.Exists(Path.Combine(IniFiles.ParentPath, $"{currentIniPrefix}Prefs.ini")) ? "Yes" : "No") + "\r\n" +
- $"{currentIniPrefix}Custom.ini: " + (File.Exists(Path.Combine(IniFiles.ParentPath, $"{currentIniPrefix}Custom.ini")) ? "Yes" : "No") + "\r\n";
- }*/
-
- /*form.textBoxDebugText.Text += "\r\n************* Game profiles *************";
-
- int gameIndex = 0;
- foreach (GameInstance game in ProfileManager.Games)
- {
- form.textBoxDebugText.Text += $"\r\nProfile #{gameIndex}" + (ProfileManager.SelectedGameIndex == gameIndex ? " (selected)" : "") + "\r\n" +
- $" Edition: {game.Edition}\r\n" +
- $" *.ini prefix: {game.IniPrefix}\r\n" +
- $" Executable: {game.ExecutableName}\r\n" +
- $" Game path: " + (game.ValidateGamePath() ? "valid" : "invalid") + "\r\n" +
- $" Launch option: {game.PreferredLaunchOption}\r\n";
-
- gameIndex++;
- }
-
- if (gameIndex == 0)
- form.textBoxDebugText.Text += "\r\nNone or not loaded yet\r\n";
-
- form.textBoxDebugText.Text += "\r\n"; */
+ $"App locale: {Localization.Locale}" +
+ "\r\n";
}
catch { }
diff --git a/Fo76ini/Forms/Form1/Form1.cs b/Fo76ini/Forms/Form1/Form1.cs
index f9f1b68..1134783 100644
--- a/Fo76ini/Forms/Form1/Form1.cs
+++ b/Fo76ini/Forms/Form1/Form1.cs
@@ -412,27 +412,27 @@ private void OnProfileChanged(object sender, ProfileEventArgs e)
switch (e.ActiveGameInstance.Edition)
{
case GameEdition.Steam:
- this.pictureBoxGameEdition.Image = Resources.steam;
+ this.pictureBoxGameEdition.Image = GameInstance.Get128pxBitmap(GameEdition.Steam);
this.toolStripStatusLabelEditionText.Text = "Steam";
this.labelGameEdition.Text = "Steam";
break;
case GameEdition.BethesdaNet:
- this.pictureBoxGameEdition.Image = Resources.bethesda;
+ this.pictureBoxGameEdition.Image = GameInstance.Get128pxBitmap(GameEdition.BethesdaNet);
this.toolStripStatusLabelEditionText.Text = "Bethesda.net";
this.labelGameEdition.Text = "Bethesda";
break;
case GameEdition.BethesdaNetPTS:
- this.pictureBoxGameEdition.Image = Resources.bethesda_pts;
+ this.pictureBoxGameEdition.Image = GameInstance.Get128pxBitmap(GameEdition.BethesdaNetPTS);
this.toolStripStatusLabelEditionText.Text = "Bethesda.net (PTS)";
this.labelGameEdition.Text = "Bethesda\n(PTS)";
break;
case GameEdition.MSStore:
- this.pictureBoxGameEdition.Image = Resources.msstore;
- this.toolStripStatusLabelEditionText.Text = "Microsoft Store";
- this.labelGameEdition.Text = "Microsoft\nStore";
+ this.pictureBoxGameEdition.Image = GameInstance.Get128pxBitmap(GameEdition.MSStore);
+ this.toolStripStatusLabelEditionText.Text = "Xbox / Microsoft Store";
+ this.labelGameEdition.Text = "Xbox";
break;
default:
- this.pictureBoxGameEdition.Image = Resources.help_128;
+ this.pictureBoxGameEdition.Image = GameInstance.Get128pxBitmap(GameEdition.Unknown);
this.toolStripStatusLabelEditionText.Text = Localization.GetString("unknown");
this.labelGameEdition.Text = Localization.GetString("unknown");
break;
@@ -803,46 +803,12 @@ private void showProfiles_OnClick(object sender, EventArgs e)
private void pictureBoxGameEdition_MouseEnter(object sender, EventArgs e)
{
- switch (this.game.Edition)
- {
- case GameEdition.Steam:
- this.pictureBoxGameEdition.Image = Resources.steam_hover;
- break;
- case GameEdition.BethesdaNet:
- this.pictureBoxGameEdition.Image = Resources.bethesda_hover;
- break;
- case GameEdition.BethesdaNetPTS:
- this.pictureBoxGameEdition.Image = Resources.bethesda_pts_hover;
- break;
- case GameEdition.MSStore:
- this.pictureBoxGameEdition.Image = Resources.msstore_hover;
- break;
- default:
- this.pictureBoxGameEdition.Image = Resources.help_128_hover;
- break;
- }
+ this.pictureBoxGameEdition.Image = this.game.Get128pxHoverBitmap();
}
private void pictureBoxGameEdition_MouseLeave(object sender, EventArgs e)
{
- switch (this.game.Edition)
- {
- case GameEdition.Steam:
- this.pictureBoxGameEdition.Image = Resources.steam;
- break;
- case GameEdition.BethesdaNet:
- this.pictureBoxGameEdition.Image = Resources.bethesda;
- break;
- case GameEdition.BethesdaNetPTS:
- this.pictureBoxGameEdition.Image = Resources.bethesda_pts;
- break;
- case GameEdition.MSStore:
- this.pictureBoxGameEdition.Image = Resources.msstore;
- break;
- default:
- this.pictureBoxGameEdition.Image = Resources.help_128;
- break;
- }
+ this.pictureBoxGameEdition.Image = this.game.Get128pxBitmap();
}
#endregion
diff --git a/Fo76ini/Forms/FormMods/FormMods.Designer.cs b/Fo76ini/Forms/FormMods/FormMods.Designer.cs
index c90c017..36a1342 100644
--- a/Fo76ini/Forms/FormMods/FormMods.Designer.cs
+++ b/Fo76ini/Forms/FormMods/FormMods.Designer.cs
@@ -60,96 +60,6 @@ private void InitializeComponent()
this.progressBarMods = new System.Windows.Forms.ProgressBar();
this.buttonModsDeploy = new System.Windows.Forms.Button();
this.labelModsDeploy = new System.Windows.Forms.Label();
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPageModOrder = new System.Windows.Forms.TabPage();
- this.pictureBoxCollapseDetails = new System.Windows.Forms.PictureBox();
- this.panelModDetails = new System.Windows.Forms.Panel();
- this.panelModDetailsHeader = new System.Windows.Forms.Panel();
- this.buttonModAbstain = new System.Windows.Forms.Button();
- this.buttonModEndorse = new System.Windows.Forms.Button();
- this.labelModEndorseStatus = new System.Windows.Forms.Label();
- this.labelModTitle = new System.Windows.Forms.Label();
- this.checkBoxModDetailsEnabled = new System.Windows.Forms.CheckBox();
- this.panelModDetailsInner = new System.Windows.Forms.Panel();
- this.groupBoxNotes = new System.Windows.Forms.GroupBox();
- this.textBoxNotes = new System.Windows.Forms.TextBox();
- this.groupBoxModReplace = new System.Windows.Forms.GroupBox();
- this.labelModDetailsReplace = new System.Windows.Forms.Label();
- this.linkLabelModDeleteFolderContents = new System.Windows.Forms.LinkLabel();
- this.panelModDetailsReplaceDragAndDrop = new System.Windows.Forms.Panel();
- this.linkLabelModReplaceFilesWithFolder = new System.Windows.Forms.LinkLabel();
- this.linkLabelModReplaceFilesWithArchive = new System.Windows.Forms.LinkLabel();
- this.groupBoxModDetailsInstallationOptions = new System.Windows.Forms.GroupBox();
- this.linkLabelModInvalidateFrozenArchive = new System.Windows.Forms.LinkLabel();
- this.linkLabelModAutoDetectInstallOptions = new System.Windows.Forms.LinkLabel();
- this.labelModInstallWarning = new System.Windows.Forms.Label();
- this.buttonModPickRootDir = new System.Windows.Forms.Button();
- this.labelModInstallAs = new System.Windows.Forms.Label();
- this.labelModArchivePreset = new System.Windows.Forms.Label();
- this.checkBoxFreezeArchive = new System.Windows.Forms.CheckBox();
- this.labelModInstallInto = new System.Windows.Forms.Label();
- this.comboBoxModInstallAs = new System.Windows.Forms.ComboBox();
- this.buttonModDetailsSuggestArchiveName = new System.Windows.Forms.Button();
- this.textBoxModRootDir = new System.Windows.Forms.TextBox();
- this.comboBoxModArchivePreset = new System.Windows.Forms.ComboBox();
- this.textBoxModArchiveName = new System.Windows.Forms.TextBox();
- this.labelModArchiveName = new System.Windows.Forms.Label();
- this.groupBoxModDetailsDetails = new System.Windows.Forms.GroupBox();
- this.textBoxModFolderName = new System.Windows.Forms.TextBox();
- this.labelModFolderName = new System.Windows.Forms.Label();
- this.buttonModOpenPage = new System.Windows.Forms.Button();
- this.panelModDetailsNexusMods = new System.Windows.Forms.Panel();
- this.linkLabelModSetLatestVersion = new System.Windows.Forms.LinkLabel();
- this.labelModAuthor = new System.Windows.Forms.Label();
- this.labelModLatestVersion = new System.Windows.Forms.Label();
- this.labelModLatestVersionDesc = new System.Windows.Forms.Label();
- this.labelModAuthorDesc = new System.Windows.Forms.Label();
- this.textBoxModVersion = new System.Windows.Forms.TextBox();
- this.labelModVersion = new System.Windows.Forms.Label();
- this.textBoxModURL = new System.Windows.Forms.TextBox();
- this.labelModName = new System.Windows.Forms.Label();
- this.labelModURL = new System.Windows.Forms.Label();
- this.textBoxModName = new System.Windows.Forms.TextBox();
- this.labelModSummary = new System.Windows.Forms.Label();
- this.pictureBoxModThumbnail = new System.Windows.Forms.PictureBox();
- this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.toolStripButtonAddMod = new System.Windows.Forms.ToolStripButton();
- this.toolStripButtonAddModFolder = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripButtonCheckAll = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripButtonMoveUp = new System.Windows.Forms.ToolStripButton();
- this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripButtonModOpenFolder = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripButtonFreeze = new System.Windows.Forms.ToolStripButton();
- this.toolStripButtonModUnfreeze = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
- this.toolStripButtonDeleteMod = new System.Windows.Forms.ToolStripButton();
- this.listViewMods = new System.Windows.Forms.ListView();
- this.columnHeaderModTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeaderVersion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeaderInstallAs = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeaderInstallInto = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeaderArchiveName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeaderArchivePreset = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeaderFrozenState = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.tabPageModsSettings = new System.Windows.Forms.TabPage();
- this.groupBoxModsBehavior = new System.Windows.Forms.GroupBox();
- this.checkBoxFreezeBundledArchives = new System.Windows.Forms.CheckBox();
- this.checkBoxModsUseHardlinks = new System.Windows.Forms.CheckBox();
- this.checkBoxAddArchivesAsBundled = new System.Windows.Forms.CheckBox();
- this.groupBoxLists = new System.Windows.Forms.GroupBox();
- this.buttonModsResetTextbox = new System.Windows.Forms.Button();
- this.buttonModsApplyTextBox = new System.Windows.Forms.Button();
- this.textBoxResourceList = new System.Windows.Forms.TextBox();
- this.buttonModsCleanList = new System.Windows.Forms.Button();
- this.labelsResourceIndexFileList = new System.Windows.Forms.Label();
- this.tabPageNexusMods = new System.Windows.Forms.TabPage();
- this.labelNexusModsMovedNotice2 = new System.Windows.Forms.Label();
- this.labelNexusModsMovedNotice = new System.Windows.Forms.Label();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.openFileDialogMod = new System.Windows.Forms.OpenFileDialog();
this.folderBrowserDialogMod = new System.Windows.Forms.FolderBrowserDialog();
@@ -167,28 +77,112 @@ private void InitializeComponent()
this.toolStripStatusLabelDeploymentStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.pictureBoxModsLoadingGIF = new System.Windows.Forms.PictureBox();
this.timerCheckForNXM = new System.Windows.Forms.Timer(this.components);
+ this.tabPageModsSettings = new System.Windows.Forms.TabPage();
+ this.groupBoxLists = new System.Windows.Forms.GroupBox();
+ this.labelsResourceIndexFileList = new System.Windows.Forms.Label();
+ this.buttonModsCleanList = new System.Windows.Forms.Button();
+ this.textBoxResourceList = new System.Windows.Forms.TextBox();
+ this.buttonModsApplyTextBox = new System.Windows.Forms.Button();
+ this.buttonModsResetTextbox = new System.Windows.Forms.Button();
+ this.groupBoxModsBehavior = new System.Windows.Forms.GroupBox();
+ this.checkBoxAddArchivesAsBundled = new System.Windows.Forms.CheckBox();
+ this.checkBoxModsUseHardlinks = new System.Windows.Forms.CheckBox();
+ this.checkBoxFreezeBundledArchives = new System.Windows.Forms.CheckBox();
+ this.tabPageModOrder = new System.Windows.Forms.TabPage();
+ this.listViewMods = new System.Windows.Forms.ListView();
+ this.columnHeaderModTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.columnHeaderVersion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.columnHeaderInstallAs = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.columnHeaderInstallInto = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.columnHeaderArchiveName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.columnHeaderArchivePreset = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.columnHeaderFrozenState = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
+ this.toolStrip1 = new System.Windows.Forms.ToolStrip();
+ this.toolStripButtonAddMod = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButtonAddModFolder = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButtonCheckAll = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButtonMoveUp = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButtonModOpenFolder = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButtonFreeze = new System.Windows.Forms.ToolStripButton();
+ this.toolStripButtonModUnfreeze = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
+ this.toolStripButtonDeleteMod = new System.Windows.Forms.ToolStripButton();
+ this.panelModDetails = new System.Windows.Forms.Panel();
+ this.pictureBoxModThumbnail = new System.Windows.Forms.PictureBox();
+ this.panelModDetailsInner = new System.Windows.Forms.Panel();
+ this.labelModSummary = new System.Windows.Forms.Label();
+ this.groupBoxModDetailsDetails = new System.Windows.Forms.GroupBox();
+ this.textBoxModName = new System.Windows.Forms.TextBox();
+ this.labelModURL = new System.Windows.Forms.Label();
+ this.labelModName = new System.Windows.Forms.Label();
+ this.textBoxModURL = new System.Windows.Forms.TextBox();
+ this.labelModVersion = new System.Windows.Forms.Label();
+ this.textBoxModVersion = new System.Windows.Forms.TextBox();
+ this.panelModDetailsNexusMods = new System.Windows.Forms.Panel();
+ this.labelModAuthorDesc = new System.Windows.Forms.Label();
+ this.labelModLatestVersionDesc = new System.Windows.Forms.Label();
+ this.labelModLatestVersion = new System.Windows.Forms.Label();
+ this.labelModAuthor = new System.Windows.Forms.Label();
+ this.linkLabelModSetLatestVersion = new System.Windows.Forms.LinkLabel();
+ this.buttonModOpenPage = new System.Windows.Forms.Button();
+ this.labelModFolderName = new System.Windows.Forms.Label();
+ this.textBoxModFolderName = new System.Windows.Forms.TextBox();
+ this.groupBoxModDetailsInstallationOptions = new System.Windows.Forms.GroupBox();
+ this.labelModArchiveName = new System.Windows.Forms.Label();
+ this.textBoxModArchiveName = new System.Windows.Forms.TextBox();
+ this.comboBoxModArchivePreset = new System.Windows.Forms.ComboBox();
+ this.textBoxModRootDir = new System.Windows.Forms.TextBox();
+ this.buttonModDetailsSuggestArchiveName = new System.Windows.Forms.Button();
+ this.comboBoxModInstallAs = new System.Windows.Forms.ComboBox();
+ this.labelModInstallInto = new System.Windows.Forms.Label();
+ this.checkBoxFreezeArchive = new System.Windows.Forms.CheckBox();
+ this.labelModArchivePreset = new System.Windows.Forms.Label();
+ this.labelModInstallAs = new System.Windows.Forms.Label();
+ this.buttonModPickRootDir = new System.Windows.Forms.Button();
+ this.labelModInstallWarning = new System.Windows.Forms.Label();
+ this.linkLabelModAutoDetectInstallOptions = new System.Windows.Forms.LinkLabel();
+ this.linkLabelModInvalidateFrozenArchive = new System.Windows.Forms.LinkLabel();
+ this.groupBoxModReplace = new System.Windows.Forms.GroupBox();
+ this.linkLabelModReplaceFilesWithArchive = new System.Windows.Forms.LinkLabel();
+ this.linkLabelModReplaceFilesWithFolder = new System.Windows.Forms.LinkLabel();
+ this.panelModDetailsReplaceDragAndDrop = new System.Windows.Forms.Panel();
+ this.linkLabelModDeleteFolderContents = new System.Windows.Forms.LinkLabel();
+ this.labelModDetailsReplace = new System.Windows.Forms.Label();
+ this.groupBoxNotes = new System.Windows.Forms.GroupBox();
+ this.textBoxNotes = new System.Windows.Forms.TextBox();
+ this.panelModDetailsHeader = new System.Windows.Forms.Panel();
+ this.checkBoxModDetailsEnabled = new System.Windows.Forms.CheckBox();
+ this.labelModTitle = new System.Windows.Forms.Label();
+ this.labelModEndorseStatus = new System.Windows.Forms.Label();
+ this.buttonModEndorse = new System.Windows.Forms.Button();
+ this.buttonModAbstain = new System.Windows.Forms.Button();
+ this.pictureBoxCollapseDetails = new System.Windows.Forms.PictureBox();
+ this.tabControl1 = new System.Windows.Forms.TabControl();
this.menuStrip1.SuspendLayout();
- this.tabControl1.SuspendLayout();
+ this.panel1.SuspendLayout();
+ this.statusStrip1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModsLoadingGIF)).BeginInit();
+ this.tabPageModsSettings.SuspendLayout();
+ this.groupBoxLists.SuspendLayout();
+ this.groupBoxModsBehavior.SuspendLayout();
this.tabPageModOrder.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollapseDetails)).BeginInit();
+ this.toolStrip1.SuspendLayout();
this.panelModDetails.SuspendLayout();
- this.panelModDetailsHeader.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModThumbnail)).BeginInit();
this.panelModDetailsInner.SuspendLayout();
- this.groupBoxNotes.SuspendLayout();
- this.groupBoxModReplace.SuspendLayout();
- this.groupBoxModDetailsInstallationOptions.SuspendLayout();
this.groupBoxModDetailsDetails.SuspendLayout();
this.panelModDetailsNexusMods.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModThumbnail)).BeginInit();
- this.toolStrip1.SuspendLayout();
- this.tabPageModsSettings.SuspendLayout();
- this.groupBoxModsBehavior.SuspendLayout();
- this.groupBoxLists.SuspendLayout();
- this.tabPageNexusMods.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.panel1.SuspendLayout();
- this.statusStrip1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModsLoadingGIF)).BeginInit();
+ this.groupBoxModDetailsInstallationOptions.SuspendLayout();
+ this.groupBoxModReplace.SuspendLayout();
+ this.groupBoxNotes.SuspendLayout();
+ this.panelModDetailsHeader.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollapseDetails)).BeginInit();
+ this.tabControl1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
@@ -445,622 +439,327 @@ private void InitializeComponent()
this.labelModsDeploy.TabIndex = 52;
this.labelModsDeploy.Text = "Ready";
//
- // tabControl1
+ // openFileDialogMod
//
- this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.tabControl1.Controls.Add(this.tabPageModOrder);
- this.tabControl1.Controls.Add(this.tabPageModsSettings);
- this.tabControl1.Controls.Add(this.tabPageNexusMods);
- this.tabControl1.Location = new System.Drawing.Point(12, 27);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(760, 490);
- this.tabControl1.TabIndex = 54;
+ this.openFileDialogMod.Filter = "All Archives|*.zip;*.rar;*.7z;*.tar;*.ba2";
+ this.openFileDialogMod.Title = "Add *.ba2 or any other archive.";
//
- // tabPageModOrder
+ // checkBoxDisableMods
//
- this.tabPageModOrder.Controls.Add(this.pictureBoxCollapseDetails);
- this.tabPageModOrder.Controls.Add(this.panelModDetails);
- this.tabPageModOrder.Controls.Add(this.toolStrip1);
- this.tabPageModOrder.Controls.Add(this.listViewMods);
- this.tabPageModOrder.Location = new System.Drawing.Point(4, 22);
- this.tabPageModOrder.Name = "tabPageModOrder";
- this.tabPageModOrder.Padding = new System.Windows.Forms.Padding(3);
- this.tabPageModOrder.Size = new System.Drawing.Size(752, 464);
- this.tabPageModOrder.TabIndex = 0;
- this.tabPageModOrder.Text = "Mod order";
- this.tabPageModOrder.UseVisualStyleBackColor = true;
+ this.checkBoxDisableMods.AutoSize = true;
+ this.checkBoxDisableMods.Location = new System.Drawing.Point(4, 3);
+ this.checkBoxDisableMods.Name = "checkBoxDisableMods";
+ this.checkBoxDisableMods.Size = new System.Drawing.Size(89, 17);
+ this.checkBoxDisableMods.TabIndex = 55;
+ this.checkBoxDisableMods.Text = "Disable mods";
+ this.checkBoxDisableMods.UseVisualStyleBackColor = true;
+ this.checkBoxDisableMods.CheckedChanged += new System.EventHandler(this.checkBoxDisableMods_CheckedChanged);
//
- // pictureBoxCollapseDetails
+ // openFileDialogGamePath
//
- this.pictureBoxCollapseDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.pictureBoxCollapseDetails.BackColor = System.Drawing.SystemColors.ButtonShadow;
- this.pictureBoxCollapseDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.pictureBoxCollapseDetails.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxCollapseDetails.Image")));
- this.pictureBoxCollapseDetails.Location = new System.Drawing.Point(333, 0);
- this.pictureBoxCollapseDetails.Name = "pictureBoxCollapseDetails";
- this.pictureBoxCollapseDetails.Size = new System.Drawing.Size(24, 464);
- this.pictureBoxCollapseDetails.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
- this.pictureBoxCollapseDetails.TabIndex = 59;
- this.pictureBoxCollapseDetails.TabStop = false;
- this.pictureBoxCollapseDetails.Click += new System.EventHandler(this.pictureBoxCollapseDetails_Click);
+ this.openFileDialogGamePath.Filter = "Fallout 76 executable|Fallout76.exe,Project76_GamePass.exe";
//
- // panelModDetails
+ // panel1
//
- this.panelModDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.panelModDetails.AutoScrollMargin = new System.Drawing.Size(0, 20);
- this.panelModDetails.BackColor = System.Drawing.SystemColors.Window;
- this.panelModDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panelModDetails.Controls.Add(this.panelModDetailsHeader);
- this.panelModDetails.Controls.Add(this.panelModDetailsInner);
- this.panelModDetails.Controls.Add(this.pictureBoxModThumbnail);
- this.panelModDetails.Location = new System.Drawing.Point(356, 0);
- this.panelModDetails.Name = "panelModDetails";
- this.panelModDetails.Size = new System.Drawing.Size(396, 464);
- this.panelModDetails.TabIndex = 58;
+ this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.panel1.Controls.Add(this.buttonModsDeploy);
+ this.panel1.Controls.Add(this.checkBoxDisableMods);
+ this.panel1.Location = new System.Drawing.Point(618, 521);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(166, 51);
+ this.panel1.TabIndex = 56;
//
- // panelModDetailsHeader
+ // openFileDialogBA2
//
- this.panelModDetailsHeader.Controls.Add(this.buttonModAbstain);
- this.panelModDetailsHeader.Controls.Add(this.buttonModEndorse);
- this.panelModDetailsHeader.Controls.Add(this.labelModEndorseStatus);
- this.panelModDetailsHeader.Controls.Add(this.labelModTitle);
- this.panelModDetailsHeader.Controls.Add(this.checkBoxModDetailsEnabled);
- this.panelModDetailsHeader.Location = new System.Drawing.Point(0, 157);
- this.panelModDetailsHeader.Name = "panelModDetailsHeader";
- this.panelModDetailsHeader.Size = new System.Drawing.Size(395, 62);
- this.panelModDetailsHeader.TabIndex = 77;
+ this.openFileDialogBA2.DefaultExt = "ba2";
+ this.openFileDialogBA2.Filter = "Archive2|*.ba2";
+ this.openFileDialogBA2.Title = "Add *.ba2 archive.";
//
- // buttonModAbstain
+ // statusStrip1
//
- this.buttonModAbstain.BackColor = System.Drawing.Color.Transparent;
- this.buttonModAbstain.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
- this.buttonModAbstain.FlatAppearance.BorderSize = 0;
- this.buttonModAbstain.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.buttonModAbstain.Image = global::Fo76ini.Properties.Resources.dislike;
- this.buttonModAbstain.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
- this.buttonModAbstain.Location = new System.Drawing.Point(356, 1);
- this.buttonModAbstain.Name = "buttonModAbstain";
- this.buttonModAbstain.Size = new System.Drawing.Size(36, 40);
- this.buttonModAbstain.TabIndex = 73;
- this.toolTip.SetToolTip(this.buttonModAbstain, "Abstain from endorsing this mod.");
- this.buttonModAbstain.UseVisualStyleBackColor = false;
- this.buttonModAbstain.Click += new System.EventHandler(this.buttonModAbstain_Click);
+ this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.toolStripStatusLabelDescModCount,
+ this.toolStripStatusLabelModCount,
+ this.toolStripStatusLabelDescEnabledCount,
+ this.toolStripStatusLabelEnabledCount,
+ this.toolStripStatusLabelSpacer,
+ this.toolStripStatusLabelDeploymentStatus});
+ this.statusStrip1.Location = new System.Drawing.Point(0, 579);
+ this.statusStrip1.Name = "statusStrip1";
+ this.statusStrip1.Size = new System.Drawing.Size(784, 22);
+ this.statusStrip1.TabIndex = 57;
+ this.statusStrip1.Text = "statusStrip1";
//
- // buttonModEndorse
+ // toolStripStatusLabelDescModCount
//
- this.buttonModEndorse.BackColor = System.Drawing.Color.Transparent;
- this.buttonModEndorse.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- this.buttonModEndorse.FlatAppearance.BorderSize = 0;
- this.buttonModEndorse.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.buttonModEndorse.Image = global::Fo76ini.Properties.Resources.like;
- this.buttonModEndorse.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
- this.buttonModEndorse.Location = new System.Drawing.Point(316, 1);
- this.buttonModEndorse.Name = "buttonModEndorse";
- this.buttonModEndorse.Size = new System.Drawing.Size(36, 40);
- this.buttonModEndorse.TabIndex = 72;
- this.toolTip.SetToolTip(this.buttonModEndorse, "Endorse this mod.");
- this.buttonModEndorse.UseVisualStyleBackColor = false;
- this.buttonModEndorse.Click += new System.EventHandler(this.buttonModEndorse_Click);
+ this.toolStripStatusLabelDescModCount.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.toolStripStatusLabelDescModCount.Margin = new System.Windows.Forms.Padding(8, 3, 3, 2);
+ this.toolStripStatusLabelDescModCount.Name = "toolStripStatusLabelDescModCount";
+ this.toolStripStatusLabelDescModCount.Size = new System.Drawing.Size(70, 17);
+ this.toolStripStatusLabelDescModCount.Text = "Mod count:";
//
- // labelModEndorseStatus
+ // toolStripStatusLabelModCount
//
- this.labelModEndorseStatus.Location = new System.Drawing.Point(145, 41);
- this.labelModEndorseStatus.Name = "labelModEndorseStatus";
- this.labelModEndorseStatus.Size = new System.Drawing.Size(246, 13);
- this.labelModEndorseStatus.TabIndex = 71;
- this.labelModEndorseStatus.Text = "< Whether or not the user has endorsed this mod >";
- this.labelModEndorseStatus.TextAlign = System.Drawing.ContentAlignment.TopRight;
+ this.toolStripStatusLabelModCount.Name = "toolStripStatusLabelModCount";
+ this.toolStripStatusLabelModCount.Size = new System.Drawing.Size(13, 17);
+ this.toolStripStatusLabelModCount.Text = "0";
//
- // labelModTitle
+ // toolStripStatusLabelDescEnabledCount
//
- this.labelModTitle.AutoEllipsis = true;
- this.labelModTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.labelModTitle.Location = new System.Drawing.Point(-12, 2);
- this.labelModTitle.Name = "labelModTitle";
- this.labelModTitle.Padding = new System.Windows.Forms.Padding(16, 2, 0, 2);
- this.labelModTitle.Size = new System.Drawing.Size(322, 25);
- this.labelModTitle.TabIndex = 75;
- this.labelModTitle.Text = "< Mod name goes here >";
+ this.toolStripStatusLabelDescEnabledCount.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.toolStripStatusLabelDescEnabledCount.Margin = new System.Windows.Forms.Padding(50, 3, 3, 2);
+ this.toolStripStatusLabelDescEnabledCount.Name = "toolStripStatusLabelDescEnabledCount";
+ this.toolStripStatusLabelDescEnabledCount.Size = new System.Drawing.Size(53, 17);
+ this.toolStripStatusLabelDescEnabledCount.Text = "Enabled:";
//
- // checkBoxModDetailsEnabled
+ // toolStripStatusLabelEnabledCount
//
- this.checkBoxModDetailsEnabled.AutoSize = true;
- this.checkBoxModDetailsEnabled.Location = new System.Drawing.Point(8, 30);
- this.checkBoxModDetailsEnabled.Name = "checkBoxModDetailsEnabled";
- this.checkBoxModDetailsEnabled.Size = new System.Drawing.Size(101, 17);
- this.checkBoxModDetailsEnabled.TabIndex = 74;
- this.checkBoxModDetailsEnabled.Text = "Enable this mod";
- this.checkBoxModDetailsEnabled.UseVisualStyleBackColor = true;
- this.checkBoxModDetailsEnabled.CheckedChanged += new System.EventHandler(this.checkBoxModDetailsEnabled_CheckedChanged);
+ this.toolStripStatusLabelEnabledCount.Name = "toolStripStatusLabelEnabledCount";
+ this.toolStripStatusLabelEnabledCount.Size = new System.Drawing.Size(13, 17);
+ this.toolStripStatusLabelEnabledCount.Text = "0";
//
- // panelModDetailsInner
+ // toolStripStatusLabelSpacer
//
- this.panelModDetailsInner.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.panelModDetailsInner.AutoScroll = true;
- this.panelModDetailsInner.AutoScrollMargin = new System.Drawing.Size(0, 8);
- this.panelModDetailsInner.BackColor = System.Drawing.SystemColors.Window;
- this.panelModDetailsInner.Controls.Add(this.groupBoxNotes);
- this.panelModDetailsInner.Controls.Add(this.groupBoxModReplace);
- this.panelModDetailsInner.Controls.Add(this.groupBoxModDetailsInstallationOptions);
- this.panelModDetailsInner.Controls.Add(this.groupBoxModDetailsDetails);
- this.panelModDetailsInner.Controls.Add(this.labelModSummary);
- this.panelModDetailsInner.Location = new System.Drawing.Point(0, 218);
- this.panelModDetailsInner.Name = "panelModDetailsInner";
- this.panelModDetailsInner.Size = new System.Drawing.Size(394, 246);
- this.panelModDetailsInner.TabIndex = 76;
+ this.toolStripStatusLabelSpacer.Name = "toolStripStatusLabelSpacer";
+ this.toolStripStatusLabelSpacer.Size = new System.Drawing.Size(423, 17);
+ this.toolStripStatusLabelSpacer.Spring = true;
+ this.toolStripStatusLabelSpacer.Text = " ";
//
- // groupBoxNotes
+ // toolStripStatusLabelDeploymentStatus
//
- this.groupBoxNotes.Controls.Add(this.textBoxNotes);
- this.groupBoxNotes.Location = new System.Drawing.Point(7, 257);
- this.groupBoxNotes.Name = "groupBoxNotes";
- this.groupBoxNotes.Size = new System.Drawing.Size(364, 151);
- this.groupBoxNotes.TabIndex = 76;
- this.groupBoxNotes.TabStop = false;
- this.groupBoxNotes.Text = "Notes";
+ this.toolStripStatusLabelDeploymentStatus.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.toolStripStatusLabelDeploymentStatus.ForeColor = System.Drawing.Color.Crimson;
+ this.toolStripStatusLabelDeploymentStatus.Name = "toolStripStatusLabelDeploymentStatus";
+ this.toolStripStatusLabelDeploymentStatus.Size = new System.Drawing.Size(133, 17);
+ this.toolStripStatusLabelDeploymentStatus.Text = "Deployment necessary";
//
- // textBoxNotes
+ // pictureBoxModsLoadingGIF
//
- this.textBoxNotes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxNotes.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.textBoxNotes.Location = new System.Drawing.Point(6, 19);
- this.textBoxNotes.Multiline = true;
- this.textBoxNotes.Name = "textBoxNotes";
- this.textBoxNotes.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.textBoxNotes.Size = new System.Drawing.Size(351, 120);
- this.textBoxNotes.TabIndex = 0;
- this.textBoxNotes.TextChanged += new System.EventHandler(this.textBoxNotes_TextChanged);
+ this.pictureBoxModsLoadingGIF.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)));
+ this.pictureBoxModsLoadingGIF.BackColor = System.Drawing.Color.White;
+ this.pictureBoxModsLoadingGIF.Image = global::Fo76ini.Properties.Resources.Spinner_200;
+ this.pictureBoxModsLoadingGIF.Location = new System.Drawing.Point(0, 27);
+ this.pictureBoxModsLoadingGIF.Name = "pictureBoxModsLoadingGIF";
+ this.pictureBoxModsLoadingGIF.Size = new System.Drawing.Size(16, 490);
+ this.pictureBoxModsLoadingGIF.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
+ this.pictureBoxModsLoadingGIF.TabIndex = 57;
+ this.pictureBoxModsLoadingGIF.TabStop = false;
+ this.pictureBoxModsLoadingGIF.Visible = false;
//
- // groupBoxModReplace
+ // timerCheckForNXM
//
- this.groupBoxModReplace.Controls.Add(this.labelModDetailsReplace);
- this.groupBoxModReplace.Controls.Add(this.linkLabelModDeleteFolderContents);
- this.groupBoxModReplace.Controls.Add(this.panelModDetailsReplaceDragAndDrop);
- this.groupBoxModReplace.Controls.Add(this.linkLabelModReplaceFilesWithFolder);
- this.groupBoxModReplace.Controls.Add(this.linkLabelModReplaceFilesWithArchive);
- this.groupBoxModReplace.Location = new System.Drawing.Point(7, 667);
- this.groupBoxModReplace.Name = "groupBoxModReplace";
- this.groupBoxModReplace.Size = new System.Drawing.Size(364, 136);
- this.groupBoxModReplace.TabIndex = 75;
- this.groupBoxModReplace.TabStop = false;
- this.groupBoxModReplace.Text = "Add / replace mod files";
+ this.timerCheckForNXM.Interval = 1000;
+ this.timerCheckForNXM.Tick += new System.EventHandler(this.timerCheckForNXM_Tick);
//
- // labelModDetailsReplace
+ // tabPageModsSettings
//
- this.labelModDetailsReplace.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.labelModDetailsReplace.ForeColor = System.Drawing.Color.Gray;
- this.labelModDetailsReplace.Location = new System.Drawing.Point(175, 76);
- this.labelModDetailsReplace.Name = "labelModDetailsReplace";
- this.labelModDetailsReplace.Size = new System.Drawing.Size(167, 52);
- this.labelModDetailsReplace.TabIndex = 0;
- this.labelModDetailsReplace.Text = "Drag-and-drop files/folders into the left box to add/replace files.";
- this.labelModDetailsReplace.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.tabPageModsSettings.Controls.Add(this.groupBoxModsBehavior);
+ this.tabPageModsSettings.Controls.Add(this.groupBoxLists);
+ this.tabPageModsSettings.Location = new System.Drawing.Point(4, 22);
+ this.tabPageModsSettings.Name = "tabPageModsSettings";
+ this.tabPageModsSettings.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPageModsSettings.Size = new System.Drawing.Size(752, 464);
+ this.tabPageModsSettings.TabIndex = 1;
+ this.tabPageModsSettings.Text = "Settings";
+ this.tabPageModsSettings.UseVisualStyleBackColor = true;
//
- // linkLabelModDeleteFolderContents
+ // groupBoxLists
//
- this.linkLabelModDeleteFolderContents.AutoSize = true;
- this.linkLabelModDeleteFolderContents.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
- this.linkLabelModDeleteFolderContents.Location = new System.Drawing.Point(173, 60);
- this.linkLabelModDeleteFolderContents.Name = "linkLabelModDeleteFolderContents";
- this.linkLabelModDeleteFolderContents.Size = new System.Drawing.Size(111, 13);
- this.linkLabelModDeleteFolderContents.TabIndex = 5;
- this.linkLabelModDeleteFolderContents.TabStop = true;
- this.linkLabelModDeleteFolderContents.Text = "Delete folder contents";
- this.linkLabelModDeleteFolderContents.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModDeleteFolderContents_LinkClicked);
+ this.groupBoxLists.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.groupBoxLists.Controls.Add(this.buttonModsResetTextbox);
+ this.groupBoxLists.Controls.Add(this.buttonModsApplyTextBox);
+ this.groupBoxLists.Controls.Add(this.textBoxResourceList);
+ this.groupBoxLists.Controls.Add(this.buttonModsCleanList);
+ this.groupBoxLists.Controls.Add(this.labelsResourceIndexFileList);
+ this.groupBoxLists.Location = new System.Drawing.Point(6, 107);
+ this.groupBoxLists.Name = "groupBoxLists";
+ this.groupBoxLists.Size = new System.Drawing.Size(740, 351);
+ this.groupBoxLists.TabIndex = 59;
+ this.groupBoxLists.TabStop = false;
+ this.groupBoxLists.Text = "Lists";
//
- // panelModDetailsReplaceDragAndDrop
+ // labelsResourceIndexFileList
//
- this.panelModDetailsReplaceDragAndDrop.AllowDrop = true;
- this.panelModDetailsReplaceDragAndDrop.BackgroundImage = global::Fo76ini.Properties.Resources.download_2_48;
- this.panelModDetailsReplaceDragAndDrop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.panelModDetailsReplaceDragAndDrop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panelModDetailsReplaceDragAndDrop.Location = new System.Drawing.Point(6, 19);
- this.panelModDetailsReplaceDragAndDrop.Name = "panelModDetailsReplaceDragAndDrop";
- this.panelModDetailsReplaceDragAndDrop.Size = new System.Drawing.Size(159, 108);
- this.panelModDetailsReplaceDragAndDrop.TabIndex = 4;
+ this.labelsResourceIndexFileList.AutoSize = true;
+ this.labelsResourceIndexFileList.Location = new System.Drawing.Point(3, 21);
+ this.labelsResourceIndexFileList.Name = "labelsResourceIndexFileList";
+ this.labelsResourceIndexFileList.Size = new System.Drawing.Size(71, 13);
+ this.labelsResourceIndexFileList.TabIndex = 55;
+ this.labelsResourceIndexFileList.Text = "Resource list:";
//
- // linkLabelModReplaceFilesWithFolder
+ // buttonModsCleanList
//
- this.linkLabelModReplaceFilesWithFolder.AutoSize = true;
- this.linkLabelModReplaceFilesWithFolder.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
- this.linkLabelModReplaceFilesWithFolder.Location = new System.Drawing.Point(173, 39);
- this.linkLabelModReplaceFilesWithFolder.Name = "linkLabelModReplaceFilesWithFolder";
- this.linkLabelModReplaceFilesWithFolder.Size = new System.Drawing.Size(65, 13);
- this.linkLabelModReplaceFilesWithFolder.TabIndex = 1;
- this.linkLabelModReplaceFilesWithFolder.TabStop = true;
- this.linkLabelModReplaceFilesWithFolder.Text = "Import folder";
- this.linkLabelModReplaceFilesWithFolder.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModReplaceFilesWithFolder_LinkClicked);
- //
- // linkLabelModReplaceFilesWithArchive
- //
- this.linkLabelModReplaceFilesWithArchive.AutoSize = true;
- this.linkLabelModReplaceFilesWithArchive.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
- this.linkLabelModReplaceFilesWithArchive.Location = new System.Drawing.Point(173, 19);
- this.linkLabelModReplaceFilesWithArchive.Name = "linkLabelModReplaceFilesWithArchive";
- this.linkLabelModReplaceFilesWithArchive.Size = new System.Drawing.Size(74, 13);
- this.linkLabelModReplaceFilesWithArchive.TabIndex = 0;
- this.linkLabelModReplaceFilesWithArchive.TabStop = true;
- this.linkLabelModReplaceFilesWithArchive.Text = "Import archive";
- this.linkLabelModReplaceFilesWithArchive.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModReplaceFilesWithArchive_LinkClicked);
- //
- // groupBoxModDetailsInstallationOptions
- //
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.linkLabelModInvalidateFrozenArchive);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.linkLabelModAutoDetectInstallOptions);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModInstallWarning);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.buttonModPickRootDir);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModInstallAs);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModArchivePreset);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.checkBoxFreezeArchive);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModInstallInto);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.comboBoxModInstallAs);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.buttonModDetailsSuggestArchiveName);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.textBoxModRootDir);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.comboBoxModArchivePreset);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.textBoxModArchiveName);
- this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModArchiveName);
- this.groupBoxModDetailsInstallationOptions.Location = new System.Drawing.Point(7, 414);
- this.groupBoxModDetailsInstallationOptions.Name = "groupBoxModDetailsInstallationOptions";
- this.groupBoxModDetailsInstallationOptions.Size = new System.Drawing.Size(364, 247);
- this.groupBoxModDetailsInstallationOptions.TabIndex = 74;
- this.groupBoxModDetailsInstallationOptions.TabStop = false;
- this.groupBoxModDetailsInstallationOptions.Text = "Installation options";
- //
- // linkLabelModInvalidateFrozenArchive
- //
- this.linkLabelModInvalidateFrozenArchive.AutoSize = true;
- this.linkLabelModInvalidateFrozenArchive.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
- this.linkLabelModInvalidateFrozenArchive.Location = new System.Drawing.Point(110, 131);
- this.linkLabelModInvalidateFrozenArchive.Name = "linkLabelModInvalidateFrozenArchive";
- this.linkLabelModInvalidateFrozenArchive.Size = new System.Drawing.Size(123, 13);
- this.linkLabelModInvalidateFrozenArchive.TabIndex = 51;
- this.linkLabelModInvalidateFrozenArchive.TabStop = true;
- this.linkLabelModInvalidateFrozenArchive.Text = "Invalidate frozen archive";
- this.linkLabelModInvalidateFrozenArchive.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModInvalidateFrozenArchive_LinkClicked);
- //
- // linkLabelModAutoDetectInstallOptions
- //
- this.linkLabelModAutoDetectInstallOptions.AutoSize = true;
- this.linkLabelModAutoDetectInstallOptions.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
- this.linkLabelModAutoDetectInstallOptions.Location = new System.Drawing.Point(7, 220);
- this.linkLabelModAutoDetectInstallOptions.Name = "linkLabelModAutoDetectInstallOptions";
- this.linkLabelModAutoDetectInstallOptions.Size = new System.Drawing.Size(189, 13);
- this.linkLabelModAutoDetectInstallOptions.TabIndex = 50;
- this.linkLabelModAutoDetectInstallOptions.TabStop = true;
- this.linkLabelModAutoDetectInstallOptions.Text = "Attempt auto-detect installation options";
- this.linkLabelModAutoDetectInstallOptions.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModAutoDetectInstallOptions_LinkClicked);
- //
- // labelModInstallWarning
- //
- this.labelModInstallWarning.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.labelModInstallWarning.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(107)))), ((int)(((byte)(8)))));
- this.labelModInstallWarning.Location = new System.Drawing.Point(7, 154);
- this.labelModInstallWarning.Name = "labelModInstallWarning";
- this.labelModInstallWarning.Size = new System.Drawing.Size(351, 66);
- this.labelModInstallWarning.TabIndex = 49;
- this.labelModInstallWarning.Text = "< Warning here >";
- //
- // buttonModPickRootDir
- //
- this.buttonModPickRootDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonModPickRootDir.Location = new System.Drawing.Point(332, 44);
- this.buttonModPickRootDir.Name = "buttonModPickRootDir";
- this.buttonModPickRootDir.Size = new System.Drawing.Size(26, 24);
- this.buttonModPickRootDir.TabIndex = 5;
- this.buttonModPickRootDir.Text = "...";
- this.buttonModPickRootDir.UseVisualStyleBackColor = true;
- this.buttonModPickRootDir.Click += new System.EventHandler(this.buttonModPickRootDir_Click);
- //
- // labelModInstallAs
- //
- this.labelModInstallAs.AutoSize = true;
- this.labelModInstallAs.Location = new System.Drawing.Point(6, 24);
- this.labelModInstallAs.Name = "labelModInstallAs";
- this.labelModInstallAs.Size = new System.Drawing.Size(51, 13);
- this.labelModInstallAs.TabIndex = 41;
- this.labelModInstallAs.Text = "Install as:";
- //
- // labelModArchivePreset
- //
- this.labelModArchivePreset.AutoSize = true;
- this.labelModArchivePreset.Location = new System.Drawing.Point(6, 75);
- this.labelModArchivePreset.Name = "labelModArchivePreset";
- this.labelModArchivePreset.Size = new System.Drawing.Size(40, 13);
- this.labelModArchivePreset.TabIndex = 43;
- this.labelModArchivePreset.Text = "Preset:";
- //
- // checkBoxFreezeArchive
- //
- this.checkBoxFreezeArchive.AutoSize = true;
- this.checkBoxFreezeArchive.Location = new System.Drawing.Point(10, 130);
- this.checkBoxFreezeArchive.Name = "checkBoxFreezeArchive";
- this.checkBoxFreezeArchive.Size = new System.Drawing.Size(58, 17);
- this.checkBoxFreezeArchive.TabIndex = 9;
- this.checkBoxFreezeArchive.Text = "Freeze";
- this.toolTip.SetToolTip(this.checkBoxFreezeArchive, "If you \'freeze\' an archive, it does not get recreated when deploying.\r\nThis will " +
- "speed up deployment.\r\n\r\nThis is especially useful, if the archive is HUGE (1GiB " +
- "or more) and the files aren\'t changing.");
- this.checkBoxFreezeArchive.UseVisualStyleBackColor = true;
- this.checkBoxFreezeArchive.CheckedChanged += new System.EventHandler(this.checkBoxFreezeArchive_CheckedChanged);
- //
- // labelModInstallInto
- //
- this.labelModInstallInto.AutoSize = true;
- this.labelModInstallInto.Location = new System.Drawing.Point(6, 51);
- this.labelModInstallInto.Name = "labelModInstallInto";
- this.labelModInstallInto.Size = new System.Drawing.Size(57, 13);
- this.labelModInstallInto.TabIndex = 38;
- this.labelModInstallInto.Text = "Install into:";
- //
- // comboBoxModInstallAs
- //
- this.comboBoxModInstallAs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.comboBoxModInstallAs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxModInstallAs.FormattingEnabled = true;
- this.comboBoxModInstallAs.Location = new System.Drawing.Point(113, 21);
- this.comboBoxModInstallAs.Name = "comboBoxModInstallAs";
- this.comboBoxModInstallAs.Size = new System.Drawing.Size(245, 21);
- this.comboBoxModInstallAs.TabIndex = 3;
- this.comboBoxModInstallAs.SelectedIndexChanged += new System.EventHandler(this.comboBoxModInstallAs_SelectedIndexChanged);
- //
- // buttonModDetailsSuggestArchiveName
- //
- this.buttonModDetailsSuggestArchiveName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonModDetailsSuggestArchiveName.Location = new System.Drawing.Point(289, 99);
- this.buttonModDetailsSuggestArchiveName.Name = "buttonModDetailsSuggestArchiveName";
- this.buttonModDetailsSuggestArchiveName.Size = new System.Drawing.Size(69, 23);
- this.buttonModDetailsSuggestArchiveName.TabIndex = 48;
- this.buttonModDetailsSuggestArchiveName.Text = "Suggest";
- this.buttonModDetailsSuggestArchiveName.UseVisualStyleBackColor = true;
- this.buttonModDetailsSuggestArchiveName.Click += new System.EventHandler(this.buttonModDetailsSuggestArchiveName_Click);
- //
- // textBoxModRootDir
- //
- this.textBoxModRootDir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxModRootDir.Location = new System.Drawing.Point(113, 48);
- this.textBoxModRootDir.Name = "textBoxModRootDir";
- this.textBoxModRootDir.Size = new System.Drawing.Size(213, 20);
- this.textBoxModRootDir.TabIndex = 4;
- this.textBoxModRootDir.TextChanged += new System.EventHandler(this.textBoxModRootDir_TextChanged);
- //
- // comboBoxModArchivePreset
- //
- this.comboBoxModArchivePreset.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.comboBoxModArchivePreset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comboBoxModArchivePreset.FormattingEnabled = true;
- this.comboBoxModArchivePreset.Location = new System.Drawing.Point(113, 74);
- this.comboBoxModArchivePreset.Name = "comboBoxModArchivePreset";
- this.comboBoxModArchivePreset.Size = new System.Drawing.Size(245, 21);
- this.comboBoxModArchivePreset.TabIndex = 6;
- this.comboBoxModArchivePreset.SelectedIndexChanged += new System.EventHandler(this.comboBoxModArchivePreset_SelectedIndexChanged);
- //
- // textBoxModArchiveName
- //
- this.textBoxModArchiveName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxModArchiveName.Location = new System.Drawing.Point(113, 101);
- this.textBoxModArchiveName.Name = "textBoxModArchiveName";
- this.textBoxModArchiveName.Size = new System.Drawing.Size(170, 20);
- this.textBoxModArchiveName.TabIndex = 7;
- this.textBoxModArchiveName.TextChanged += new System.EventHandler(this.textBoxModArchiveName_TextChanged);
- //
- // labelModArchiveName
- //
- this.labelModArchiveName.AutoSize = true;
- this.labelModArchiveName.Location = new System.Drawing.Point(7, 104);
- this.labelModArchiveName.Name = "labelModArchiveName";
- this.labelModArchiveName.Size = new System.Drawing.Size(75, 13);
- this.labelModArchiveName.TabIndex = 41;
- this.labelModArchiveName.Text = "Archive name:";
- //
- // groupBoxModDetailsDetails
- //
- this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModFolderName);
- this.groupBoxModDetailsDetails.Controls.Add(this.labelModFolderName);
- this.groupBoxModDetailsDetails.Controls.Add(this.buttonModOpenPage);
- this.groupBoxModDetailsDetails.Controls.Add(this.panelModDetailsNexusMods);
- this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModVersion);
- this.groupBoxModDetailsDetails.Controls.Add(this.labelModVersion);
- this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModURL);
- this.groupBoxModDetailsDetails.Controls.Add(this.labelModName);
- this.groupBoxModDetailsDetails.Controls.Add(this.labelModURL);
- this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModName);
- this.groupBoxModDetailsDetails.Location = new System.Drawing.Point(6, 63);
- this.groupBoxModDetailsDetails.Name = "groupBoxModDetailsDetails";
- this.groupBoxModDetailsDetails.Size = new System.Drawing.Size(365, 188);
- this.groupBoxModDetailsDetails.TabIndex = 73;
- this.groupBoxModDetailsDetails.TabStop = false;
- this.groupBoxModDetailsDetails.Text = "Details";
+ this.buttonModsCleanList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.buttonModsCleanList.Location = new System.Drawing.Point(6, 322);
+ this.buttonModsCleanList.Name = "buttonModsCleanList";
+ this.buttonModsCleanList.Size = new System.Drawing.Size(98, 23);
+ this.buttonModsCleanList.TabIndex = 58;
+ this.buttonModsCleanList.Text = "Clean list";
+ this.buttonModsCleanList.UseVisualStyleBackColor = true;
+ this.buttonModsCleanList.Click += new System.EventHandler(this.buttonModsCleanList_Click);
//
- // textBoxModFolderName
+ // textBoxResourceList
//
- this.textBoxModFolderName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ this.textBoxResourceList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxModFolderName.Location = new System.Drawing.Point(142, 97);
- this.textBoxModFolderName.Name = "textBoxModFolderName";
- this.textBoxModFolderName.Size = new System.Drawing.Size(217, 20);
- this.textBoxModFolderName.TabIndex = 56;
- this.textBoxModFolderName.TextChanged += new System.EventHandler(this.textBoxModFolderName_TextChanged);
+ this.textBoxResourceList.Location = new System.Drawing.Point(6, 37);
+ this.textBoxResourceList.Multiline = true;
+ this.textBoxResourceList.Name = "textBoxResourceList";
+ this.textBoxResourceList.Size = new System.Drawing.Size(728, 279);
+ this.textBoxResourceList.TabIndex = 54;
//
- // labelModFolderName
+ // buttonModsApplyTextBox
//
- this.labelModFolderName.AutoSize = true;
- this.labelModFolderName.Location = new System.Drawing.Point(7, 100);
- this.labelModFolderName.Name = "labelModFolderName";
- this.labelModFolderName.Size = new System.Drawing.Size(68, 13);
- this.labelModFolderName.TabIndex = 55;
- this.labelModFolderName.Text = "Folder name:";
+ this.buttonModsApplyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonModsApplyTextBox.Location = new System.Drawing.Point(607, 322);
+ this.buttonModsApplyTextBox.Name = "buttonModsApplyTextBox";
+ this.buttonModsApplyTextBox.Size = new System.Drawing.Size(127, 23);
+ this.buttonModsApplyTextBox.TabIndex = 59;
+ this.buttonModsApplyTextBox.Text = "Apply changes";
+ this.buttonModsApplyTextBox.UseVisualStyleBackColor = true;
+ this.buttonModsApplyTextBox.Click += new System.EventHandler(this.buttonModsApplyTextBox_Click);
//
- // buttonModOpenPage
+ // buttonModsResetTextbox
//
- this.buttonModOpenPage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonModOpenPage.BackColor = System.Drawing.Color.Transparent;
- this.buttonModOpenPage.Cursor = System.Windows.Forms.Cursors.Hand;
- this.buttonModOpenPage.FlatAppearance.BorderSize = 0;
- this.buttonModOpenPage.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.buttonModOpenPage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.buttonModOpenPage.Image = global::Fo76ini.Properties.Resources.external_link_16;
- this.buttonModOpenPage.Location = new System.Drawing.Point(331, 41);
- this.buttonModOpenPage.Name = "buttonModOpenPage";
- this.buttonModOpenPage.Size = new System.Drawing.Size(28, 28);
- this.buttonModOpenPage.TabIndex = 54;
- this.buttonModOpenPage.UseVisualStyleBackColor = false;
- this.buttonModOpenPage.Click += new System.EventHandler(this.buttonModOpenPage_Click);
+ this.buttonModsResetTextbox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonModsResetTextbox.Location = new System.Drawing.Point(503, 322);
+ this.buttonModsResetTextbox.Name = "buttonModsResetTextbox";
+ this.buttonModsResetTextbox.Size = new System.Drawing.Size(98, 23);
+ this.buttonModsResetTextbox.TabIndex = 60;
+ this.buttonModsResetTextbox.Text = "Reset";
+ this.buttonModsResetTextbox.UseVisualStyleBackColor = true;
+ this.buttonModsResetTextbox.Click += new System.EventHandler(this.buttonModsResetTextbox_Click);
//
- // panelModDetailsNexusMods
+ // groupBoxModsBehavior
//
- this.panelModDetailsNexusMods.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ this.groupBoxModsBehavior.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.panelModDetailsNexusMods.Controls.Add(this.linkLabelModSetLatestVersion);
- this.panelModDetailsNexusMods.Controls.Add(this.labelModAuthor);
- this.panelModDetailsNexusMods.Controls.Add(this.labelModLatestVersion);
- this.panelModDetailsNexusMods.Controls.Add(this.labelModLatestVersionDesc);
- this.panelModDetailsNexusMods.Controls.Add(this.labelModAuthorDesc);
- this.panelModDetailsNexusMods.Location = new System.Drawing.Point(1, 123);
- this.panelModDetailsNexusMods.Name = "panelModDetailsNexusMods";
- this.panelModDetailsNexusMods.Size = new System.Drawing.Size(363, 57);
- this.panelModDetailsNexusMods.TabIndex = 53;
- //
- // linkLabelModSetLatestVersion
- //
- this.linkLabelModSetLatestVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.linkLabelModSetLatestVersion.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
- this.linkLabelModSetLatestVersion.Location = new System.Drawing.Point(220, 5);
- this.linkLabelModSetLatestVersion.Name = "linkLabelModSetLatestVersion";
- this.linkLabelModSetLatestVersion.Size = new System.Drawing.Size(137, 13);
- this.linkLabelModSetLatestVersion.TabIndex = 2;
- this.linkLabelModSetLatestVersion.TabStop = true;
- this.linkLabelModSetLatestVersion.Text = "Set latest version";
- this.linkLabelModSetLatestVersion.TextAlign = System.Drawing.ContentAlignment.TopRight;
- this.linkLabelModSetLatestVersion.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModSetLatestVersion_LinkClicked);
+ this.groupBoxModsBehavior.Controls.Add(this.checkBoxFreezeBundledArchives);
+ this.groupBoxModsBehavior.Controls.Add(this.checkBoxModsUseHardlinks);
+ this.groupBoxModsBehavior.Controls.Add(this.checkBoxAddArchivesAsBundled);
+ this.groupBoxModsBehavior.Location = new System.Drawing.Point(6, 6);
+ this.groupBoxModsBehavior.Name = "groupBoxModsBehavior";
+ this.groupBoxModsBehavior.Size = new System.Drawing.Size(740, 95);
+ this.groupBoxModsBehavior.TabIndex = 60;
+ this.groupBoxModsBehavior.TabStop = false;
+ this.groupBoxModsBehavior.Text = "Behavior";
//
- // labelModAuthor
+ // checkBoxAddArchivesAsBundled
//
- this.labelModAuthor.AutoSize = true;
- this.labelModAuthor.Location = new System.Drawing.Point(138, 31);
- this.labelModAuthor.Name = "labelModAuthor";
- this.labelModAuthor.Size = new System.Drawing.Size(135, 13);
- this.labelModAuthor.TabIndex = 57;
- this.labelModAuthor.Text = "< Author name goes here >";
+ this.checkBoxAddArchivesAsBundled.AutoSize = true;
+ this.checkBoxAddArchivesAsBundled.Location = new System.Drawing.Point(6, 65);
+ this.checkBoxAddArchivesAsBundled.Name = "checkBoxAddArchivesAsBundled";
+ this.checkBoxAddArchivesAsBundled.Size = new System.Drawing.Size(167, 17);
+ this.checkBoxAddArchivesAsBundled.TabIndex = 0;
+ this.checkBoxAddArchivesAsBundled.Text = "Unfreeze *.ba2 files by default";
+ this.checkBoxAddArchivesAsBundled.UseVisualStyleBackColor = true;
+ this.checkBoxAddArchivesAsBundled.CheckedChanged += new System.EventHandler(this.checkBoxAddArchivesAsBundled_CheckedChanged);
//
- // labelModLatestVersion
+ // checkBoxModsUseHardlinks
//
- this.labelModLatestVersion.AutoSize = true;
- this.labelModLatestVersion.Location = new System.Drawing.Point(138, 5);
- this.labelModLatestVersion.Name = "labelModLatestVersion";
- this.labelModLatestVersion.Size = new System.Drawing.Size(22, 13);
- this.labelModLatestVersion.TabIndex = 56;
- this.labelModLatestVersion.Text = "1.0";
+ this.checkBoxModsUseHardlinks.AutoSize = true;
+ this.checkBoxModsUseHardlinks.Location = new System.Drawing.Point(6, 19);
+ this.checkBoxModsUseHardlinks.Name = "checkBoxModsUseHardlinks";
+ this.checkBoxModsUseHardlinks.Size = new System.Drawing.Size(331, 17);
+ this.checkBoxModsUseHardlinks.TabIndex = 1;
+ this.checkBoxModsUseHardlinks.Text = "Make hard links instead of copying files manually (recommended)";
+ this.toolTip.SetToolTip(this.checkBoxModsUseHardlinks, "Reduces disk space and deployment time.");
+ this.checkBoxModsUseHardlinks.UseVisualStyleBackColor = true;
+ this.checkBoxModsUseHardlinks.CheckedChanged += new System.EventHandler(this.checkBoxModsUseHardlinks_CheckedChanged);
//
- // labelModLatestVersionDesc
+ // checkBoxFreezeBundledArchives
//
- this.labelModLatestVersionDesc.AutoSize = true;
- this.labelModLatestVersionDesc.Location = new System.Drawing.Point(6, 5);
- this.labelModLatestVersionDesc.Name = "labelModLatestVersionDesc";
- this.labelModLatestVersionDesc.Size = new System.Drawing.Size(76, 13);
- this.labelModLatestVersionDesc.TabIndex = 54;
- this.labelModLatestVersionDesc.Text = "Latest version:";
+ this.checkBoxFreezeBundledArchives.AutoSize = true;
+ this.checkBoxFreezeBundledArchives.Location = new System.Drawing.Point(6, 42);
+ this.checkBoxFreezeBundledArchives.Name = "checkBoxFreezeBundledArchives";
+ this.checkBoxFreezeBundledArchives.Size = new System.Drawing.Size(211, 17);
+ this.checkBoxFreezeBundledArchives.TabIndex = 2;
+ this.checkBoxFreezeBundledArchives.Text = "[Experimental] Freeze bundled archives";
+ this.toolTip.SetToolTip(this.checkBoxFreezeBundledArchives, "Instead of rebuilding bundled archives, it will save a bundled copy and ask you i" +
+ "f you want to update it on deploy.");
+ this.checkBoxFreezeBundledArchives.UseVisualStyleBackColor = true;
+ this.checkBoxFreezeBundledArchives.CheckedChanged += new System.EventHandler(this.checkBoxFreezeBundledArchives_CheckedChanged);
//
- // labelModAuthorDesc
+ // tabPageModOrder
//
- this.labelModAuthorDesc.AutoSize = true;
- this.labelModAuthorDesc.Location = new System.Drawing.Point(6, 31);
- this.labelModAuthorDesc.Name = "labelModAuthorDesc";
- this.labelModAuthorDesc.Size = new System.Drawing.Size(41, 13);
- this.labelModAuthorDesc.TabIndex = 53;
- this.labelModAuthorDesc.Text = "Author:";
+ this.tabPageModOrder.Controls.Add(this.pictureBoxCollapseDetails);
+ this.tabPageModOrder.Controls.Add(this.panelModDetails);
+ this.tabPageModOrder.Controls.Add(this.toolStrip1);
+ this.tabPageModOrder.Controls.Add(this.listViewMods);
+ this.tabPageModOrder.Location = new System.Drawing.Point(4, 22);
+ this.tabPageModOrder.Name = "tabPageModOrder";
+ this.tabPageModOrder.Padding = new System.Windows.Forms.Padding(3);
+ this.tabPageModOrder.Size = new System.Drawing.Size(752, 464);
+ this.tabPageModOrder.TabIndex = 0;
+ this.tabPageModOrder.Text = "Mod order";
+ this.tabPageModOrder.UseVisualStyleBackColor = true;
//
- // textBoxModVersion
+ // listViewMods
//
- this.textBoxModVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ this.listViewMods.AllowDrop = true;
+ this.listViewMods.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxModVersion.Location = new System.Drawing.Point(142, 71);
- this.textBoxModVersion.Name = "textBoxModVersion";
- this.textBoxModVersion.Size = new System.Drawing.Size(217, 20);
- this.textBoxModVersion.TabIndex = 52;
- this.textBoxModVersion.TextChanged += new System.EventHandler(this.textBoxModVersion_TextChanged);
- //
- // labelModVersion
- //
- this.labelModVersion.AutoSize = true;
- this.labelModVersion.Location = new System.Drawing.Point(7, 74);
- this.labelModVersion.Name = "labelModVersion";
- this.labelModVersion.Size = new System.Drawing.Size(86, 13);
- this.labelModVersion.TabIndex = 51;
- this.labelModVersion.Text = "Installed version:";
+ this.listViewMods.CausesValidation = false;
+ this.listViewMods.CheckBoxes = true;
+ this.listViewMods.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
+ this.columnHeaderModTitle,
+ this.columnHeaderVersion,
+ this.columnHeaderInstallAs,
+ this.columnHeaderInstallInto,
+ this.columnHeaderArchiveName,
+ this.columnHeaderArchivePreset,
+ this.columnHeaderFrozenState});
+ this.listViewMods.FullRowSelect = true;
+ this.listViewMods.GridLines = true;
+ this.listViewMods.HideSelection = false;
+ this.listViewMods.LabelWrap = false;
+ this.listViewMods.Location = new System.Drawing.Point(39, 0);
+ this.listViewMods.Name = "listViewMods";
+ this.listViewMods.Size = new System.Drawing.Size(300, 464);
+ this.listViewMods.TabIndex = 41;
+ this.listViewMods.TabStop = false;
+ this.listViewMods.UseCompatibleStateImageBehavior = false;
+ this.listViewMods.View = System.Windows.Forms.View.Details;
+ this.listViewMods.SelectedIndexChanged += new System.EventHandler(this.listViewMods_SelectedIndexChanged);
//
- // textBoxModURL
+ // columnHeaderModTitle
//
- this.textBoxModURL.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxModURL.Location = new System.Drawing.Point(142, 45);
- this.textBoxModURL.Name = "textBoxModURL";
- this.textBoxModURL.Size = new System.Drawing.Size(186, 20);
- this.textBoxModURL.TabIndex = 50;
- this.textBoxModURL.TextChanged += new System.EventHandler(this.textBoxModURL_TextChanged);
+ this.columnHeaderModTitle.Text = "Mod name";
+ this.columnHeaderModTitle.Width = 350;
//
- // labelModName
+ // columnHeaderVersion
//
- this.labelModName.AutoSize = true;
- this.labelModName.Location = new System.Drawing.Point(6, 22);
- this.labelModName.Name = "labelModName";
- this.labelModName.Size = new System.Drawing.Size(60, 13);
- this.labelModName.TabIndex = 25;
- this.labelModName.Text = "Mod name:";
+ this.columnHeaderVersion.Text = "Version";
+ this.columnHeaderVersion.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.columnHeaderVersion.Width = 50;
//
- // labelModURL
+ // columnHeaderInstallAs
//
- this.labelModURL.AutoSize = true;
- this.labelModURL.Location = new System.Drawing.Point(6, 48);
- this.labelModURL.Name = "labelModURL";
- this.labelModURL.Size = new System.Drawing.Size(88, 13);
- this.labelModURL.TabIndex = 49;
- this.labelModURL.Text = "Webpage (URL):";
+ this.columnHeaderInstallAs.Text = "Type";
//
- // textBoxModName
+ // columnHeaderInstallInto
//
- this.textBoxModName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxModName.Location = new System.Drawing.Point(142, 19);
- this.textBoxModName.Name = "textBoxModName";
- this.textBoxModName.Size = new System.Drawing.Size(217, 20);
- this.textBoxModName.TabIndex = 1;
- this.textBoxModName.TextChanged += new System.EventHandler(this.textBoxModName_TextChanged);
+ this.columnHeaderInstallInto.Text = "Install into";
//
- // labelModSummary
+ // columnHeaderArchiveName
//
- this.labelModSummary.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
- this.labelModSummary.Location = new System.Drawing.Point(6, 5);
- this.labelModSummary.Name = "labelModSummary";
- this.labelModSummary.Size = new System.Drawing.Size(365, 55);
- this.labelModSummary.TabIndex = 55;
- this.labelModSummary.Text = "< Summary goes here >";
+ this.columnHeaderArchiveName.Text = "Archive name";
+ this.columnHeaderArchiveName.Width = 100;
//
- // pictureBoxModThumbnail
+ // columnHeaderArchivePreset
//
- this.pictureBoxModThumbnail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.pictureBoxModThumbnail.BackColor = System.Drawing.Color.Black;
- this.pictureBoxModThumbnail.Image = global::Fo76ini.Properties.Resources.bg;
- this.pictureBoxModThumbnail.Location = new System.Drawing.Point(-2, -2);
- this.pictureBoxModThumbnail.Name = "pictureBoxModThumbnail";
- this.pictureBoxModThumbnail.Size = new System.Drawing.Size(400, 160);
- this.pictureBoxModThumbnail.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
- this.pictureBoxModThumbnail.TabIndex = 71;
- this.pictureBoxModThumbnail.TabStop = false;
+ this.columnHeaderArchivePreset.Text = "Archive preset";
+ this.columnHeaderArchivePreset.Width = 200;
+ //
+ // columnHeaderFrozenState
+ //
+ this.columnHeaderFrozenState.Text = "Frozen?";
+ this.columnHeaderFrozenState.Width = 50;
//
// toolStrip1
//
@@ -1228,362 +927,607 @@ private void InitializeComponent()
this.toolStripButtonDeleteMod.Text = "Delete mod";
this.toolStripButtonDeleteMod.Click += new System.EventHandler(this.toolStripButtonDeleteMod_Click);
//
- // listViewMods
+ // panelModDetails
//
- this.listViewMods.AllowDrop = true;
- this.listViewMods.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
+ this.panelModDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
- this.listViewMods.CausesValidation = false;
- this.listViewMods.CheckBoxes = true;
- this.listViewMods.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.columnHeaderModTitle,
- this.columnHeaderVersion,
- this.columnHeaderInstallAs,
- this.columnHeaderInstallInto,
- this.columnHeaderArchiveName,
- this.columnHeaderArchivePreset,
- this.columnHeaderFrozenState});
- this.listViewMods.FullRowSelect = true;
- this.listViewMods.GridLines = true;
- this.listViewMods.HideSelection = false;
- this.listViewMods.LabelWrap = false;
- this.listViewMods.Location = new System.Drawing.Point(39, 0);
- this.listViewMods.Name = "listViewMods";
- this.listViewMods.Size = new System.Drawing.Size(300, 464);
- this.listViewMods.TabIndex = 41;
- this.listViewMods.TabStop = false;
- this.listViewMods.UseCompatibleStateImageBehavior = false;
- this.listViewMods.View = System.Windows.Forms.View.Details;
- this.listViewMods.SelectedIndexChanged += new System.EventHandler(this.listViewMods_SelectedIndexChanged);
+ this.panelModDetails.AutoScrollMargin = new System.Drawing.Size(0, 20);
+ this.panelModDetails.BackColor = System.Drawing.SystemColors.Window;
+ this.panelModDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panelModDetails.Controls.Add(this.panelModDetailsHeader);
+ this.panelModDetails.Controls.Add(this.panelModDetailsInner);
+ this.panelModDetails.Controls.Add(this.pictureBoxModThumbnail);
+ this.panelModDetails.Location = new System.Drawing.Point(356, 0);
+ this.panelModDetails.Name = "panelModDetails";
+ this.panelModDetails.Size = new System.Drawing.Size(396, 464);
+ this.panelModDetails.TabIndex = 58;
//
- // columnHeaderModTitle
+ // pictureBoxModThumbnail
//
- this.columnHeaderModTitle.Text = "Mod name";
- this.columnHeaderModTitle.Width = 350;
+ this.pictureBoxModThumbnail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.pictureBoxModThumbnail.BackColor = System.Drawing.Color.Black;
+ this.pictureBoxModThumbnail.Image = global::Fo76ini.Properties.Resources.bg;
+ this.pictureBoxModThumbnail.Location = new System.Drawing.Point(-2, -2);
+ this.pictureBoxModThumbnail.Name = "pictureBoxModThumbnail";
+ this.pictureBoxModThumbnail.Size = new System.Drawing.Size(400, 160);
+ this.pictureBoxModThumbnail.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
+ this.pictureBoxModThumbnail.TabIndex = 71;
+ this.pictureBoxModThumbnail.TabStop = false;
+ //
+ // panelModDetailsInner
+ //
+ this.panelModDetailsInner.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)));
+ this.panelModDetailsInner.AutoScroll = true;
+ this.panelModDetailsInner.AutoScrollMargin = new System.Drawing.Size(0, 8);
+ this.panelModDetailsInner.BackColor = System.Drawing.SystemColors.Window;
+ this.panelModDetailsInner.Controls.Add(this.groupBoxNotes);
+ this.panelModDetailsInner.Controls.Add(this.groupBoxModReplace);
+ this.panelModDetailsInner.Controls.Add(this.groupBoxModDetailsInstallationOptions);
+ this.panelModDetailsInner.Controls.Add(this.groupBoxModDetailsDetails);
+ this.panelModDetailsInner.Controls.Add(this.labelModSummary);
+ this.panelModDetailsInner.Location = new System.Drawing.Point(0, 218);
+ this.panelModDetailsInner.Name = "panelModDetailsInner";
+ this.panelModDetailsInner.Size = new System.Drawing.Size(394, 246);
+ this.panelModDetailsInner.TabIndex = 76;
+ //
+ // labelModSummary
+ //
+ this.labelModSummary.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
+ this.labelModSummary.Location = new System.Drawing.Point(6, 5);
+ this.labelModSummary.Name = "labelModSummary";
+ this.labelModSummary.Size = new System.Drawing.Size(365, 55);
+ this.labelModSummary.TabIndex = 55;
+ this.labelModSummary.Text = "< Summary goes here >";
+ //
+ // groupBoxModDetailsDetails
+ //
+ this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModFolderName);
+ this.groupBoxModDetailsDetails.Controls.Add(this.labelModFolderName);
+ this.groupBoxModDetailsDetails.Controls.Add(this.buttonModOpenPage);
+ this.groupBoxModDetailsDetails.Controls.Add(this.panelModDetailsNexusMods);
+ this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModVersion);
+ this.groupBoxModDetailsDetails.Controls.Add(this.labelModVersion);
+ this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModURL);
+ this.groupBoxModDetailsDetails.Controls.Add(this.labelModName);
+ this.groupBoxModDetailsDetails.Controls.Add(this.labelModURL);
+ this.groupBoxModDetailsDetails.Controls.Add(this.textBoxModName);
+ this.groupBoxModDetailsDetails.Location = new System.Drawing.Point(6, 63);
+ this.groupBoxModDetailsDetails.Name = "groupBoxModDetailsDetails";
+ this.groupBoxModDetailsDetails.Size = new System.Drawing.Size(365, 188);
+ this.groupBoxModDetailsDetails.TabIndex = 73;
+ this.groupBoxModDetailsDetails.TabStop = false;
+ this.groupBoxModDetailsDetails.Text = "Details";
+ //
+ // textBoxModName
+ //
+ this.textBoxModName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBoxModName.Location = new System.Drawing.Point(142, 19);
+ this.textBoxModName.Name = "textBoxModName";
+ this.textBoxModName.Size = new System.Drawing.Size(217, 20);
+ this.textBoxModName.TabIndex = 1;
+ this.textBoxModName.TextChanged += new System.EventHandler(this.textBoxModName_TextChanged);
+ //
+ // labelModURL
+ //
+ this.labelModURL.AutoSize = true;
+ this.labelModURL.Location = new System.Drawing.Point(6, 48);
+ this.labelModURL.Name = "labelModURL";
+ this.labelModURL.Size = new System.Drawing.Size(88, 13);
+ this.labelModURL.TabIndex = 49;
+ this.labelModURL.Text = "Webpage (URL):";
+ //
+ // labelModName
+ //
+ this.labelModName.AutoSize = true;
+ this.labelModName.Location = new System.Drawing.Point(6, 22);
+ this.labelModName.Name = "labelModName";
+ this.labelModName.Size = new System.Drawing.Size(60, 13);
+ this.labelModName.TabIndex = 25;
+ this.labelModName.Text = "Mod name:";
+ //
+ // textBoxModURL
+ //
+ this.textBoxModURL.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBoxModURL.Location = new System.Drawing.Point(142, 45);
+ this.textBoxModURL.Name = "textBoxModURL";
+ this.textBoxModURL.Size = new System.Drawing.Size(186, 20);
+ this.textBoxModURL.TabIndex = 50;
+ this.textBoxModURL.TextChanged += new System.EventHandler(this.textBoxModURL_TextChanged);
+ //
+ // labelModVersion
+ //
+ this.labelModVersion.AutoSize = true;
+ this.labelModVersion.Location = new System.Drawing.Point(7, 74);
+ this.labelModVersion.Name = "labelModVersion";
+ this.labelModVersion.Size = new System.Drawing.Size(86, 13);
+ this.labelModVersion.TabIndex = 51;
+ this.labelModVersion.Text = "Installed version:";
+ //
+ // textBoxModVersion
+ //
+ this.textBoxModVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBoxModVersion.Location = new System.Drawing.Point(142, 71);
+ this.textBoxModVersion.Name = "textBoxModVersion";
+ this.textBoxModVersion.Size = new System.Drawing.Size(217, 20);
+ this.textBoxModVersion.TabIndex = 52;
+ this.textBoxModVersion.TextChanged += new System.EventHandler(this.textBoxModVersion_TextChanged);
+ //
+ // panelModDetailsNexusMods
+ //
+ this.panelModDetailsNexusMods.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.panelModDetailsNexusMods.Controls.Add(this.linkLabelModSetLatestVersion);
+ this.panelModDetailsNexusMods.Controls.Add(this.labelModAuthor);
+ this.panelModDetailsNexusMods.Controls.Add(this.labelModLatestVersion);
+ this.panelModDetailsNexusMods.Controls.Add(this.labelModLatestVersionDesc);
+ this.panelModDetailsNexusMods.Controls.Add(this.labelModAuthorDesc);
+ this.panelModDetailsNexusMods.Location = new System.Drawing.Point(1, 123);
+ this.panelModDetailsNexusMods.Name = "panelModDetailsNexusMods";
+ this.panelModDetailsNexusMods.Size = new System.Drawing.Size(363, 57);
+ this.panelModDetailsNexusMods.TabIndex = 53;
+ //
+ // labelModAuthorDesc
+ //
+ this.labelModAuthorDesc.AutoSize = true;
+ this.labelModAuthorDesc.Location = new System.Drawing.Point(6, 31);
+ this.labelModAuthorDesc.Name = "labelModAuthorDesc";
+ this.labelModAuthorDesc.Size = new System.Drawing.Size(41, 13);
+ this.labelModAuthorDesc.TabIndex = 53;
+ this.labelModAuthorDesc.Text = "Author:";
+ //
+ // labelModLatestVersionDesc
+ //
+ this.labelModLatestVersionDesc.AutoSize = true;
+ this.labelModLatestVersionDesc.Location = new System.Drawing.Point(6, 5);
+ this.labelModLatestVersionDesc.Name = "labelModLatestVersionDesc";
+ this.labelModLatestVersionDesc.Size = new System.Drawing.Size(76, 13);
+ this.labelModLatestVersionDesc.TabIndex = 54;
+ this.labelModLatestVersionDesc.Text = "Latest version:";
+ //
+ // labelModLatestVersion
+ //
+ this.labelModLatestVersion.AutoSize = true;
+ this.labelModLatestVersion.Location = new System.Drawing.Point(138, 5);
+ this.labelModLatestVersion.Name = "labelModLatestVersion";
+ this.labelModLatestVersion.Size = new System.Drawing.Size(22, 13);
+ this.labelModLatestVersion.TabIndex = 56;
+ this.labelModLatestVersion.Text = "1.0";
//
- // columnHeaderVersion
+ // labelModAuthor
//
- this.columnHeaderVersion.Text = "Version";
- this.columnHeaderVersion.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.columnHeaderVersion.Width = 50;
+ this.labelModAuthor.AutoSize = true;
+ this.labelModAuthor.Location = new System.Drawing.Point(138, 31);
+ this.labelModAuthor.Name = "labelModAuthor";
+ this.labelModAuthor.Size = new System.Drawing.Size(135, 13);
+ this.labelModAuthor.TabIndex = 57;
+ this.labelModAuthor.Text = "< Author name goes here >";
//
- // columnHeaderInstallAs
+ // linkLabelModSetLatestVersion
//
- this.columnHeaderInstallAs.Text = "Type";
+ this.linkLabelModSetLatestVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.linkLabelModSetLatestVersion.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.linkLabelModSetLatestVersion.Location = new System.Drawing.Point(220, 5);
+ this.linkLabelModSetLatestVersion.Name = "linkLabelModSetLatestVersion";
+ this.linkLabelModSetLatestVersion.Size = new System.Drawing.Size(137, 13);
+ this.linkLabelModSetLatestVersion.TabIndex = 2;
+ this.linkLabelModSetLatestVersion.TabStop = true;
+ this.linkLabelModSetLatestVersion.Text = "Set latest version";
+ this.linkLabelModSetLatestVersion.TextAlign = System.Drawing.ContentAlignment.TopRight;
+ this.linkLabelModSetLatestVersion.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModSetLatestVersion_LinkClicked);
//
- // columnHeaderInstallInto
+ // buttonModOpenPage
//
- this.columnHeaderInstallInto.Text = "Install into";
+ this.buttonModOpenPage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonModOpenPage.BackColor = System.Drawing.Color.Transparent;
+ this.buttonModOpenPage.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.buttonModOpenPage.FlatAppearance.BorderSize = 0;
+ this.buttonModOpenPage.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
+ this.buttonModOpenPage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.buttonModOpenPage.Image = global::Fo76ini.Properties.Resources.external_link_16;
+ this.buttonModOpenPage.Location = new System.Drawing.Point(331, 41);
+ this.buttonModOpenPage.Name = "buttonModOpenPage";
+ this.buttonModOpenPage.Size = new System.Drawing.Size(28, 28);
+ this.buttonModOpenPage.TabIndex = 54;
+ this.buttonModOpenPage.UseVisualStyleBackColor = false;
+ this.buttonModOpenPage.Click += new System.EventHandler(this.buttonModOpenPage_Click);
//
- // columnHeaderArchiveName
+ // labelModFolderName
//
- this.columnHeaderArchiveName.Text = "Archive name";
- this.columnHeaderArchiveName.Width = 100;
+ this.labelModFolderName.AutoSize = true;
+ this.labelModFolderName.Location = new System.Drawing.Point(7, 100);
+ this.labelModFolderName.Name = "labelModFolderName";
+ this.labelModFolderName.Size = new System.Drawing.Size(68, 13);
+ this.labelModFolderName.TabIndex = 55;
+ this.labelModFolderName.Text = "Folder name:";
//
- // columnHeaderArchivePreset
+ // textBoxModFolderName
//
- this.columnHeaderArchivePreset.Text = "Archive preset";
- this.columnHeaderArchivePreset.Width = 200;
+ this.textBoxModFolderName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBoxModFolderName.Location = new System.Drawing.Point(142, 97);
+ this.textBoxModFolderName.Name = "textBoxModFolderName";
+ this.textBoxModFolderName.Size = new System.Drawing.Size(217, 20);
+ this.textBoxModFolderName.TabIndex = 56;
+ this.textBoxModFolderName.TextChanged += new System.EventHandler(this.textBoxModFolderName_TextChanged);
//
- // columnHeaderFrozenState
+ // groupBoxModDetailsInstallationOptions
//
- this.columnHeaderFrozenState.Text = "Frozen?";
- this.columnHeaderFrozenState.Width = 50;
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.linkLabelModInvalidateFrozenArchive);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.linkLabelModAutoDetectInstallOptions);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModInstallWarning);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.buttonModPickRootDir);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModInstallAs);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModArchivePreset);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.checkBoxFreezeArchive);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModInstallInto);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.comboBoxModInstallAs);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.buttonModDetailsSuggestArchiveName);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.textBoxModRootDir);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.comboBoxModArchivePreset);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.textBoxModArchiveName);
+ this.groupBoxModDetailsInstallationOptions.Controls.Add(this.labelModArchiveName);
+ this.groupBoxModDetailsInstallationOptions.Location = new System.Drawing.Point(7, 414);
+ this.groupBoxModDetailsInstallationOptions.Name = "groupBoxModDetailsInstallationOptions";
+ this.groupBoxModDetailsInstallationOptions.Size = new System.Drawing.Size(364, 247);
+ this.groupBoxModDetailsInstallationOptions.TabIndex = 74;
+ this.groupBoxModDetailsInstallationOptions.TabStop = false;
+ this.groupBoxModDetailsInstallationOptions.Text = "Installation options";
//
- // tabPageModsSettings
+ // labelModArchiveName
//
- this.tabPageModsSettings.Controls.Add(this.groupBoxModsBehavior);
- this.tabPageModsSettings.Controls.Add(this.groupBoxLists);
- this.tabPageModsSettings.Location = new System.Drawing.Point(4, 22);
- this.tabPageModsSettings.Name = "tabPageModsSettings";
- this.tabPageModsSettings.Padding = new System.Windows.Forms.Padding(3);
- this.tabPageModsSettings.Size = new System.Drawing.Size(752, 464);
- this.tabPageModsSettings.TabIndex = 1;
- this.tabPageModsSettings.Text = "Settings";
- this.tabPageModsSettings.UseVisualStyleBackColor = true;
+ this.labelModArchiveName.AutoSize = true;
+ this.labelModArchiveName.Location = new System.Drawing.Point(7, 104);
+ this.labelModArchiveName.Name = "labelModArchiveName";
+ this.labelModArchiveName.Size = new System.Drawing.Size(75, 13);
+ this.labelModArchiveName.TabIndex = 41;
+ this.labelModArchiveName.Text = "Archive name:";
//
- // groupBoxModsBehavior
+ // textBoxModArchiveName
//
- this.groupBoxModsBehavior.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ this.textBoxModArchiveName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.groupBoxModsBehavior.Controls.Add(this.checkBoxFreezeBundledArchives);
- this.groupBoxModsBehavior.Controls.Add(this.checkBoxModsUseHardlinks);
- this.groupBoxModsBehavior.Controls.Add(this.checkBoxAddArchivesAsBundled);
- this.groupBoxModsBehavior.Location = new System.Drawing.Point(6, 6);
- this.groupBoxModsBehavior.Name = "groupBoxModsBehavior";
- this.groupBoxModsBehavior.Size = new System.Drawing.Size(740, 95);
- this.groupBoxModsBehavior.TabIndex = 60;
- this.groupBoxModsBehavior.TabStop = false;
- this.groupBoxModsBehavior.Text = "Behavior";
+ this.textBoxModArchiveName.Location = new System.Drawing.Point(113, 101);
+ this.textBoxModArchiveName.Name = "textBoxModArchiveName";
+ this.textBoxModArchiveName.Size = new System.Drawing.Size(170, 20);
+ this.textBoxModArchiveName.TabIndex = 7;
+ this.textBoxModArchiveName.TextChanged += new System.EventHandler(this.textBoxModArchiveName_TextChanged);
//
- // checkBoxFreezeBundledArchives
+ // comboBoxModArchivePreset
//
- this.checkBoxFreezeBundledArchives.AutoSize = true;
- this.checkBoxFreezeBundledArchives.Location = new System.Drawing.Point(6, 42);
- this.checkBoxFreezeBundledArchives.Name = "checkBoxFreezeBundledArchives";
- this.checkBoxFreezeBundledArchives.Size = new System.Drawing.Size(211, 17);
- this.checkBoxFreezeBundledArchives.TabIndex = 2;
- this.checkBoxFreezeBundledArchives.Text = "[Experimental] Freeze bundled archives";
- this.toolTip.SetToolTip(this.checkBoxFreezeBundledArchives, "Instead of rebuilding bundled archives, it will save a bundled copy and ask you i" +
- "f you want to update it on deploy.");
- this.checkBoxFreezeBundledArchives.UseVisualStyleBackColor = true;
- this.checkBoxFreezeBundledArchives.CheckedChanged += new System.EventHandler(this.checkBoxFreezeBundledArchives_CheckedChanged);
+ this.comboBoxModArchivePreset.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.comboBoxModArchivePreset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBoxModArchivePreset.FormattingEnabled = true;
+ this.comboBoxModArchivePreset.Location = new System.Drawing.Point(113, 74);
+ this.comboBoxModArchivePreset.Name = "comboBoxModArchivePreset";
+ this.comboBoxModArchivePreset.Size = new System.Drawing.Size(245, 21);
+ this.comboBoxModArchivePreset.TabIndex = 6;
+ this.comboBoxModArchivePreset.SelectedIndexChanged += new System.EventHandler(this.comboBoxModArchivePreset_SelectedIndexChanged);
//
- // checkBoxModsUseHardlinks
+ // textBoxModRootDir
//
- this.checkBoxModsUseHardlinks.AutoSize = true;
- this.checkBoxModsUseHardlinks.Location = new System.Drawing.Point(6, 19);
- this.checkBoxModsUseHardlinks.Name = "checkBoxModsUseHardlinks";
- this.checkBoxModsUseHardlinks.Size = new System.Drawing.Size(331, 17);
- this.checkBoxModsUseHardlinks.TabIndex = 1;
- this.checkBoxModsUseHardlinks.Text = "Make hard links instead of copying files manually (recommended)";
- this.toolTip.SetToolTip(this.checkBoxModsUseHardlinks, "Reduces disk space and deployment time.");
- this.checkBoxModsUseHardlinks.UseVisualStyleBackColor = true;
- this.checkBoxModsUseHardlinks.CheckedChanged += new System.EventHandler(this.checkBoxModsUseHardlinks_CheckedChanged);
+ this.textBoxModRootDir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBoxModRootDir.Location = new System.Drawing.Point(113, 48);
+ this.textBoxModRootDir.Name = "textBoxModRootDir";
+ this.textBoxModRootDir.Size = new System.Drawing.Size(213, 20);
+ this.textBoxModRootDir.TabIndex = 4;
+ this.textBoxModRootDir.TextChanged += new System.EventHandler(this.textBoxModRootDir_TextChanged);
//
- // checkBoxAddArchivesAsBundled
+ // buttonModDetailsSuggestArchiveName
//
- this.checkBoxAddArchivesAsBundled.AutoSize = true;
- this.checkBoxAddArchivesAsBundled.Location = new System.Drawing.Point(6, 65);
- this.checkBoxAddArchivesAsBundled.Name = "checkBoxAddArchivesAsBundled";
- this.checkBoxAddArchivesAsBundled.Size = new System.Drawing.Size(167, 17);
- this.checkBoxAddArchivesAsBundled.TabIndex = 0;
- this.checkBoxAddArchivesAsBundled.Text = "Unfreeze *.ba2 files by default";
- this.checkBoxAddArchivesAsBundled.UseVisualStyleBackColor = true;
- this.checkBoxAddArchivesAsBundled.CheckedChanged += new System.EventHandler(this.checkBoxAddArchivesAsBundled_CheckedChanged);
+ this.buttonModDetailsSuggestArchiveName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonModDetailsSuggestArchiveName.Location = new System.Drawing.Point(289, 99);
+ this.buttonModDetailsSuggestArchiveName.Name = "buttonModDetailsSuggestArchiveName";
+ this.buttonModDetailsSuggestArchiveName.Size = new System.Drawing.Size(69, 23);
+ this.buttonModDetailsSuggestArchiveName.TabIndex = 48;
+ this.buttonModDetailsSuggestArchiveName.Text = "Suggest";
+ this.buttonModDetailsSuggestArchiveName.UseVisualStyleBackColor = true;
+ this.buttonModDetailsSuggestArchiveName.Click += new System.EventHandler(this.buttonModDetailsSuggestArchiveName_Click);
//
- // groupBoxLists
+ // comboBoxModInstallAs
//
- this.groupBoxLists.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
+ this.comboBoxModInstallAs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.groupBoxLists.Controls.Add(this.buttonModsResetTextbox);
- this.groupBoxLists.Controls.Add(this.buttonModsApplyTextBox);
- this.groupBoxLists.Controls.Add(this.textBoxResourceList);
- this.groupBoxLists.Controls.Add(this.buttonModsCleanList);
- this.groupBoxLists.Controls.Add(this.labelsResourceIndexFileList);
- this.groupBoxLists.Location = new System.Drawing.Point(6, 107);
- this.groupBoxLists.Name = "groupBoxLists";
- this.groupBoxLists.Size = new System.Drawing.Size(740, 351);
- this.groupBoxLists.TabIndex = 59;
- this.groupBoxLists.TabStop = false;
- this.groupBoxLists.Text = "Lists";
+ this.comboBoxModInstallAs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+ this.comboBoxModInstallAs.FormattingEnabled = true;
+ this.comboBoxModInstallAs.Location = new System.Drawing.Point(113, 21);
+ this.comboBoxModInstallAs.Name = "comboBoxModInstallAs";
+ this.comboBoxModInstallAs.Size = new System.Drawing.Size(245, 21);
+ this.comboBoxModInstallAs.TabIndex = 3;
+ this.comboBoxModInstallAs.SelectedIndexChanged += new System.EventHandler(this.comboBoxModInstallAs_SelectedIndexChanged);
//
- // buttonModsResetTextbox
+ // labelModInstallInto
//
- this.buttonModsResetTextbox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonModsResetTextbox.Location = new System.Drawing.Point(503, 322);
- this.buttonModsResetTextbox.Name = "buttonModsResetTextbox";
- this.buttonModsResetTextbox.Size = new System.Drawing.Size(98, 23);
- this.buttonModsResetTextbox.TabIndex = 60;
- this.buttonModsResetTextbox.Text = "Reset";
- this.buttonModsResetTextbox.UseVisualStyleBackColor = true;
- this.buttonModsResetTextbox.Click += new System.EventHandler(this.buttonModsResetTextbox_Click);
+ this.labelModInstallInto.AutoSize = true;
+ this.labelModInstallInto.Location = new System.Drawing.Point(6, 51);
+ this.labelModInstallInto.Name = "labelModInstallInto";
+ this.labelModInstallInto.Size = new System.Drawing.Size(57, 13);
+ this.labelModInstallInto.TabIndex = 38;
+ this.labelModInstallInto.Text = "Install into:";
//
- // buttonModsApplyTextBox
+ // checkBoxFreezeArchive
//
- this.buttonModsApplyTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.buttonModsApplyTextBox.Location = new System.Drawing.Point(607, 322);
- this.buttonModsApplyTextBox.Name = "buttonModsApplyTextBox";
- this.buttonModsApplyTextBox.Size = new System.Drawing.Size(127, 23);
- this.buttonModsApplyTextBox.TabIndex = 59;
- this.buttonModsApplyTextBox.Text = "Apply changes";
- this.buttonModsApplyTextBox.UseVisualStyleBackColor = true;
- this.buttonModsApplyTextBox.Click += new System.EventHandler(this.buttonModsApplyTextBox_Click);
+ this.checkBoxFreezeArchive.AutoSize = true;
+ this.checkBoxFreezeArchive.Location = new System.Drawing.Point(10, 130);
+ this.checkBoxFreezeArchive.Name = "checkBoxFreezeArchive";
+ this.checkBoxFreezeArchive.Size = new System.Drawing.Size(58, 17);
+ this.checkBoxFreezeArchive.TabIndex = 9;
+ this.checkBoxFreezeArchive.Text = "Freeze";
+ this.toolTip.SetToolTip(this.checkBoxFreezeArchive, "If you \'freeze\' an archive, it does not get recreated when deploying.\r\nThis will " +
+ "speed up deployment.\r\n\r\nThis is especially useful, if the archive is HUGE (1GiB " +
+ "or more) and the files aren\'t changing.");
+ this.checkBoxFreezeArchive.UseVisualStyleBackColor = true;
+ this.checkBoxFreezeArchive.CheckedChanged += new System.EventHandler(this.checkBoxFreezeArchive_CheckedChanged);
//
- // textBoxResourceList
+ // labelModArchivePreset
//
- this.textBoxResourceList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.textBoxResourceList.Location = new System.Drawing.Point(6, 37);
- this.textBoxResourceList.Multiline = true;
- this.textBoxResourceList.Name = "textBoxResourceList";
- this.textBoxResourceList.Size = new System.Drawing.Size(728, 279);
- this.textBoxResourceList.TabIndex = 54;
+ this.labelModArchivePreset.AutoSize = true;
+ this.labelModArchivePreset.Location = new System.Drawing.Point(6, 75);
+ this.labelModArchivePreset.Name = "labelModArchivePreset";
+ this.labelModArchivePreset.Size = new System.Drawing.Size(40, 13);
+ this.labelModArchivePreset.TabIndex = 43;
+ this.labelModArchivePreset.Text = "Preset:";
+ //
+ // labelModInstallAs
+ //
+ this.labelModInstallAs.AutoSize = true;
+ this.labelModInstallAs.Location = new System.Drawing.Point(6, 24);
+ this.labelModInstallAs.Name = "labelModInstallAs";
+ this.labelModInstallAs.Size = new System.Drawing.Size(51, 13);
+ this.labelModInstallAs.TabIndex = 41;
+ this.labelModInstallAs.Text = "Install as:";
//
- // buttonModsCleanList
+ // buttonModPickRootDir
//
- this.buttonModsCleanList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.buttonModsCleanList.Location = new System.Drawing.Point(6, 322);
- this.buttonModsCleanList.Name = "buttonModsCleanList";
- this.buttonModsCleanList.Size = new System.Drawing.Size(98, 23);
- this.buttonModsCleanList.TabIndex = 58;
- this.buttonModsCleanList.Text = "Clean list";
- this.buttonModsCleanList.UseVisualStyleBackColor = true;
- this.buttonModsCleanList.Click += new System.EventHandler(this.buttonModsCleanList_Click);
+ this.buttonModPickRootDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.buttonModPickRootDir.Location = new System.Drawing.Point(332, 44);
+ this.buttonModPickRootDir.Name = "buttonModPickRootDir";
+ this.buttonModPickRootDir.Size = new System.Drawing.Size(26, 24);
+ this.buttonModPickRootDir.TabIndex = 5;
+ this.buttonModPickRootDir.Text = "...";
+ this.buttonModPickRootDir.UseVisualStyleBackColor = true;
+ this.buttonModPickRootDir.Click += new System.EventHandler(this.buttonModPickRootDir_Click);
//
- // labelsResourceIndexFileList
+ // labelModInstallWarning
//
- this.labelsResourceIndexFileList.AutoSize = true;
- this.labelsResourceIndexFileList.Location = new System.Drawing.Point(3, 21);
- this.labelsResourceIndexFileList.Name = "labelsResourceIndexFileList";
- this.labelsResourceIndexFileList.Size = new System.Drawing.Size(71, 13);
- this.labelsResourceIndexFileList.TabIndex = 55;
- this.labelsResourceIndexFileList.Text = "Resource list:";
+ this.labelModInstallWarning.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.labelModInstallWarning.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(147)))), ((int)(((byte)(107)))), ((int)(((byte)(8)))));
+ this.labelModInstallWarning.Location = new System.Drawing.Point(7, 154);
+ this.labelModInstallWarning.Name = "labelModInstallWarning";
+ this.labelModInstallWarning.Size = new System.Drawing.Size(351, 66);
+ this.labelModInstallWarning.TabIndex = 49;
+ this.labelModInstallWarning.Text = "< Warning here >";
//
- // tabPageNexusMods
+ // linkLabelModAutoDetectInstallOptions
//
- this.tabPageNexusMods.Controls.Add(this.labelNexusModsMovedNotice2);
- this.tabPageNexusMods.Controls.Add(this.labelNexusModsMovedNotice);
- this.tabPageNexusMods.Controls.Add(this.pictureBox1);
- this.tabPageNexusMods.Location = new System.Drawing.Point(4, 22);
- this.tabPageNexusMods.Name = "tabPageNexusMods";
- this.tabPageNexusMods.Padding = new System.Windows.Forms.Padding(3);
- this.tabPageNexusMods.Size = new System.Drawing.Size(752, 464);
- this.tabPageNexusMods.TabIndex = 2;
- this.tabPageNexusMods.Text = "NexusMods";
- this.tabPageNexusMods.UseVisualStyleBackColor = true;
+ this.linkLabelModAutoDetectInstallOptions.AutoSize = true;
+ this.linkLabelModAutoDetectInstallOptions.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.linkLabelModAutoDetectInstallOptions.Location = new System.Drawing.Point(7, 220);
+ this.linkLabelModAutoDetectInstallOptions.Name = "linkLabelModAutoDetectInstallOptions";
+ this.linkLabelModAutoDetectInstallOptions.Size = new System.Drawing.Size(189, 13);
+ this.linkLabelModAutoDetectInstallOptions.TabIndex = 50;
+ this.linkLabelModAutoDetectInstallOptions.TabStop = true;
+ this.linkLabelModAutoDetectInstallOptions.Text = "Attempt auto-detect installation options";
+ this.linkLabelModAutoDetectInstallOptions.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModAutoDetectInstallOptions_LinkClicked);
//
- // labelNexusModsMovedNotice2
+ // linkLabelModInvalidateFrozenArchive
//
- this.labelNexusModsMovedNotice2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.labelNexusModsMovedNotice2.Location = new System.Drawing.Point(6, 346);
- this.labelNexusModsMovedNotice2.Name = "labelNexusModsMovedNotice2";
- this.labelNexusModsMovedNotice2.Size = new System.Drawing.Size(740, 23);
- this.labelNexusModsMovedNotice2.TabIndex = 93;
- this.labelNexusModsMovedNotice2.Text = "Other options such as \"Update mod information\" can be found in the menu under Too" +
- "ls → NexusMods API.";
- this.labelNexusModsMovedNotice2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ this.linkLabelModInvalidateFrozenArchive.AutoSize = true;
+ this.linkLabelModInvalidateFrozenArchive.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.linkLabelModInvalidateFrozenArchive.Location = new System.Drawing.Point(110, 131);
+ this.linkLabelModInvalidateFrozenArchive.Name = "linkLabelModInvalidateFrozenArchive";
+ this.linkLabelModInvalidateFrozenArchive.Size = new System.Drawing.Size(123, 13);
+ this.linkLabelModInvalidateFrozenArchive.TabIndex = 51;
+ this.linkLabelModInvalidateFrozenArchive.TabStop = true;
+ this.linkLabelModInvalidateFrozenArchive.Text = "Invalidate frozen archive";
+ this.linkLabelModInvalidateFrozenArchive.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModInvalidateFrozenArchive_LinkClicked);
//
- // labelNexusModsMovedNotice
+ // groupBoxModReplace
//
- this.labelNexusModsMovedNotice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.labelNexusModsMovedNotice.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.labelNexusModsMovedNotice.Location = new System.Drawing.Point(5, 91);
- this.labelNexusModsMovedNotice.Name = "labelNexusModsMovedNotice";
- this.labelNexusModsMovedNotice.Size = new System.Drawing.Size(741, 102);
- this.labelNexusModsMovedNotice.TabIndex = 91;
- this.labelNexusModsMovedNotice.Text = "The NexusMods tab has been moved into the settings window.";
- this.labelNexusModsMovedNotice.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ this.groupBoxModReplace.Controls.Add(this.labelModDetailsReplace);
+ this.groupBoxModReplace.Controls.Add(this.linkLabelModDeleteFolderContents);
+ this.groupBoxModReplace.Controls.Add(this.panelModDetailsReplaceDragAndDrop);
+ this.groupBoxModReplace.Controls.Add(this.linkLabelModReplaceFilesWithFolder);
+ this.groupBoxModReplace.Controls.Add(this.linkLabelModReplaceFilesWithArchive);
+ this.groupBoxModReplace.Location = new System.Drawing.Point(7, 667);
+ this.groupBoxModReplace.Name = "groupBoxModReplace";
+ this.groupBoxModReplace.Size = new System.Drawing.Size(364, 136);
+ this.groupBoxModReplace.TabIndex = 75;
+ this.groupBoxModReplace.TabStop = false;
+ this.groupBoxModReplace.Text = "Add / replace mod files";
//
- // pictureBox1
+ // linkLabelModReplaceFilesWithArchive
//
- this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.pictureBox1.Image = global::Fo76ini.Properties.Resources.Fo76ini_LDu4jzf2p3;
- this.pictureBox1.Location = new System.Drawing.Point(8, 196);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(737, 147);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
- this.pictureBox1.TabIndex = 92;
- this.pictureBox1.TabStop = false;
+ this.linkLabelModReplaceFilesWithArchive.AutoSize = true;
+ this.linkLabelModReplaceFilesWithArchive.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.linkLabelModReplaceFilesWithArchive.Location = new System.Drawing.Point(173, 19);
+ this.linkLabelModReplaceFilesWithArchive.Name = "linkLabelModReplaceFilesWithArchive";
+ this.linkLabelModReplaceFilesWithArchive.Size = new System.Drawing.Size(74, 13);
+ this.linkLabelModReplaceFilesWithArchive.TabIndex = 0;
+ this.linkLabelModReplaceFilesWithArchive.TabStop = true;
+ this.linkLabelModReplaceFilesWithArchive.Text = "Import archive";
+ this.linkLabelModReplaceFilesWithArchive.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModReplaceFilesWithArchive_LinkClicked);
//
- // openFileDialogMod
+ // linkLabelModReplaceFilesWithFolder
//
- this.openFileDialogMod.Filter = "All Archives|*.zip;*.rar;*.7z;*.tar;*.ba2";
- this.openFileDialogMod.Title = "Add *.ba2 or any other archive.";
+ this.linkLabelModReplaceFilesWithFolder.AutoSize = true;
+ this.linkLabelModReplaceFilesWithFolder.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.linkLabelModReplaceFilesWithFolder.Location = new System.Drawing.Point(173, 39);
+ this.linkLabelModReplaceFilesWithFolder.Name = "linkLabelModReplaceFilesWithFolder";
+ this.linkLabelModReplaceFilesWithFolder.Size = new System.Drawing.Size(65, 13);
+ this.linkLabelModReplaceFilesWithFolder.TabIndex = 1;
+ this.linkLabelModReplaceFilesWithFolder.TabStop = true;
+ this.linkLabelModReplaceFilesWithFolder.Text = "Import folder";
+ this.linkLabelModReplaceFilesWithFolder.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModReplaceFilesWithFolder_LinkClicked);
//
- // checkBoxDisableMods
+ // panelModDetailsReplaceDragAndDrop
//
- this.checkBoxDisableMods.AutoSize = true;
- this.checkBoxDisableMods.Location = new System.Drawing.Point(4, 3);
- this.checkBoxDisableMods.Name = "checkBoxDisableMods";
- this.checkBoxDisableMods.Size = new System.Drawing.Size(89, 17);
- this.checkBoxDisableMods.TabIndex = 55;
- this.checkBoxDisableMods.Text = "Disable mods";
- this.checkBoxDisableMods.UseVisualStyleBackColor = true;
- this.checkBoxDisableMods.CheckedChanged += new System.EventHandler(this.checkBoxDisableMods_CheckedChanged);
+ this.panelModDetailsReplaceDragAndDrop.AllowDrop = true;
+ this.panelModDetailsReplaceDragAndDrop.BackgroundImage = global::Fo76ini.Properties.Resources.download_2_48;
+ this.panelModDetailsReplaceDragAndDrop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
+ this.panelModDetailsReplaceDragAndDrop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panelModDetailsReplaceDragAndDrop.Location = new System.Drawing.Point(6, 19);
+ this.panelModDetailsReplaceDragAndDrop.Name = "panelModDetailsReplaceDragAndDrop";
+ this.panelModDetailsReplaceDragAndDrop.Size = new System.Drawing.Size(159, 108);
+ this.panelModDetailsReplaceDragAndDrop.TabIndex = 4;
//
- // openFileDialogGamePath
+ // linkLabelModDeleteFolderContents
//
- this.openFileDialogGamePath.Filter = "Fallout 76 executable|Fallout76.exe,Project76_GamePass.exe";
+ this.linkLabelModDeleteFolderContents.AutoSize = true;
+ this.linkLabelModDeleteFolderContents.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
+ this.linkLabelModDeleteFolderContents.Location = new System.Drawing.Point(173, 60);
+ this.linkLabelModDeleteFolderContents.Name = "linkLabelModDeleteFolderContents";
+ this.linkLabelModDeleteFolderContents.Size = new System.Drawing.Size(111, 13);
+ this.linkLabelModDeleteFolderContents.TabIndex = 5;
+ this.linkLabelModDeleteFolderContents.TabStop = true;
+ this.linkLabelModDeleteFolderContents.Text = "Delete folder contents";
+ this.linkLabelModDeleteFolderContents.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelModDeleteFolderContents_LinkClicked);
//
- // panel1
+ // labelModDetailsReplace
//
- this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.panel1.Controls.Add(this.buttonModsDeploy);
- this.panel1.Controls.Add(this.checkBoxDisableMods);
- this.panel1.Location = new System.Drawing.Point(618, 521);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(166, 51);
- this.panel1.TabIndex = 56;
+ this.labelModDetailsReplace.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.labelModDetailsReplace.ForeColor = System.Drawing.Color.Gray;
+ this.labelModDetailsReplace.Location = new System.Drawing.Point(175, 76);
+ this.labelModDetailsReplace.Name = "labelModDetailsReplace";
+ this.labelModDetailsReplace.Size = new System.Drawing.Size(167, 52);
+ this.labelModDetailsReplace.TabIndex = 0;
+ this.labelModDetailsReplace.Text = "Drag-and-drop files/folders into the left box to add/replace files.";
+ this.labelModDetailsReplace.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
- // openFileDialogBA2
+ // groupBoxNotes
//
- this.openFileDialogBA2.DefaultExt = "ba2";
- this.openFileDialogBA2.Filter = "Archive2|*.ba2";
- this.openFileDialogBA2.Title = "Add *.ba2 archive.";
+ this.groupBoxNotes.Controls.Add(this.textBoxNotes);
+ this.groupBoxNotes.Location = new System.Drawing.Point(7, 257);
+ this.groupBoxNotes.Name = "groupBoxNotes";
+ this.groupBoxNotes.Size = new System.Drawing.Size(364, 151);
+ this.groupBoxNotes.TabIndex = 76;
+ this.groupBoxNotes.TabStop = false;
+ this.groupBoxNotes.Text = "Notes";
//
- // statusStrip1
+ // textBoxNotes
//
- this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripStatusLabelDescModCount,
- this.toolStripStatusLabelModCount,
- this.toolStripStatusLabelDescEnabledCount,
- this.toolStripStatusLabelEnabledCount,
- this.toolStripStatusLabelSpacer,
- this.toolStripStatusLabelDeploymentStatus});
- this.statusStrip1.Location = new System.Drawing.Point(0, 579);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(784, 22);
- this.statusStrip1.TabIndex = 57;
- this.statusStrip1.Text = "statusStrip1";
+ this.textBoxNotes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.textBoxNotes.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.textBoxNotes.Location = new System.Drawing.Point(6, 19);
+ this.textBoxNotes.Multiline = true;
+ this.textBoxNotes.Name = "textBoxNotes";
+ this.textBoxNotes.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.textBoxNotes.Size = new System.Drawing.Size(351, 120);
+ this.textBoxNotes.TabIndex = 0;
+ this.textBoxNotes.TextChanged += new System.EventHandler(this.textBoxNotes_TextChanged);
//
- // toolStripStatusLabelDescModCount
+ // panelModDetailsHeader
//
- this.toolStripStatusLabelDescModCount.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toolStripStatusLabelDescModCount.Margin = new System.Windows.Forms.Padding(8, 3, 3, 2);
- this.toolStripStatusLabelDescModCount.Name = "toolStripStatusLabelDescModCount";
- this.toolStripStatusLabelDescModCount.Size = new System.Drawing.Size(70, 17);
- this.toolStripStatusLabelDescModCount.Text = "Mod count:";
+ this.panelModDetailsHeader.Controls.Add(this.buttonModAbstain);
+ this.panelModDetailsHeader.Controls.Add(this.buttonModEndorse);
+ this.panelModDetailsHeader.Controls.Add(this.labelModEndorseStatus);
+ this.panelModDetailsHeader.Controls.Add(this.labelModTitle);
+ this.panelModDetailsHeader.Controls.Add(this.checkBoxModDetailsEnabled);
+ this.panelModDetailsHeader.Location = new System.Drawing.Point(0, 157);
+ this.panelModDetailsHeader.Name = "panelModDetailsHeader";
+ this.panelModDetailsHeader.Size = new System.Drawing.Size(395, 62);
+ this.panelModDetailsHeader.TabIndex = 77;
//
- // toolStripStatusLabelModCount
+ // checkBoxModDetailsEnabled
//
- this.toolStripStatusLabelModCount.Name = "toolStripStatusLabelModCount";
- this.toolStripStatusLabelModCount.Size = new System.Drawing.Size(13, 17);
- this.toolStripStatusLabelModCount.Text = "0";
+ this.checkBoxModDetailsEnabled.AutoSize = true;
+ this.checkBoxModDetailsEnabled.Location = new System.Drawing.Point(8, 30);
+ this.checkBoxModDetailsEnabled.Name = "checkBoxModDetailsEnabled";
+ this.checkBoxModDetailsEnabled.Size = new System.Drawing.Size(101, 17);
+ this.checkBoxModDetailsEnabled.TabIndex = 74;
+ this.checkBoxModDetailsEnabled.Text = "Enable this mod";
+ this.checkBoxModDetailsEnabled.UseVisualStyleBackColor = true;
+ this.checkBoxModDetailsEnabled.CheckedChanged += new System.EventHandler(this.checkBoxModDetailsEnabled_CheckedChanged);
//
- // toolStripStatusLabelDescEnabledCount
+ // labelModTitle
//
- this.toolStripStatusLabelDescEnabledCount.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toolStripStatusLabelDescEnabledCount.Margin = new System.Windows.Forms.Padding(50, 3, 3, 2);
- this.toolStripStatusLabelDescEnabledCount.Name = "toolStripStatusLabelDescEnabledCount";
- this.toolStripStatusLabelDescEnabledCount.Size = new System.Drawing.Size(53, 17);
- this.toolStripStatusLabelDescEnabledCount.Text = "Enabled:";
+ this.labelModTitle.AutoEllipsis = true;
+ this.labelModTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.labelModTitle.Location = new System.Drawing.Point(-12, 2);
+ this.labelModTitle.Name = "labelModTitle";
+ this.labelModTitle.Padding = new System.Windows.Forms.Padding(16, 2, 0, 2);
+ this.labelModTitle.Size = new System.Drawing.Size(322, 25);
+ this.labelModTitle.TabIndex = 75;
+ this.labelModTitle.Text = "< Mod name goes here >";
//
- // toolStripStatusLabelEnabledCount
+ // labelModEndorseStatus
//
- this.toolStripStatusLabelEnabledCount.Name = "toolStripStatusLabelEnabledCount";
- this.toolStripStatusLabelEnabledCount.Size = new System.Drawing.Size(13, 17);
- this.toolStripStatusLabelEnabledCount.Text = "0";
+ this.labelModEndorseStatus.Location = new System.Drawing.Point(145, 41);
+ this.labelModEndorseStatus.Name = "labelModEndorseStatus";
+ this.labelModEndorseStatus.Size = new System.Drawing.Size(246, 13);
+ this.labelModEndorseStatus.TabIndex = 71;
+ this.labelModEndorseStatus.Text = "< Whether or not the user has endorsed this mod >";
+ this.labelModEndorseStatus.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
- // toolStripStatusLabelSpacer
+ // buttonModEndorse
//
- this.toolStripStatusLabelSpacer.Name = "toolStripStatusLabelSpacer";
- this.toolStripStatusLabelSpacer.Size = new System.Drawing.Size(423, 17);
- this.toolStripStatusLabelSpacer.Spring = true;
- this.toolStripStatusLabelSpacer.Text = " ";
+ this.buttonModEndorse.BackColor = System.Drawing.Color.Transparent;
+ this.buttonModEndorse.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
+ this.buttonModEndorse.FlatAppearance.BorderSize = 0;
+ this.buttonModEndorse.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.buttonModEndorse.Image = global::Fo76ini.Properties.Resources.like;
+ this.buttonModEndorse.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
+ this.buttonModEndorse.Location = new System.Drawing.Point(316, 1);
+ this.buttonModEndorse.Name = "buttonModEndorse";
+ this.buttonModEndorse.Size = new System.Drawing.Size(36, 40);
+ this.buttonModEndorse.TabIndex = 72;
+ this.toolTip.SetToolTip(this.buttonModEndorse, "Endorse this mod.");
+ this.buttonModEndorse.UseVisualStyleBackColor = false;
+ this.buttonModEndorse.Click += new System.EventHandler(this.buttonModEndorse_Click);
//
- // toolStripStatusLabelDeploymentStatus
+ // buttonModAbstain
//
- this.toolStripStatusLabelDeploymentStatus.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.toolStripStatusLabelDeploymentStatus.ForeColor = System.Drawing.Color.Crimson;
- this.toolStripStatusLabelDeploymentStatus.Name = "toolStripStatusLabelDeploymentStatus";
- this.toolStripStatusLabelDeploymentStatus.Size = new System.Drawing.Size(133, 17);
- this.toolStripStatusLabelDeploymentStatus.Text = "Deployment necessary";
+ this.buttonModAbstain.BackColor = System.Drawing.Color.Transparent;
+ this.buttonModAbstain.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
+ this.buttonModAbstain.FlatAppearance.BorderSize = 0;
+ this.buttonModAbstain.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.buttonModAbstain.Image = global::Fo76ini.Properties.Resources.dislike;
+ this.buttonModAbstain.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
+ this.buttonModAbstain.Location = new System.Drawing.Point(356, 1);
+ this.buttonModAbstain.Name = "buttonModAbstain";
+ this.buttonModAbstain.Size = new System.Drawing.Size(36, 40);
+ this.buttonModAbstain.TabIndex = 73;
+ this.toolTip.SetToolTip(this.buttonModAbstain, "Abstain from endorsing this mod.");
+ this.buttonModAbstain.UseVisualStyleBackColor = false;
+ this.buttonModAbstain.Click += new System.EventHandler(this.buttonModAbstain_Click);
//
- // pictureBoxModsLoadingGIF
+ // pictureBoxCollapseDetails
//
- this.pictureBoxModsLoadingGIF.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.pictureBoxModsLoadingGIF.BackColor = System.Drawing.Color.White;
- this.pictureBoxModsLoadingGIF.Image = global::Fo76ini.Properties.Resources.Spinner_200;
- this.pictureBoxModsLoadingGIF.Location = new System.Drawing.Point(0, 27);
- this.pictureBoxModsLoadingGIF.Name = "pictureBoxModsLoadingGIF";
- this.pictureBoxModsLoadingGIF.Size = new System.Drawing.Size(16, 490);
- this.pictureBoxModsLoadingGIF.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
- this.pictureBoxModsLoadingGIF.TabIndex = 57;
- this.pictureBoxModsLoadingGIF.TabStop = false;
- this.pictureBoxModsLoadingGIF.Visible = false;
+ this.pictureBoxCollapseDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.pictureBoxCollapseDetails.BackColor = System.Drawing.SystemColors.ButtonShadow;
+ this.pictureBoxCollapseDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.pictureBoxCollapseDetails.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxCollapseDetails.Image")));
+ this.pictureBoxCollapseDetails.Location = new System.Drawing.Point(333, 0);
+ this.pictureBoxCollapseDetails.Name = "pictureBoxCollapseDetails";
+ this.pictureBoxCollapseDetails.Size = new System.Drawing.Size(24, 464);
+ this.pictureBoxCollapseDetails.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
+ this.pictureBoxCollapseDetails.TabIndex = 59;
+ this.pictureBoxCollapseDetails.TabStop = false;
+ this.pictureBoxCollapseDetails.Click += new System.EventHandler(this.pictureBoxCollapseDetails_Click);
//
- // timerCheckForNXM
+ // tabControl1
//
- this.timerCheckForNXM.Interval = 1000;
- this.timerCheckForNXM.Tick += new System.EventHandler(this.timerCheckForNXM_Tick);
+ this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.tabControl1.Controls.Add(this.tabPageModOrder);
+ this.tabControl1.Controls.Add(this.tabPageModsSettings);
+ this.tabControl1.Location = new System.Drawing.Point(12, 27);
+ this.tabControl1.Name = "tabControl1";
+ this.tabControl1.SelectedIndex = 0;
+ this.tabControl1.Size = new System.Drawing.Size(760, 490);
+ this.tabControl1.TabIndex = 54;
//
// FormMods
//
@@ -1606,39 +1550,37 @@ private void InitializeComponent()
this.Load += new System.EventHandler(this.FormMods_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
- this.tabControl1.ResumeLayout(false);
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.statusStrip1.ResumeLayout(false);
+ this.statusStrip1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModsLoadingGIF)).EndInit();
+ this.tabPageModsSettings.ResumeLayout(false);
+ this.groupBoxLists.ResumeLayout(false);
+ this.groupBoxLists.PerformLayout();
+ this.groupBoxModsBehavior.ResumeLayout(false);
+ this.groupBoxModsBehavior.PerformLayout();
this.tabPageModOrder.ResumeLayout(false);
this.tabPageModOrder.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollapseDetails)).EndInit();
+ this.toolStrip1.ResumeLayout(false);
+ this.toolStrip1.PerformLayout();
this.panelModDetails.ResumeLayout(false);
- this.panelModDetailsHeader.ResumeLayout(false);
- this.panelModDetailsHeader.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModThumbnail)).EndInit();
this.panelModDetailsInner.ResumeLayout(false);
- this.groupBoxNotes.ResumeLayout(false);
- this.groupBoxNotes.PerformLayout();
- this.groupBoxModReplace.ResumeLayout(false);
- this.groupBoxModReplace.PerformLayout();
- this.groupBoxModDetailsInstallationOptions.ResumeLayout(false);
- this.groupBoxModDetailsInstallationOptions.PerformLayout();
this.groupBoxModDetailsDetails.ResumeLayout(false);
this.groupBoxModDetailsDetails.PerformLayout();
this.panelModDetailsNexusMods.ResumeLayout(false);
this.panelModDetailsNexusMods.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModThumbnail)).EndInit();
- this.toolStrip1.ResumeLayout(false);
- this.toolStrip1.PerformLayout();
- this.tabPageModsSettings.ResumeLayout(false);
- this.groupBoxModsBehavior.ResumeLayout(false);
- this.groupBoxModsBehavior.PerformLayout();
- this.groupBoxLists.ResumeLayout(false);
- this.groupBoxLists.PerformLayout();
- this.tabPageNexusMods.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.statusStrip1.ResumeLayout(false);
- this.statusStrip1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBoxModsLoadingGIF)).EndInit();
+ this.groupBoxModDetailsInstallationOptions.ResumeLayout(false);
+ this.groupBoxModDetailsInstallationOptions.PerformLayout();
+ this.groupBoxModReplace.ResumeLayout(false);
+ this.groupBoxModReplace.PerformLayout();
+ this.groupBoxNotes.ResumeLayout(false);
+ this.groupBoxNotes.PerformLayout();
+ this.panelModDetailsHeader.ResumeLayout(false);
+ this.panelModDetailsHeader.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollapseDetails)).EndInit();
+ this.tabControl1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
@@ -1660,88 +1602,30 @@ private void InitializeComponent()
private System.Windows.Forms.ProgressBar progressBarMods;
private System.Windows.Forms.Button buttonModsDeploy;
private System.Windows.Forms.Label labelModsDeploy;
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage tabPageModOrder;
- private System.Windows.Forms.TabPage tabPageModsSettings;
- public System.Windows.Forms.ListView listViewMods;
public System.Windows.Forms.ToolTip toolTip;
- public System.Windows.Forms.ToolStrip toolStrip1;
- private System.Windows.Forms.ToolStripButton toolStripButtonMoveUp;
- private System.Windows.Forms.ToolStripButton toolStripButtonMoveDown;
- private System.Windows.Forms.ToolStripButton toolStripButtonModOpenFolder;
- private System.Windows.Forms.ToolStripButton toolStripButtonAddModFolder;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
- private System.Windows.Forms.ColumnHeader columnHeaderModTitle;
- private System.Windows.Forms.ColumnHeader columnHeaderInstallAs;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
- private System.Windows.Forms.ToolStripButton toolStripButtonAddMod;
- private System.Windows.Forms.ToolStripButton toolStripButtonCheckAll;
- private System.Windows.Forms.ToolStripButton toolStripButtonDeleteMod;
private System.Windows.Forms.OpenFileDialog openFileDialogMod;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialogMod;
private System.Windows.Forms.CheckBox checkBoxDisableMods;
private System.Windows.Forms.OpenFileDialog openFileDialogGamePath;
- private System.Windows.Forms.ColumnHeader columnHeaderInstallInto;
- private System.Windows.Forms.ColumnHeader columnHeaderArchiveName;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.ToolStripMenuItem showConflictingFilesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem reloadUIToolStripMenuItem;
- private System.Windows.Forms.ColumnHeader columnHeaderFrozenState;
private System.Windows.Forms.OpenFileDialog openFileDialogBA2;
private System.Windows.Forms.ToolStripMenuItem fromba2ArchivefrozenToolStripMenuItem;
- private System.Windows.Forms.GroupBox groupBoxLists;
- private System.Windows.Forms.TextBox textBoxResourceList;
- private System.Windows.Forms.Button buttonModsCleanList;
- private System.Windows.Forms.Label labelsResourceIndexFileList;
- private System.Windows.Forms.Button buttonModsResetTextbox;
- private System.Windows.Forms.Button buttonModsApplyTextBox;
- private System.Windows.Forms.GroupBox groupBoxModsBehavior;
- private System.Windows.Forms.CheckBox checkBoxAddArchivesAsBundled;
- private System.Windows.Forms.CheckBox checkBoxModsUseHardlinks;
private System.Windows.Forms.ToolStripMenuItem archive2ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openArchive2ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exploreba2ArchiveToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem logFilesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem showModmanagerlogtxtToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem showArchive2logtxtToolStripMenuItem;
- private System.Windows.Forms.CheckBox checkBoxFreezeBundledArchives;
private System.Windows.Forms.PictureBox pictureBoxModsLoadingGIF;
- private System.Windows.Forms.Panel panelModDetails;
- private System.Windows.Forms.Label labelModInstallAs;
- private System.Windows.Forms.Label labelModInstallInto;
- private System.Windows.Forms.TextBox textBoxModRootDir;
- private System.Windows.Forms.CheckBox checkBoxFreezeArchive;
- private System.Windows.Forms.ComboBox comboBoxModInstallAs;
- private System.Windows.Forms.Label labelModArchivePreset;
- private System.Windows.Forms.Button buttonModPickRootDir;
- private System.Windows.Forms.ComboBox comboBoxModArchivePreset;
- private System.Windows.Forms.TextBox textBoxModName;
- private System.Windows.Forms.Label labelModName;
- private System.Windows.Forms.TextBox textBoxModArchiveName;
- private System.Windows.Forms.Label labelModArchiveName;
- private System.Windows.Forms.PictureBox pictureBoxCollapseDetails;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialogPickRootDir;
- private System.Windows.Forms.Button buttonModDetailsSuggestArchiveName;
- private System.Windows.Forms.TextBox textBoxModURL;
- private System.Windows.Forms.Label labelModURL;
- private System.Windows.Forms.PictureBox pictureBoxModThumbnail;
- private System.Windows.Forms.TabPage tabPageNexusMods;
- private System.Windows.Forms.GroupBox groupBoxModDetailsInstallationOptions;
- private System.Windows.Forms.GroupBox groupBoxModDetailsDetails;
- private System.Windows.Forms.TextBox textBoxModVersion;
- private System.Windows.Forms.Label labelModVersion;
- private System.Windows.Forms.ColumnHeader columnHeaderVersion;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem nexusModsAPIToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem updateModInformationToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem endorseModsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem checkForUpdatesToolStripMenuItem;
- private System.Windows.Forms.Label labelNexusModsMovedNotice;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Label labelNexusModsMovedNotice2;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDescModCount;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelModCount;
@@ -1749,39 +1633,93 @@ private void InitializeComponent()
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDeploymentStatus;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDescEnabledCount;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelEnabledCount;
- private System.Windows.Forms.Panel panelModDetailsNexusMods;
- private System.Windows.Forms.Label labelModSummary;
- private System.Windows.Forms.Label labelModLatestVersionDesc;
- private System.Windows.Forms.Label labelModAuthorDesc;
- private System.Windows.Forms.Label labelModLatestVersion;
- private System.Windows.Forms.Label labelModAuthor;
- private System.Windows.Forms.Panel panelModDetailsInner;
- private System.Windows.Forms.Label labelModInstallWarning;
- private System.Windows.Forms.GroupBox groupBoxModReplace;
- private System.Windows.Forms.LinkLabel linkLabelModReplaceFilesWithFolder;
- private System.Windows.Forms.LinkLabel linkLabelModReplaceFilesWithArchive;
- private System.Windows.Forms.Label labelModDetailsReplace;
- private System.Windows.Forms.LinkLabel linkLabelModDeleteFolderContents;
- private System.Windows.Forms.LinkLabel linkLabelModSetLatestVersion;
- private System.Windows.Forms.Panel panelModDetailsReplaceDragAndDrop;
private System.Windows.Forms.ToolStripMenuItem emptyModToolStripMenuItem;
- private System.Windows.Forms.LinkLabel linkLabelModAutoDetectInstallOptions;
- private System.Windows.Forms.LinkLabel linkLabelModInvalidateFrozenArchive;
- private System.Windows.Forms.Button buttonModOpenPage;
+ private System.Windows.Forms.Timer timerCheckForNXM;
+ private System.Windows.Forms.TabPage tabPageModsSettings;
+ private System.Windows.Forms.GroupBox groupBoxModsBehavior;
+ private System.Windows.Forms.CheckBox checkBoxFreezeBundledArchives;
+ private System.Windows.Forms.CheckBox checkBoxModsUseHardlinks;
+ private System.Windows.Forms.CheckBox checkBoxAddArchivesAsBundled;
+ private System.Windows.Forms.GroupBox groupBoxLists;
+ private System.Windows.Forms.Button buttonModsResetTextbox;
+ private System.Windows.Forms.Button buttonModsApplyTextBox;
+ private System.Windows.Forms.TextBox textBoxResourceList;
+ private System.Windows.Forms.Button buttonModsCleanList;
+ private System.Windows.Forms.Label labelsResourceIndexFileList;
+ private System.Windows.Forms.TabPage tabPageModOrder;
+ private System.Windows.Forms.PictureBox pictureBoxCollapseDetails;
+ private System.Windows.Forms.Panel panelModDetails;
private System.Windows.Forms.Panel panelModDetailsHeader;
private System.Windows.Forms.Button buttonModAbstain;
private System.Windows.Forms.Button buttonModEndorse;
private System.Windows.Forms.Label labelModEndorseStatus;
private System.Windows.Forms.Label labelModTitle;
private System.Windows.Forms.CheckBox checkBoxModDetailsEnabled;
+ private System.Windows.Forms.Panel panelModDetailsInner;
private System.Windows.Forms.GroupBox groupBoxNotes;
private System.Windows.Forms.TextBox textBoxNotes;
+ private System.Windows.Forms.GroupBox groupBoxModReplace;
+ private System.Windows.Forms.Label labelModDetailsReplace;
+ private System.Windows.Forms.LinkLabel linkLabelModDeleteFolderContents;
+ private System.Windows.Forms.Panel panelModDetailsReplaceDragAndDrop;
+ private System.Windows.Forms.LinkLabel linkLabelModReplaceFilesWithFolder;
+ private System.Windows.Forms.LinkLabel linkLabelModReplaceFilesWithArchive;
+ private System.Windows.Forms.GroupBox groupBoxModDetailsInstallationOptions;
+ private System.Windows.Forms.LinkLabel linkLabelModInvalidateFrozenArchive;
+ private System.Windows.Forms.LinkLabel linkLabelModAutoDetectInstallOptions;
+ private System.Windows.Forms.Label labelModInstallWarning;
+ private System.Windows.Forms.Button buttonModPickRootDir;
+ private System.Windows.Forms.Label labelModInstallAs;
+ private System.Windows.Forms.Label labelModArchivePreset;
+ private System.Windows.Forms.CheckBox checkBoxFreezeArchive;
+ private System.Windows.Forms.Label labelModInstallInto;
+ private System.Windows.Forms.ComboBox comboBoxModInstallAs;
+ private System.Windows.Forms.Button buttonModDetailsSuggestArchiveName;
+ private System.Windows.Forms.TextBox textBoxModRootDir;
+ private System.Windows.Forms.ComboBox comboBoxModArchivePreset;
+ private System.Windows.Forms.TextBox textBoxModArchiveName;
+ private System.Windows.Forms.Label labelModArchiveName;
+ private System.Windows.Forms.GroupBox groupBoxModDetailsDetails;
private System.Windows.Forms.TextBox textBoxModFolderName;
private System.Windows.Forms.Label labelModFolderName;
- private System.Windows.Forms.ColumnHeader columnHeaderArchivePreset;
- private System.Windows.Forms.ToolStripButton toolStripButtonModUnfreeze;
+ private System.Windows.Forms.Button buttonModOpenPage;
+ private System.Windows.Forms.Panel panelModDetailsNexusMods;
+ private System.Windows.Forms.LinkLabel linkLabelModSetLatestVersion;
+ private System.Windows.Forms.Label labelModAuthor;
+ private System.Windows.Forms.Label labelModLatestVersion;
+ private System.Windows.Forms.Label labelModLatestVersionDesc;
+ private System.Windows.Forms.Label labelModAuthorDesc;
+ private System.Windows.Forms.TextBox textBoxModVersion;
+ private System.Windows.Forms.Label labelModVersion;
+ private System.Windows.Forms.TextBox textBoxModURL;
+ private System.Windows.Forms.Label labelModName;
+ private System.Windows.Forms.Label labelModURL;
+ private System.Windows.Forms.TextBox textBoxModName;
+ private System.Windows.Forms.Label labelModSummary;
+ private System.Windows.Forms.PictureBox pictureBoxModThumbnail;
+ public System.Windows.Forms.ToolStrip toolStrip1;
+ private System.Windows.Forms.ToolStripButton toolStripButtonAddMod;
+ private System.Windows.Forms.ToolStripButton toolStripButtonAddModFolder;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
+ private System.Windows.Forms.ToolStripButton toolStripButtonCheckAll;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
+ private System.Windows.Forms.ToolStripButton toolStripButtonMoveUp;
+ private System.Windows.Forms.ToolStripButton toolStripButtonMoveDown;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
+ private System.Windows.Forms.ToolStripButton toolStripButtonModOpenFolder;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private System.Windows.Forms.ToolStripButton toolStripButtonFreeze;
- private System.Windows.Forms.Timer timerCheckForNXM;
+ private System.Windows.Forms.ToolStripButton toolStripButtonModUnfreeze;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
+ private System.Windows.Forms.ToolStripButton toolStripButtonDeleteMod;
+ public System.Windows.Forms.ListView listViewMods;
+ private System.Windows.Forms.ColumnHeader columnHeaderModTitle;
+ private System.Windows.Forms.ColumnHeader columnHeaderVersion;
+ private System.Windows.Forms.ColumnHeader columnHeaderInstallAs;
+ private System.Windows.Forms.ColumnHeader columnHeaderInstallInto;
+ private System.Windows.Forms.ColumnHeader columnHeaderArchiveName;
+ private System.Windows.Forms.ColumnHeader columnHeaderArchivePreset;
+ private System.Windows.Forms.ColumnHeader columnHeaderFrozenState;
+ private System.Windows.Forms.TabControl tabControl1;
}
}
\ No newline at end of file
diff --git a/Fo76ini/Forms/FormMods/FormMods.Details.cs b/Fo76ini/Forms/FormMods/FormMods.Details.cs
index d795920..fd0081f 100644
--- a/Fo76ini/Forms/FormMods/FormMods.Details.cs
+++ b/Fo76ini/Forms/FormMods/FormMods.Details.cs
@@ -233,6 +233,7 @@ private void UpdateSidePanelOneMod()
this.checkBoxModDetailsEnabled.Visible = true;
this.groupBoxModDetailsDetails.Visible = true;
this.groupBoxModReplace.Visible = true;
+ this.groupBoxNotes.Visible = true;
// Update thumbnail:
if (this.editedMod.RemoteInfo != null &&
@@ -378,12 +379,16 @@ private void UpdateSidePanelOneMod()
private void UpdateSidePanelBulk()
{
+ this.labelModTitle.Text = string.Format(Localization.localizedStrings["modDetailsTitleBulkSelected"], this.editedModCount);
+
this.checkBoxModDetailsEnabled.Visible = false;
this.groupBoxModDetailsDetails.Visible = false;
this.groupBoxModReplace.Visible = false;
+ this.groupBoxNotes.Visible = false;
+ // No thumbnail for us:
this.pictureBoxModThumbnail.Image = Resources.bg;
- this.labelModTitle.Text = string.Format(Localization.localizedStrings["modDetailsTitleBulkSelected"], this.editedModCount);
+ this.pictureBoxModThumbnail.Visible = false;
// Install into visible
this.labelModInstallInto.Visible = true;
diff --git a/Fo76ini/Forms/FormMods/FormMods.cs b/Fo76ini/Forms/FormMods/FormMods.cs
index 6351456..d970488 100644
--- a/Fo76ini/Forms/FormMods/FormMods.cs
+++ b/Fo76ini/Forms/FormMods/FormMods.cs
@@ -111,6 +111,7 @@ private void LoadMods(string GamePath)
Mods.Load();
}
+
private void ReloadModManager()
{
if (!IniFiles.IsLoaded())
@@ -132,7 +133,20 @@ private void ReloadModManager()
}
catch (Exception exc)
{
- MsgBox.Popup("Failed to load mods", $"Failed to load mods.\n{exc.GetType()}: {exc.Message}", MessageBoxIcon.Error);
+ if (exc is UnauthorizedAccessException && !Utils.HasAdminRights())
+ {
+ MsgBox.Popup("Failed to load mods",
+ $"Try to start the program with admin rights.\n" +
+ $"Right-click on the desktop icon or *.exe file and click on 'Run as administrator'.\n\n" +
+ $"{exc.GetType()}: {exc.Message}",
+ MessageBoxIcon.Error);
+ }
+ else
+ {
+ MsgBox.Popup("Failed to load mods", $"Failed to load mods.\n" +
+ $"{exc.GetType()}: {exc.Message}", MessageBoxIcon.Error);
+ }
+
this.DisableUI();
this.preventClosing = false;
}
@@ -728,6 +742,7 @@ private void timerCheckForNXM_Tick(object sender, EventArgs e)
{
string nxmLink = File.ReadAllText(txtPath);
File.Delete(txtPath);
+ OpenUI();
DownloadModThreaded(nxmLink, UpdateProgress);
}
}
diff --git a/Fo76ini/Forms/FormMods/FormMods.resx b/Fo76ini/Forms/FormMods/FormMods.resx
index 971d3b4..815298a 100644
--- a/Fo76ini/Forms/FormMods/FormMods.resx
+++ b/Fo76ini/Forms/FormMods/FormMods.resx
@@ -120,6 +120,30 @@
6, 11
+
+ 643, 16
+
+
+ 484, 16
+
+
+ 291, 55
+
+
+ 733, 16
+
+
+ 137, 16
+
+
+ 479, 55
+
+
+ 175, 55
+
+
+ 17, 55
+
@@ -137,9 +161,6 @@
DyeKoO97KVuAZVVVzlLXNZ0JoWFMaBgP727vyC4kjhEWfQAAAABJRU5ErkJggg==
-
- 643, 16
-
379, 16
@@ -157,30 +178,6 @@
Yy7JZ6QAAAAASUVORK5CYII=
-
- 643, 16
-
-
- 484, 16
-
-
- 291, 55
-
-
- 733, 16
-
-
- 137, 16
-
-
- 479, 55
-
-
- 175, 55
-
-
- 17, 55
-
346
diff --git a/Fo76ini/Forms/FormSettings/FormSettings.Designer.cs b/Fo76ini/Forms/FormSettings/FormSettings.Designer.cs
index df7524f..7fb51d3 100644
--- a/Fo76ini/Forms/FormSettings/FormSettings.Designer.cs
+++ b/Fo76ini/Forms/FormSettings/FormSettings.Designer.cs
@@ -29,12 +29,12 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("Default", 0);
- System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
+ System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("Default", 0);
+ System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[] {
"Steam"}, 2, System.Drawing.Color.Empty, System.Drawing.SystemColors.Window, null);
- System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Bethesda.net", 1);
- System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("Bethesda.net PTS", 1);
- System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("Microsoft Store", 3);
+ System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem("Bethesda.net", 1);
+ System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem("Bethesda.net PTS", 1);
+ System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem("Xbox", 3);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormSettings));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPageGeneral = new System.Windows.Forms.TabPage();
@@ -358,12 +358,11 @@ private void InitializeComponent()
//
// linkLabelEnableDangerZone
//
- this.linkLabelEnableDangerZone.AutoSize = true;
this.linkLabelEnableDangerZone.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
this.linkLabelEnableDangerZone.LinkColor = System.Drawing.Color.Red;
- this.linkLabelEnableDangerZone.Location = new System.Drawing.Point(7, 20);
+ this.linkLabelEnableDangerZone.Location = new System.Drawing.Point(7, 16);
this.linkLabelEnableDangerZone.Name = "linkLabelEnableDangerZone";
- this.linkLabelEnableDangerZone.Size = new System.Drawing.Size(121, 13);
+ this.linkLabelEnableDangerZone.Size = new System.Drawing.Size(342, 15);
this.linkLabelEnableDangerZone.TabIndex = 44;
this.linkLabelEnableDangerZone.TabStop = true;
this.linkLabelEnableDangerZone.Text = "⚠️ Enable Danger Zone";
@@ -883,7 +882,7 @@ private void InitializeComponent()
// pictureBoxMSStore
//
this.pictureBoxMSStore.BackColor = System.Drawing.Color.Transparent;
- this.pictureBoxMSStore.Image = global::Fo76ini.Properties.Resources.msstore_24;
+ this.pictureBoxMSStore.Image = global::Fo76ini.Properties.Resources.xbox_24;
this.pictureBoxMSStore.Location = new System.Drawing.Point(11, 109);
this.pictureBoxMSStore.Name = "pictureBoxMSStore";
this.pictureBoxMSStore.Size = new System.Drawing.Size(24, 24);
@@ -925,9 +924,9 @@ private void InitializeComponent()
this.radioButtonEditionMSStore.AutoSize = true;
this.radioButtonEditionMSStore.Location = new System.Drawing.Point(43, 112);
this.radioButtonEditionMSStore.Name = "radioButtonEditionMSStore";
- this.radioButtonEditionMSStore.Size = new System.Drawing.Size(188, 17);
+ this.radioButtonEditionMSStore.Size = new System.Drawing.Size(194, 17);
this.radioButtonEditionMSStore.TabIndex = 3;
- this.radioButtonEditionMSStore.Text = "Microsoft Store / Xbox Game Pass";
+ this.radioButtonEditionMSStore.Text = "Xbox (Game Pass) / Microsoft Store";
this.radioButtonEditionMSStore.UseVisualStyleBackColor = true;
this.radioButtonEditionMSStore.CheckedChanged += new System.EventHandler(this.radioButtonEditionMSStore_CheckedChanged);
//
@@ -987,11 +986,11 @@ private void InitializeComponent()
this.listViewGameInstances.FullRowSelect = true;
this.listViewGameInstances.HideSelection = false;
this.listViewGameInstances.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
- listViewItem1,
- listViewItem2,
- listViewItem3,
- listViewItem4,
- listViewItem5});
+ listViewItem6,
+ listViewItem7,
+ listViewItem8,
+ listViewItem9,
+ listViewItem10});
this.listViewGameInstances.LabelWrap = false;
this.listViewGameInstances.LargeImageList = this.imageList1;
this.listViewGameInstances.Location = new System.Drawing.Point(3, 18);
@@ -1065,7 +1064,7 @@ private void InitializeComponent()
this.imageList1.Images.SetKeyName(0, "help-24.png");
this.imageList1.Images.SetKeyName(1, "bethesda_24px.png");
this.imageList1.Images.SetKeyName(2, "steam_24px.png");
- this.imageList1.Images.SetKeyName(3, "msstore_24px.png");
+ this.imageList1.Images.SetKeyName(3, "xbox_24px.png");
//
// labelTip
//
@@ -1551,7 +1550,6 @@ private void InitializeComponent()
this.groupBoxPaths.ResumeLayout(false);
this.groupBoxPaths.PerformLayout();
this.groupBoxActions.ResumeLayout(false);
- this.groupBoxActions.PerformLayout();
this.groupBoxOptions.ResumeLayout(false);
this.groupBoxOptions.PerformLayout();
this.groupBoxNuclearWinterMode.ResumeLayout(false);
diff --git a/Fo76ini/Forms/FormSettings/FormSettings.cs b/Fo76ini/Forms/FormSettings/FormSettings.cs
index d115964..d223cc5 100644
--- a/Fo76ini/Forms/FormSettings/FormSettings.cs
+++ b/Fo76ini/Forms/FormSettings/FormSettings.cs
@@ -994,14 +994,20 @@ private void checkBoxHandleNXMLinks_CheckedChanged(object sender, EventArgs e)
else
NXMHandler.Register();
}
- catch (System.UnauthorizedAccessException ex)
+ catch (UnauthorizedAccessException ex)
{
- MsgBox.Show("Access denied", "Start the tool as admin and try again.", MessageBoxIcon.Error);
+ if (!Utils.HasAdminRights())
+ MsgBox.Show("Access denied", "Start the tool as admin and try again.", MessageBoxIcon.Error);
+ else
+ MsgBox.Show(ex.GetType().ToString(), ex.ToString(), MessageBoxIcon.Error);
checkBoxHandleNXMLinks.Checked = isRegistered;
}
catch (Exception ex)
{
- MsgBox.Show("Unknown error", "Start the tool as admin and try again.", MessageBoxIcon.Error);
+ if (!Utils.HasAdminRights())
+ MsgBox.Show("Unknown error", "Start the tool as admin and try again.", MessageBoxIcon.Error);
+ else
+ MsgBox.Show(ex.GetType().ToString(), ex.ToString(), MessageBoxIcon.Error);
checkBoxHandleNXMLinks.Checked = isRegistered;
}
}
diff --git a/Fo76ini/Forms/FormSettings/FormSettings.resx b/Fo76ini/Forms/FormSettings/FormSettings.resx
index fbc58b7..8d248c2 100644
--- a/Fo76ini/Forms/FormSettings/FormSettings.resx
+++ b/Fo76ini/Forms/FormSettings/FormSettings.resx
@@ -117,6 +117,9 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 17, 17
+
107, 17
@@ -130,8 +133,8 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
- ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADI
- DAAAAk1TRnQBSQFMAgEBBAEAAUABAQFAAQEBGAEAARgBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
+ ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB6
+ DgAAAk1TRnQBSQFMAgEBBAEAAUgBAQFIAQEBGAEAARgBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABYAMAATADAAEBAQABCAYAARIYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
@@ -160,32 +163,39 @@
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD//8A/wD/AP8A/wD/AP8A
- /wD/ABEAAf8B3QG1AbQCzwG0AbUB3QH/JgAB/wHwAbsDswG0AboB8AH/BwAB9BbzAfQFAAH/AQkBzwit
- Ac8BCQH/IgAB/wG7AYsIigGLAbsB/wUAGPMEAAHzAc8MrQHPAfMgAAHyAYsMigGLAfMEABjzAwAB3RCt
- Ad0eAAG8EIoB8AMAB/ME8gLzBBsH8wIAAfMIrQK1CK0B8xwAAfIDigG0AvABCQGLCooB8wIAB/ME0wHb
- AXoEOAfzAQAB/wHPB60BCQL/AQkHrQHPAf8GAA7/BgAB/wGLAooBtAG7ArQBiwHwAYsJigGLAf8BAAfz
- BNMB2wF6BDgH8wEAAQkIrQHzAgABGQitAQkGAA7/BgABtQJlAYsB8wP/AfEBkQG1CmUB7wEAB/ME0wHb
- AXoEOAfzAf8BzwitAbUC/wG1CK0BzwH/BQAO/wUAAf8BZgGuAbwG/wGLAfABZgllAWYB/wfzBNMB2wF6
- BDgH8wHxCq0CzwqtAd0FAA7/BQAB8AHzB/8BBwG0Af8B8wGLCWUB8AfzBNsBCQGaBHoH8wG1Cq0BzwG0
- Cq0BtQUADv8FAAHzBv8B8wKRBP8B9whlAZEH8wR1AZQBmQR4AfIG8wG0Cq0B3QHzCq0BtAUABf8EAAX/
- BQAE/wH0AfcBiwG1AfEG/wHwAZIBiwVlAa4H8wRNAXUBeAQ1AfIG8wHPCq0BCQH/AQkJrQHPBQAF/wQA
- Bf8FAAL/AbwBrgRlAWYB9Aj/AbwBZgNlAWYH8wRNAXUBeAQ1AfIG8wHPC60B9AH/AfEIrQHPBQAF/wQA
- Bf8FAAHvAWYHZQGuA/8B9AGuAmwBkQH/AQcDZQFmB/METQF1AXgENQHyBvMBtAutAbUC/wEJB60BtAUA
- Bf8EAAX/BQABbAkNAe8C/wGuAe8C/wH3Ae0B/wFmAg0B6gfzBE0BdQF4BDUB8gbzAQkMrQH0AQAB/wHP
- Bq0BtQUADv8FAAHsCQ0BZQHzAf8B6gT/AWwB/wGRAg0B7AzzBfIH8wEZCK0B3QG1Aq0B3QIAAbUGrQHx
- BQAO/wUAAbwKDQH3Af8B6gT/AWwB/wHsAg0BvBjzAf8BzwatAbQBAAH0Aq0B3QEAAf8BtAWtAc8B/wUA
- Dv8FAAH/Cg0BrgH/Aa4BBwL/AfcB7AH/AWYCDQH/GPMBAAEJBq0BzwL/ArQB9AEAAfQGrQEJBgAO/wYA
- Ae0KDQHwAfQB6wJsAewB/wEHAg0B9wEAB/MB8gjzAfIH8wEAAf8BtAatAbUB9AP/AfMBzwWtAbQB/wYA
- Dv8GAAH/AUMJDQFmAfAE/wEHAg0BQwH/CAAB8wH0AfMB9AQAAfQD8wcAAfMIrQK0Ac8HrQHzHAAB8QsN
- AW0C7QESAw0B8gkAAfMB9ALzBAAB9ALzAfQIAAEZEK0B8R4AAbwQDQG8CgAB9AHzAf8B8wH/AwAB8wH0
- AfMB/wkAAfMBtAytAbQB8yAAAfEBQwwNAUMB8gsAAf8B8wH/AfQB8wH0Af8B9AHzAf8B9AsAAf8BCQHP
- CK0BzwEJAf8iAAH0AfcBEAgNARAB9wH/DQAB9AHzAfQB/wH0AvMB9AH/DgAB/wEZAQkBtALPAbQBCQEZ
- Af8mAAH0AbwB7AESAkMBEgHsAbwB/xAAAf8E8wH/CQABQgFNAT4HAAE+AwABKAMAAWADAAEwAwABAQEA
- AQEFAAFAAQIWAAP//wAiAAH+AQABfwMAAf4BAAF/AwAB+AEAAR8DAAH4AQABHwMAAfABAAEPAwAB8AEA
- AQ8DAAHgAQABBwMAAeABAAEHAwABwAEAAQMDAAHAAQABAwMAAYABAAEBAwABgAEAAQEDAAGAARgBAQMA
- AYABAAEBWAABAgsAAQMLAAFCCgABgAECAQEDAAGAAQABAQMAAYABAAEBAwABgAEAAQEB/gEeAR8BwAEA
- AQMDAAHAAQABAwH+AR4BHwHgAQABBwMAAeABAAEHAf4BDgEfAfABAAEPAwAB8AEAAQ8B/gEAAT8B+AEA
- AR8DAAH4AQABHwH/AQABfwH+AQABfwMAAf4BAAF/Af8BgQH/Cw==
+ /wD/ABEAAf8B3QG1AbQCzwG0AbUB3QH/JgAB/wHwAbsDswG0AboB8AH/DgAB/wH0AvMC8gLzAfQB/wwA
+ Af8BCQHPCK0BzwEJAf8iAAH/AbsBiwiKAYsBuwH/CgAB/wH0AwcHvAH0Af8JAAHzAc8MrQHPAfMgAAHy
+ AYsMigGLAfMIAAH0AfAEBwHuBLwB8AK8AfEB/wcAAd0QrQHdHgABvBCKAfAGAAH/Ae8JBwO8AfACvAH0
+ BQAB8witArUIrQHzHAAB8gOKAbQC8AEJAYsKigHzBAAB9AFQAe8LBwHuAbwB8AG8AZcB/wMAAf8Bzwet
+ AQkC/wEJB60BzwH/BgAO/wYAAf8BiwKKAbQBuwK0AYsB8AGLCYoBiwH/AgAB/wGYAS0Bcw0HAbwBmAEt
+ AQcB/wIAAQkIrQHzAgABGQitAQkGAA7/BgABtQJlAYsB8wP/AfEBkQG1CmUB7wIAAfMB7QEtAU8CBwa8
+ BgcBTwEtAe8B8wEAAf8BzwitAbUC/wG1CK0BzwH/BQAO/wUAAf8BZgGuAbwG/wGLAfABZgllAWYC/wEH
+ Ae8CLgGYAbwD8ALxAvABvAMHAXgBLgFPAe4B8QH/AfEKrQLPCq0B3QUADv8FAAHwAfMH/wEHAbQB/wHz
+ AYsJZQHwAfQBBwHuAU8BLgFPAZgC8QTyAfEB8AG8AQcBmAFPAS4BTwK8Af8BtQqtAc8BtAqtAbUFAA7/
+ BQAB8wb/AfMCkQT/AfcIZQGRAfQBBwHwAe8BLQEuAVYB8AXzAfIB8QHwAQcBVgEuAS0BmAHwAbwB9AG0
+ Cq0B3QHzCq0BtAUABf8EAAX/BQAE/wH0AfcBiwG1AfEG/wHwAZIBiwVlAa4B8wHuAfAB8QFQAi4BVgEb
+ BPQC8wHwAVYCLgFPAQcCvAHzAc8KrQEJAf8BCQmtAc8FAAX/BAAF/wUAAv8BvAGuBGUBZgH0CP8BvAFm
+ A2UBZgHyAbwB8AHxAZgCLgFPAXgB9AP/AfQBGwFWAU8CLgHvAe4CvAHyAc8LrQH0Af8B8QitAc8FAAX/
+ BAAF/wUAAe8BZgdlAa4D/wH0Aa4CbAGRAf8BBwNlAWYB8gG8AfEC8gGXAi4BVgF4ARsC/wHzAXgBVQIu
+ AXIBBwHuAbwBBwHyAbQLrQG1Av8BCQetAbQFAAX/BAAF/wUAAWwJDQHvAv8BrgHvAv8B9wHtAf8BZgIN
+ AeoB8wG8AfEB8gLzAU8CLgFWAVcB9AEbAVcBVgMuAQcD7gEHAfMBCQytAfQBAAH/Ac8GrQG1BQAO/wUA
+ AewJDQFlAfMB/wHqBP8BbAH/AZECDQHsAfQBvAHxAfIB8wH0AZgCLgFPBFcBTwIuAZgDvAIHAfQBGQit
+ Ad0BtQKtAd0CAAG1Bq0B8QUADv8FAAG8Cg0B9wH/AeoE/wFsAf8B7AINAbwB9AHuAfEB8gHzAfQB/wGX
+ AS0BUARWAVABLQFyAfADvAIHAv8BzwatAbQBAAH0Aq0B3QEAAf8BtAWtAc8B/wUADv8FAAH/Cg0BrgH/
+ Aa4BBwL/AfcB7AH/AWYCDQL/AbwB8AHyAfMB9AH/AfQBlwZWAU8C8AO8AQcBvAH/AQABCQatAc8C/wK0
+ AfQBAAH0Bq0BCQYADv8GAAHtCg0B8AH0AesCbAHsAf8BBwINAfcCAAHzAbwB8QHzAfQC/wGZAlYBVQFP
+ AlYBmQHxAvABvAEHAe8B8wIAAf8BtAatAbUB9AP/AfMBzwWtAbQB/wYADv8GAAH/AUMJDQFmAfAE/wEH
+ Ag0BQwH/AgAB/wHxAfAB8gL0AZgBVgFVAU8CLgFPAVUBVgF4AvAB7gEHAbwB/wMAAfMIrQK0Ac8HrQHz
+ HAAB8QsNAW0C7QESAw0B8gQAAf8BvAHwAfEBlwFVAU8GLgFPAVUBVgMHAf8FAAEZEK0B8R4AAbwQDQG8
+ BgAB9AGYAU8ELgFPApgBTwQuAU8BmAH0BwAB8wG0DK0BtAHzIAAB8QFDDA0BQwHyCAAB/wGXAS4BLQFP
+ AZgB9AH/AvQBmAFPAS0BLgGXAf8JAAH/AQkBzwitAc8BCQH/IgAB9AH3ARAIDQEQAfcB/woAAf8B8wHw
+ AfEC8gHzAvIB8AK8AfMB/wwAAf8BGQEJAbQCzwG0AQkBGQH/JgAB9AG8AewBEgJDARIB7AG8Af8PAAH/
+ AfQB8wPyAfQB/wgAAUIBTQE+BwABPgMAASgDAAFgAwABMAMAAQEBAAEBBQABQAECFgAD//8AIgAB/gEA
+ AX8DAAH+AQABfwH+AQABfwH4AQABHwMAAfgBAAEfAfgBAAEfAfABAAEPAwAB8AEAAQ8B8AEAAQ8B4AEA
+ AQcDAAHgAQABBwHgAQABBwHAAQABAwMAAcABAAEDAcABAAEDAYABAAEBAwABgAEAAQEBgAEAAQEBgAEY
+ AQEDAAGAAQABAQGAAQABAVUAAQILAAEDCwABQgoAAYABAgEBAwABgAEAAQEBgAEAAQEBgAEAAQEDAAGA
+ AQABAQGAAQABAQHAAQABAwMAAcABAAEDAcABAAEDAeABAAEHAwAB4AEAAQcB4AEAAQcB8AEAAQ8DAAHw
+ AQABDwHwAQABDwH4AQABHwMAAfgBAAEfAfgBAAEfAf4BAAF/AwAB/gEAAX8B/wEAAf8L
@@ -236,6 +246,9 @@
McYYY0w/GDHiH4RSOYX/ZZhxAAAAAElFTkSuQmCC
+
+ 107, 17
+
17, 60
diff --git a/Fo76ini/Forms/FormWelcome/FormWelcome.Designer.cs b/Fo76ini/Forms/FormWelcome/FormWelcome.Designer.cs
index 5db5a25..b96dbb4 100644
--- a/Fo76ini/Forms/FormWelcome/FormWelcome.Designer.cs
+++ b/Fo76ini/Forms/FormWelcome/FormWelcome.Designer.cs
@@ -203,7 +203,7 @@ private void InitializeComponent()
// pictureBoxMSStore
//
this.pictureBoxMSStore.BackColor = System.Drawing.Color.Transparent;
- this.pictureBoxMSStore.Image = global::Fo76ini.Properties.Resources.msstore_24;
+ this.pictureBoxMSStore.Image = global::Fo76ini.Properties.Resources.xbox_24;
this.pictureBoxMSStore.Location = new System.Drawing.Point(11, 109);
this.pictureBoxMSStore.Name = "pictureBoxMSStore";
this.pictureBoxMSStore.Size = new System.Drawing.Size(24, 24);
@@ -245,9 +245,9 @@ private void InitializeComponent()
this.radioButtonEditionMSStore.AutoSize = true;
this.radioButtonEditionMSStore.Location = new System.Drawing.Point(43, 112);
this.radioButtonEditionMSStore.Name = "radioButtonEditionMSStore";
- this.radioButtonEditionMSStore.Size = new System.Drawing.Size(188, 17);
+ this.radioButtonEditionMSStore.Size = new System.Drawing.Size(194, 17);
this.radioButtonEditionMSStore.TabIndex = 3;
- this.radioButtonEditionMSStore.Text = "Microsoft Store / Xbox Game Pass";
+ this.radioButtonEditionMSStore.Text = "Xbox (Game Pass) / Microsoft Store";
this.radioButtonEditionMSStore.UseVisualStyleBackColor = true;
this.radioButtonEditionMSStore.CheckedChanged += new System.EventHandler(this.radioButtonEditionMSStore_CheckedChanged);
//
diff --git a/Fo76ini/NexusAPI/NXMHandler.cs b/Fo76ini/NexusAPI/NXMHandler.cs
index b84f663..038e9fe 100644
--- a/Fo76ini/NexusAPI/NXMHandler.cs
+++ b/Fo76ini/NexusAPI/NXMHandler.cs
@@ -62,6 +62,27 @@ private static string GetCommand()
}
public static NXMLink ParseLink(string nxmLink)
+ {
+ // nxm://fallout76/mods//files/?key=...&expires=1621492286&user_id=41275740
+
+ if (!nxmLink.StartsWith("nxm://"))
+ throw new ArgumentException("Invalid nxm link: " + nxmLink);
+
+ Uri uri = new Uri(nxmLink);
+ var query = uri.Query.Trim('?').Split('&')
+ .ToDictionary(c => c.Split('=')[0],
+ c => Uri.UnescapeDataString(c.Split('=')[1]));
+
+ NXMLink parsed = new NXMLink();
+ parsed.modId = Utils.ToInt(uri.Segments[2].Trim('/'));
+ parsed.fileId = Utils.ToInt(uri.Segments[4].Trim('/'));
+ parsed.key = query["key"];
+ parsed.expires = Utils.ToInt(query["expires"]);
+
+ return parsed;
+ }
+
+ /*public static NXMLink ParseLink(string nxmLink)
{
// nxm://fallout76/mods//files/?key=...&expires=1621492286&user_id=41275740
if (!nxmLink.StartsWith("nxm://"))
@@ -98,6 +119,6 @@ public static NXMLink ParseLink(string nxmLink)
parsed.expires = Utils.ToInt(expires);
return parsed;
- }
+ }*/
}
}
diff --git a/Fo76ini/Profiles/GameInstance.cs b/Fo76ini/Profiles/GameInstance.cs
index c7dfdde..c0bf649 100644
--- a/Fo76ini/Profiles/GameInstance.cs
+++ b/Fo76ini/Profiles/GameInstance.cs
@@ -1,8 +1,10 @@
using Fo76ini.Interface;
+using Fo76ini.Properties;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
+using System.Drawing;
using System.IO;
using System.Windows.Forms;
using System.Xml.Linq;
@@ -76,7 +78,7 @@ public void SetDefaultSettings(GameEdition edition)
*
* Enter in PowerShell:
* PS C:\> Get-StartApps
- * ^ The above will list every UWP (Win10) AppID, like so:
+ * ^ The above will return a list:
*
* Name AppID
* ---- -----
@@ -185,7 +187,12 @@ public void LaunchGame(LaunchOption option)
///
public static bool ValidateGamePath(string path)
{
- return path != null && path.Trim().Length > 0 && Directory.Exists(path) && Directory.Exists(Path.Combine(path, "Data"));
+ return
+ path != null &&
+ path.Trim().Length > 0 &&
+ Directory.Exists(path) &&
+ Directory.Exists(Path.Combine(path, "Data")) &&
+ File.Exists(Path.Combine(path, "Data", "SeventySix.esm"));
}
///
@@ -195,5 +202,51 @@ public bool ValidateGamePath()
{
return ValidateGamePath(GamePath);
}
+
+ public Bitmap Get128pxBitmap()
+ {
+ return Get128pxBitmap(this.Edition);
+ }
+
+ public static Bitmap Get128pxBitmap(GameEdition edition)
+ {
+ switch (edition)
+ {
+ case GameEdition.Steam:
+ return Resources.steam;
+ case GameEdition.BethesdaNet:
+ return Resources.bethesda;
+ case GameEdition.BethesdaNetPTS:
+ return Resources.bethesda_pts;
+ case GameEdition.MSStore:
+ //return Resources.msstore;
+ return Resources.xbox;
+ default:
+ return Resources.help_128;
+ }
+ }
+
+ public Bitmap Get128pxHoverBitmap()
+ {
+ return Get128pxHoverBitmap(this.Edition);
+ }
+
+ public static Bitmap Get128pxHoverBitmap(GameEdition edition)
+ {
+ switch (edition)
+ {
+ case GameEdition.Steam:
+ return Resources.steam_hover;
+ case GameEdition.BethesdaNet:
+ return Resources.bethesda_hover;
+ case GameEdition.BethesdaNetPTS:
+ return Resources.bethesda_pts_hover;
+ case GameEdition.MSStore:
+ //return Resources.msstore_hover;
+ return Resources.xbox_hover;
+ default:
+ return Resources.help_128_hover;
+ }
+ }
}
}
diff --git a/Fo76ini/Profiles/ProfileManager.cs b/Fo76ini/Profiles/ProfileManager.cs
index 35668e2..d8d75e4 100644
--- a/Fo76ini/Profiles/ProfileManager.cs
+++ b/Fo76ini/Profiles/ProfileManager.cs
@@ -240,7 +240,7 @@ private static void ConvertLegacyFormat()
game.Title = "Steam";
break;
case GameEdition.MSStore:
- game.Title = "Microsoft Store";
+ game.Title = "Xbox / Microsoft Store";
break;
}
diff --git a/Fo76ini/Properties/Resources.Designer.cs b/Fo76ini/Properties/Resources.Designer.cs
index 8ab5d0e..6a52725 100644
--- a/Fo76ini/Properties/Resources.Designer.cs
+++ b/Fo76ini/Properties/Resources.Designer.cs
@@ -380,16 +380,6 @@ internal static System.Drawing.Bitmap fire {
}
}
- ///
- /// Looks up a localized resource of type System.Drawing.Bitmap.
- ///
- internal static System.Drawing.Bitmap Fo76ini_LDu4jzf2p3 {
- get {
- object obj = ResourceManager.GetObject("Fo76ini_LDu4jzf2p3", resourceCulture);
- return ((System.Drawing.Bitmap)(obj));
- }
- }
-
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
@@ -759,5 +749,15 @@ internal static System.Drawing.Bitmap xbox_24 {
return ((System.Drawing.Bitmap)(obj));
}
}
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap xbox_hover {
+ get {
+ object obj = ResourceManager.GetObject("xbox_hover", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
}
}
diff --git a/Fo76ini/Properties/Resources.resx b/Fo76ini/Properties/Resources.resx
index 654bd39..475936f 100644
--- a/Fo76ini/Properties/Resources.resx
+++ b/Fo76ini/Properties/Resources.resx
@@ -229,9 +229,6 @@
..\Resources\thaw-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\Fo76ini_LDu4jzf2p3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\fire-2-24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -328,4 +325,7 @@
..\Resources\steam_hover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\xbox_hover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/Fo76ini/Resources/xbox.png b/Fo76ini/Resources/xbox.png
index b5b2403..8b61e93 100644
Binary files a/Fo76ini/Resources/xbox.png and b/Fo76ini/Resources/xbox.png differ
diff --git a/Fo76ini/Resources/xbox_24px.png b/Fo76ini/Resources/xbox_24px.png
index 8ea7af3..ca34f0d 100644
Binary files a/Fo76ini/Resources/xbox_24px.png and b/Fo76ini/Resources/xbox_24px.png differ
diff --git a/Fo76ini/Resources/xbox_hover.png b/Fo76ini/Resources/xbox_hover.png
new file mode 100644
index 0000000..bf126da
Binary files /dev/null and b/Fo76ini/Resources/xbox_hover.png differ
diff --git a/Fo76ini/Shared.cs b/Fo76ini/Shared.cs
index ad82601..40abec2 100644
--- a/Fo76ini/Shared.cs
+++ b/Fo76ini/Shared.cs
@@ -8,7 +8,7 @@ namespace Fo76ini
{
public class Shared
{
- public const string VERSION = "1.9.4-dev";
+ public const string VERSION = "1.9.4";
public static string LatestVersion = null;
public static readonly string AppInstallationFolder = Directory.GetParent(Application.ExecutablePath).ToString();
diff --git a/Fo76ini/Utilities/Utils.cs b/Fo76ini/Utilities/Utils.cs
index f37dceb..a4d8a23 100644
--- a/Fo76ini/Utilities/Utils.cs
+++ b/Fo76ini/Utilities/Utils.cs
@@ -8,6 +8,7 @@
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
+using System.Security.Principal;
using System.Threading;
using System.Windows.Forms;
using Tulpep.NotificationWindow;
@@ -546,6 +547,8 @@ public static PopupNotifier CreatePopup(string title, string text)
GraphicsUnit.Pixel
);
popup.TitlePadding = new Padding(4);
+
+ popup.Click += Popup_Click;
return popup;
}
@@ -568,6 +571,18 @@ public static PopupNotifier CreatePopup(string title, string text, MessageBoxIco
return popup;
}
+ // Copy text:
+ private static void Popup_Click(object sender, EventArgs e)
+ {
+ if (sender is PopupNotifier)
+ {
+ string text =
+ ((PopupNotifier)sender).TitleText + "\n\n" +
+ ((PopupNotifier)sender).ContentText;
+ Clipboard.SetText(text);
+ }
+ }
+
// https://stackoverflow.com/a/4722300
public static bool IsProcessRunning(string name)
{
@@ -852,5 +867,23 @@ subControl is GroupBox ||
PreventChangeOnMouseWheelForAllElements(subControl);
}
}
+
+ ///
+ /// Checks whether the user has administrator rights.
+ ///
+ public static bool HasAdminRights()
+ {
+ try
+ {
+ WindowsIdentity user = WindowsIdentity.GetCurrent();
+ WindowsPrincipal principal = new WindowsPrincipal(user);
+ return principal.IsInRole(WindowsBuiltInRole.Administrator);
+ }
+ catch
+ {
+ return false;
+ }
+ return false;
+ }
}
}
diff --git a/Fo76ini/languages/de-DE.xml b/Fo76ini/languages/de-DE.xml
index 008067f..1418ef4 100644
--- a/Fo76ini/languages/de-DE.xml
+++ b/Fo76ini/languages/de-DE.xml
@@ -6,7 +6,7 @@
If you need help with translating, you can find a guide here:
https://github.com/FelisDiligens/Fallout76-QuickConfiguration/wiki/Translations
-->
-
+
- Mindestens eines der *.ini Dateien ist beschädigt oder enthält einen Syntaxfehler.
-
-Du könntest:
- -> die Fehlermeldung lesen und den Fehler beheben, oder
- -> die ungültige *.ini Datei löschen, Fallout 76 erneut starten, um eine neue, gültige Datei zu generieren
- -> und es dann noch einmal versuchen.
-
-FEHLERMELDUNG:
-{0}
Deine Änderungen wurden gespeichert. Du kannst das Spiel jetzt starten.
Heruntergeladene Sprachdateien: {0}
*.ini Deteien wurden modifiziert, während das Tool läuft.
Beachte: Alle Änderungen werden überschrieben, wenn auf "Anwenden" gedrückt oder Mods verwaltet werden.
Bitte starten Sie das Tool neu, um mit den neuen Werten zu arbeiten.
+ Couldn't set *.ini files to read-only. Try to start the tool with admin rights.
+{0}
+ Mindestens ein Spielprofil wird benötigt.
+ Es konnte keines der üblichen Spielpfade gefunden werden. Bitte wähle den Pfad zum Spiel manuell aus.
+ Möchtest du diesen Pfad anwenden?
+Gefunden: {0}
+
+Drücke "Ja", um den Pfad zu übernehmen; "Nein", um mit der Suche fortzufahren; und "Abbrechen", um die Suche zu unterbrechen.
Möchtest du die Thumbnails wirklich löschen?
Wenn du das nächste Mal auf "Galerie aktualisieren" klickst, wird es erheblich länger dauern, da alle Thumbnails neu generiert werden.
Du kannst jetzt den Abenteuermodus spielen.
@@ -284,8 +284,15 @@ Fehler: {0}
{0}
{0}
{0}
- Mindestens ein Spielprofil wird benötigt.
- Es konnte keines der üblichen Spielpfade gefunden werden. Bitte wähle den Pfad zum Spiel manuell aus.
+ Mindestens eines der *.ini Dateien ist beschädigt oder enthält einen Syntaxfehler.
+
+Du könntest:
+ -> die Fehlermeldung lesen und den Fehler beheben, oder
+ -> die ungültige *.ini Datei löschen, Fallout 76 erneut starten, um eine neue, gültige Datei zu generieren
+ -> und es dann noch einmal versuchen.
+
+FEHLERMELDUNG:
+{0}
Möchtest du ein Backup machen bevor deine Änderungen gespeichert werden?
Drücke "Ja", um ein Backup zu erstellen und zu speichern.
@@ -501,12 +508,14 @@ Funktioniert jedoch nur, wenn das Spiel über das Tool gestartet wird.Wenn diese Option aktiviert ist, werden Mods entfernt, wenn der Nuclear Winter-Modus aktiviert wird.
Speichert den Pfad, von dem Archive2 geladen wird.
Speichert den Pfad, von dem aus 7-Zip geladen wird.
+ Wenn du Mods mit dem 'Vortex' / 'Mod Manager Download' Knopf auf NexusMods herunterlädst,
+wird das Tool die Datei in diesen Ordner speichern.
@@ -516,22 +525,22 @@ Funktioniert jedoch nur, wenn das Spiel über das Tool gestartet wird.
-
+
-
+
-
+
@@ -573,10 +582,10 @@ Funktioniert jedoch nur, wenn das Spiel über das Tool gestartet wird.
-
+
-
+
@@ -655,11 +664,6 @@ Wirkt sich nicht auf gebündelte Archive aus.
-
-
-
-
-