diff --git a/Fo76ini/Fo76ini.csproj b/Fo76ini/Fo76ini.csproj index 743434e..32b6a7c 100644 --- a/Fo76ini/Fo76ini.csproj +++ b/Fo76ini/Fo76ini.csproj @@ -506,6 +506,9 @@ + + + diff --git a/Fo76ini/Forms/FormMain/FormMain.Language.cs b/Fo76ini/Forms/FormMain/FormMain.Language.cs index 28a8317..e12a7c4 100644 --- a/Fo76ini/Forms/FormMain/FormMain.Language.cs +++ b/Fo76ini/Forms/FormMain/FormMain.Language.cs @@ -1,4 +1,7 @@ -namespace Fo76ini +using Fo76ini.Utilities; +using System.Drawing; + +namespace Fo76ini { partial class FormMain { @@ -14,6 +17,9 @@ public void OnLanguageChanged(object sender, TranslationEventArgs e) // TODO: UpdateUI? this.CheckVersion(); + // Set font: + this.labelWelcome.Font = CustomFonts.GetHeaderFont(); + this.Refresh(); // Forces redraw } // TODO: FormMods needs OnLanguageChanged code. diff --git a/Fo76ini/Forms/FormMain/FormMain.cs b/Fo76ini/Forms/FormMain/FormMain.cs index 58042d0..01b5dbd 100644 --- a/Fo76ini/Forms/FormMain/FormMain.cs +++ b/Fo76ini/Forms/FormMain/FormMain.cs @@ -27,8 +27,6 @@ public partial class FormMain : Form private GameInstance game; - public readonly bool FirstStart; - public FormMain() { InitializeComponent(); @@ -82,8 +80,6 @@ public FormMain() // Disable scroll wheel on UI elements to prevent the user from accidentally changing values: Utils.PreventChangeOnMouseWheelForAllElements(this); - this.labelWelcome.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); - } private void FormMain_Load(object sender, EventArgs e) @@ -91,7 +87,7 @@ private void FormMain_Load(object sender, EventArgs e) this.timerCheckFiles.Enabled = true; // Load translations - if (FirstStart) + if (Initialization.FirstStart) Localization.DownloadLanguageFiles(); // Download language on first start! Might hang the program for a while, if the internet connection is bad, though... Localization.GenerateDefaultTemplate(); Localization.LookupLanguages(); diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlCustom.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlCustom.cs index 3c304e3..51f4c39 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlCustom.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlCustom.cs @@ -65,10 +65,7 @@ private void Translation_LanguageChanged(object sender, TranslationEventArgs e) { Translation translation = (Translation)sender; - if (translation.UsesNonLatinCharacters) - this.labelCustomTitle.Font = new Font("Impact", 18, FontStyle.Regular); - else - this.labelCustomTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); + this.labelCustomTitle.Font = CustomFonts.GetHeaderFont(); } #region Event handler diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlGallery.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlGallery.cs index 57aa2f1..d242506 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlGallery.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlGallery.cs @@ -72,10 +72,7 @@ private void Translation_LanguageChanged(object sender, TranslationEventArgs e) { Translation translation = (Translation)sender; - if (translation.UsesNonLatinCharacters) - this.labelGalleryTitle.Font = new Font("Impact", 18, FontStyle.Regular); - else - this.labelGalleryTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); + this.labelGalleryTitle.Font = CustomFonts.GetHeaderFont(); } private void LinkControls() diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlNexusMods.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlNexusMods.cs index 17b8187..008f8b2 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlNexusMods.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlNexusMods.cs @@ -47,10 +47,7 @@ private void Translation_LanguageChanged(object sender, TranslationEventArgs e) { Translation translation = (Translation)sender; - if (translation.UsesNonLatinCharacters) - this.labelNexusTitle.Font = new Font("Impact", 18, FontStyle.Regular); - else - this.labelNexusTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); + this.labelNexusTitle.Font = CustomFonts.GetHeaderFont(); } private void UserControlNexusMods_Load(object sender, EventArgs e) diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.Designer.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.Designer.cs index a08bc7e..93d4774 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.Designer.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.Designer.cs @@ -246,7 +246,7 @@ private void InitializeComponent() // this.labelPipboyColor.AutoSize = true; this.labelPipboyColor.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelPipboyColor.Location = new System.Drawing.Point(97, 13); + this.labelPipboyColor.Location = new System.Drawing.Point(96, 13); this.labelPipboyColor.Name = "labelPipboyColor"; this.labelPipboyColor.Size = new System.Drawing.Size(104, 20); this.labelPipboyColor.TabIndex = 32; diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.cs index f3dc66c..fdc6dfe 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlPipboy.cs @@ -39,10 +39,7 @@ private void Translation_LanguageChanged(object sender, TranslationEventArgs e) { Translation translation = (Translation)sender; - if (translation.UsesNonLatinCharacters) - this.labelPipboyTitle.Font = new Font("Impact", 18, FontStyle.Regular); - else - this.labelPipboyTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); + this.labelPipboyTitle.Font = CustomFonts.GetHeaderFont(); } private void LinkPipboyControls() diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlProfiles.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlProfiles.cs index f59cacd..af831c4 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlProfiles.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlProfiles.cs @@ -61,16 +61,8 @@ private void Translation_LanguageChanged(object sender, TranslationEventArgs e) { Translation translation = (Translation)sender; - if (translation.UsesNonLatinCharacters) - { - this.labelSelectTitle.Font = new Font("Impact", 18, FontStyle.Regular); - this.labelEditTitle.Font = new Font("Impact", 18, FontStyle.Regular); - } - else - { - this.labelSelectTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); - this.labelEditTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); - } + this.labelSelectTitle.Font = CustomFonts.GetHeaderFont(); + this.labelEditTitle.Font = CustomFonts.GetHeaderFont(); } private void OnProfileChanged(object sender, ProfileEventArgs e) diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlSettings.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlSettings.cs index d53303c..9de7150 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlSettings.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlSettings.cs @@ -78,10 +78,7 @@ public void OnLanguageChanged(object sender, TranslationEventArgs e) Translation translation = (Translation)sender; this.labelOutdatedLanguage.Visible = translation.IsOutdated(); - if (translation.UsesNonLatinCharacters) - this.labelSettingsTitle.Font = new Font("Impact", 18, FontStyle.Regular); - else - this.labelSettingsTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); + this.labelSettingsTitle.Font = CustomFonts.GetHeaderFont(); } private void buttonDownloadLanguages_Click(object sender, EventArgs e) diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.Designer.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.Designer.cs index dd2f841..666c2e9 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.Designer.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.Designer.cs @@ -466,7 +466,7 @@ private void InitializeComponent() this.groupBoxGameplay.Controls.Add(this.checkBoxBackpackVisible); this.groupBoxGameplay.Controls.Add(this.labelHighlightCorpses); this.groupBoxGameplay.Controls.Add(this.comboBoxHighlightCorpses); - this.groupBoxGameplay.Location = new System.Drawing.Point(6, 141); + this.groupBoxGameplay.Location = new System.Drawing.Point(9, 144); this.groupBoxGameplay.Name = "groupBoxGameplay"; this.groupBoxGameplay.Size = new System.Drawing.Size(400, 77); this.groupBoxGameplay.TabIndex = 2; @@ -509,7 +509,7 @@ private void InitializeComponent() this.groupBoxDialogue.Controls.Add(this.checkBoxDialogueHistory); this.groupBoxDialogue.Controls.Add(this.checkBoxDialogueSubtitles); this.groupBoxDialogue.Controls.Add(this.checkBoxGeneralSubtitles); - this.groupBoxDialogue.Location = new System.Drawing.Point(6, 227); + this.groupBoxDialogue.Location = new System.Drawing.Point(9, 230); this.groupBoxDialogue.Margin = new System.Windows.Forms.Padding(6); this.groupBoxDialogue.Name = "groupBoxDialogue"; this.groupBoxDialogue.Size = new System.Drawing.Size(400, 167); @@ -602,7 +602,7 @@ private void InitializeComponent() this.groupBoxHUD.Controls.Add(this.comboBoxShowActiveEffectsOnHUD); this.groupBoxHUD.Controls.Add(this.sliderHUDOpacity); this.groupBoxHUD.Controls.Add(this.numHUDOpacity); - this.groupBoxHUD.Location = new System.Drawing.Point(6, 403); + this.groupBoxHUD.Location = new System.Drawing.Point(9, 406); this.groupBoxHUD.Name = "groupBoxHUD"; this.groupBoxHUD.Size = new System.Drawing.Size(400, 387); this.groupBoxHUD.TabIndex = 4; @@ -820,7 +820,7 @@ private void InitializeComponent() // groupBoxLoading // this.groupBoxLoading.Controls.Add(this.checkBoxFasterFadeIn); - this.groupBoxLoading.Location = new System.Drawing.Point(6, 86); + this.groupBoxLoading.Location = new System.Drawing.Point(9, 89); this.groupBoxLoading.Margin = new System.Windows.Forms.Padding(6); this.groupBoxLoading.Name = "groupBoxLoading"; this.groupBoxLoading.Size = new System.Drawing.Size(400, 46); @@ -845,7 +845,7 @@ private void InitializeComponent() this.groupBoxQuests.Controls.Add(this.checkBoxEnableQuestAutoTrackMisc); this.groupBoxQuests.Controls.Add(this.checkBoxEnableQuestAutoTrackSide); this.groupBoxQuests.Controls.Add(this.checkBoxEnableQuestAutoTrackMain); - this.groupBoxQuests.Location = new System.Drawing.Point(6, 799); + this.groupBoxQuests.Location = new System.Drawing.Point(9, 802); this.groupBoxQuests.Margin = new System.Windows.Forms.Padding(6); this.groupBoxQuests.Name = "groupBoxQuests"; this.groupBoxQuests.Size = new System.Drawing.Size(400, 142); @@ -907,7 +907,7 @@ private void InitializeComponent() // this.groupBoxMainMenu.Controls.Add(this.checkBoxSkipSplash); this.groupBoxMainMenu.Controls.Add(this.checkBoxSkipIntroVideos); - this.groupBoxMainMenu.Location = new System.Drawing.Point(6, 6); + this.groupBoxMainMenu.Location = new System.Drawing.Point(9, 9); this.groupBoxMainMenu.Margin = new System.Windows.Forms.Padding(6); this.groupBoxMainMenu.Name = "groupBoxMainMenu"; this.groupBoxMainMenu.Size = new System.Drawing.Size(400, 68); @@ -1855,7 +1855,7 @@ private void InitializeComponent() // this.groupBoxAudio.Controls.Add(this.checkBoxEnableAudio); this.groupBoxAudio.Controls.Add(this.checkBoxMainMenuMusic); - this.groupBoxAudio.Location = new System.Drawing.Point(6, 387); + this.groupBoxAudio.Location = new System.Drawing.Point(9, 390); this.groupBoxAudio.Margin = new System.Windows.Forms.Padding(6); this.groupBoxAudio.Name = "groupBoxAudio"; this.groupBoxAudio.Size = new System.Drawing.Size(400, 81); @@ -1890,7 +1890,7 @@ private void InitializeComponent() this.groupBoxVoice.Controls.Add(this.comboBoxVoiceChatMode); this.groupBoxVoice.Controls.Add(this.labelVoiceChatMode); this.groupBoxVoice.Controls.Add(this.checkBoxPushToTalk); - this.groupBoxVoice.Location = new System.Drawing.Point(6, 480); + this.groupBoxVoice.Location = new System.Drawing.Point(9, 483); this.groupBoxVoice.Margin = new System.Windows.Forms.Padding(6); this.groupBoxVoice.Name = "groupBoxVoice"; this.groupBoxVoice.Size = new System.Drawing.Size(400, 89); @@ -1955,7 +1955,7 @@ private void InitializeComponent() this.groupBoxAudioVolume.Controls.Add(this.labelAudiofVal4); this.groupBoxAudioVolume.Controls.Add(this.labelAudiofVal3); this.groupBoxAudioVolume.Controls.Add(this.numAudiofVal3); - this.groupBoxAudioVolume.Location = new System.Drawing.Point(6, 6); + this.groupBoxAudioVolume.Location = new System.Drawing.Point(9, 9); this.groupBoxAudioVolume.Margin = new System.Windows.Forms.Padding(6); this.groupBoxAudioVolume.Name = "groupBoxAudioVolume"; this.groupBoxAudioVolume.Size = new System.Drawing.Size(400, 369); @@ -2405,7 +2405,7 @@ private void InitializeComponent() this.groupBoxGamepad.Controls.Add(this.checkBoxAimAssist); this.groupBoxGamepad.Controls.Add(this.checkBoxGamepadEnabled); this.groupBoxGamepad.Controls.Add(this.checkBoxGamepadRumble); - this.groupBoxGamepad.Location = new System.Drawing.Point(6, 269); + this.groupBoxGamepad.Location = new System.Drawing.Point(9, 272); this.groupBoxGamepad.Margin = new System.Windows.Forms.Padding(6); this.groupBoxGamepad.Name = "groupBoxGamepad"; this.groupBoxGamepad.Size = new System.Drawing.Size(400, 105); @@ -2461,7 +2461,7 @@ private void InitializeComponent() this.groupBoxMouse.Controls.Add(this.numMouseSensitivityX); this.groupBoxMouse.Controls.Add(this.labelMouseSensitivityX); this.groupBoxMouse.Controls.Add(this.checkBoxFixMouseSensitivity); - this.groupBoxMouse.Location = new System.Drawing.Point(6, 6); + this.groupBoxMouse.Location = new System.Drawing.Point(9, 9); this.groupBoxMouse.Margin = new System.Windows.Forms.Padding(6); this.groupBoxMouse.Name = "groupBoxMouse"; this.groupBoxMouse.Size = new System.Drawing.Size(400, 251); @@ -2638,7 +2638,7 @@ private void InitializeComponent() this.groupBoxCameraPosition.Controls.Add(this.buttonCameraPositionReset); this.groupBoxCameraPosition.Controls.Add(this.checkBoxbApplyCameraNodeAnimations); this.groupBoxCameraPosition.Controls.Add(this.groupBoxUnarmedCameraPosition); - this.groupBoxCameraPosition.Location = new System.Drawing.Point(6, 867); + this.groupBoxCameraPosition.Location = new System.Drawing.Point(9, 862); this.groupBoxCameraPosition.Margin = new System.Windows.Forms.Padding(6); this.groupBoxCameraPosition.Name = "groupBoxCameraPosition"; this.groupBoxCameraPosition.Size = new System.Drawing.Size(400, 588); @@ -3052,7 +3052,7 @@ private void InitializeComponent() // this.groupBoxFOVMore.Controls.Add(this.labelADSFOV); this.groupBoxFOVMore.Controls.Add(this.numADSFOV); - this.groupBoxFOVMore.Location = new System.Drawing.Point(6, 423); + this.groupBoxFOVMore.Location = new System.Drawing.Point(9, 418); this.groupBoxFOVMore.Margin = new System.Windows.Forms.Padding(6); this.groupBoxFOVMore.Name = "groupBoxFOVMore"; this.groupBoxFOVMore.Size = new System.Drawing.Size(400, 52); @@ -3108,7 +3108,7 @@ private void InitializeComponent() this.groupBoxSelfieCamera.Controls.Add(this.numericUpDownPhotomodeTranslationSpeed); this.groupBoxSelfieCamera.Controls.Add(this.trackBarPhotomodeTranslationSpeed); this.groupBoxSelfieCamera.Controls.Add(this.labelPhotomodeTranslationSpeed); - this.groupBoxSelfieCamera.Location = new System.Drawing.Point(6, 632); + this.groupBoxSelfieCamera.Location = new System.Drawing.Point(9, 627); this.groupBoxSelfieCamera.Margin = new System.Windows.Forms.Padding(6); this.groupBoxSelfieCamera.Name = "groupBoxSelfieCamera"; this.groupBoxSelfieCamera.Size = new System.Drawing.Size(400, 134); @@ -3260,7 +3260,7 @@ private void InitializeComponent() // this.groupBoxIdleCamera.Controls.Add(this.checkBoxForceVanityMode); this.groupBoxIdleCamera.Controls.Add(this.checkBoxVanityMode); - this.groupBoxIdleCamera.Location = new System.Drawing.Point(6, 778); + this.groupBoxIdleCamera.Location = new System.Drawing.Point(9, 773); this.groupBoxIdleCamera.Margin = new System.Windows.Forms.Padding(6); this.groupBoxIdleCamera.Name = "groupBoxIdleCamera"; this.groupBoxIdleCamera.Size = new System.Drawing.Size(400, 77); @@ -3303,7 +3303,7 @@ private void InitializeComponent() this.groupBoxCameraDistance.Controls.Add(this.labelCameraDistanceMaximum); this.groupBoxCameraDistance.Controls.Add(this.labelCameraDistanceMinimum); this.groupBoxCameraDistance.Controls.Add(this.sliderCameraDistanceMinimum); - this.groupBoxCameraDistance.Location = new System.Drawing.Point(6, 487); + this.groupBoxCameraDistance.Location = new System.Drawing.Point(9, 482); this.groupBoxCameraDistance.Margin = new System.Windows.Forms.Padding(6); this.groupBoxCameraDistance.Name = "groupBoxCameraDistance"; this.groupBoxCameraDistance.Size = new System.Drawing.Size(400, 133); @@ -3446,10 +3446,10 @@ private void InitializeComponent() this.groupBoxFieldOfView.Controls.Add(this.pictureBoxFOVPreview); this.groupBoxFieldOfView.Controls.Add(this.sliderFOV); this.groupBoxFieldOfView.Controls.Add(this.numFOV); - this.groupBoxFieldOfView.Location = new System.Drawing.Point(6, 6); - this.groupBoxFieldOfView.Margin = new System.Windows.Forms.Padding(6); + this.groupBoxFieldOfView.Location = new System.Drawing.Point(9, 9); + this.groupBoxFieldOfView.Margin = new System.Windows.Forms.Padding(9); this.groupBoxFieldOfView.Name = "groupBoxFieldOfView"; - this.groupBoxFieldOfView.Size = new System.Drawing.Size(626, 405); + this.groupBoxFieldOfView.Size = new System.Drawing.Size(619, 394); this.groupBoxFieldOfView.TabIndex = 0; this.groupBoxFieldOfView.TabStop = false; this.groupBoxFieldOfView.Text = "Field of View"; @@ -3462,7 +3462,7 @@ private void InitializeComponent() this.pictureBoxFOVPreview.BackColor = System.Drawing.Color.Gray; this.pictureBoxFOVPreview.Location = new System.Drawing.Point(0, 45); this.pictureBoxFOVPreview.Name = "pictureBoxFOVPreview"; - this.pictureBoxFOVPreview.Size = new System.Drawing.Size(626, 360); + this.pictureBoxFOVPreview.Size = new System.Drawing.Size(619, 349); this.pictureBoxFOVPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBoxFOVPreview.TabIndex = 53; this.pictureBoxFOVPreview.TabStop = false; @@ -3477,7 +3477,7 @@ private void InitializeComponent() this.sliderFOV.Maximum = 24; this.sliderFOV.Minimum = 14; this.sliderFOV.Name = "sliderFOV"; - this.sliderFOV.Size = new System.Drawing.Size(540, 45); + this.sliderFOV.Size = new System.Drawing.Size(533, 45); this.sliderFOV.TabIndex = 0; this.sliderFOV.TickStyle = System.Windows.Forms.TickStyle.None; this.sliderFOV.Value = 24; @@ -3490,7 +3490,7 @@ private void InitializeComponent() 0, 0, 0}); - this.numFOV.Location = new System.Drawing.Point(552, 19); + this.numFOV.Location = new System.Drawing.Point(545, 19); this.numFOV.Maximum = new decimal(new int[] { 180, 0, diff --git a/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.cs b/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.cs index f104819..55e29ac 100644 --- a/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.cs +++ b/Fo76ini/Forms/FormMain/Tabs/UserControlTweaks.cs @@ -242,11 +242,7 @@ private void Translation_LanguageChanged(object sender, TranslationEventArgs e) { LoadTextResources(); - Translation translation = (Translation)sender; - if (translation.UsesNonLatinCharacters) - this.labelTweaksTitle.Font = new Font("Impact", 18, FontStyle.Regular); - else - this.labelTweaksTitle.Font = new Font(CustomFonts.Overseer, 20, FontStyle.Regular); + this.labelTweaksTitle.Font = CustomFonts.GetHeaderFont(); } private void UserControlTweaks_Load(object sender, EventArgs e) diff --git a/Fo76ini/Forms/FormMain/UserControlSideNav.cs b/Fo76ini/Forms/FormMain/UserControlSideNav.cs index 85772ae..3a1b41d 100644 --- a/Fo76ini/Forms/FormMain/UserControlSideNav.cs +++ b/Fo76ini/Forms/FormMain/UserControlSideNav.cs @@ -20,6 +20,8 @@ public UserControlSideNav() InitializeComponent(); ProfileManager.ProfileChanged += ProfileManager_ProfileChanged; + Translation.LanguageChanged += OnLanguageChanged; + labelLogo.Font = new Font(CustomFonts.Overseer, labelLogo.Font.Size); // Add control elements to blacklist: @@ -30,6 +32,31 @@ public UserControlSideNav() this.buttonHome.Highlight = true; } + private void OnLanguageChanged(object sender, TranslationEventArgs e) + { + // Change caption + GameInstance game = ProfileManager.SelectedGame; + this.buttonProfile.Text = game.Title + "\n" + Localization.GetString("gameEdition") + ": " + game.GetCaption() + ""; + + // Change font size + Font smallButtonFont; + switch (Localization.Locale) + { + case "ru-RU": + smallButtonFont = new Font(buttonApply.Font.FontFamily, 8); + break; + case "en-US": + smallButtonFont = new Font(buttonApply.Font.FontFamily, 10); + break; + default: + smallButtonFont = new Font(buttonApply.Font.FontFamily, 9); + break; + } + this.buttonPlay.Font = smallButtonFont; + this.buttonApply.Font = smallButtonFont; + this.buttonBrowse.Font = smallButtonFont; + } + private void ProfileManager_ProfileChanged(object sender, ProfileEventArgs e) { // Get profile diff --git a/Fo76ini/Forms/FormMods/FormMods.Designer.cs b/Fo76ini/Forms/FormMods/FormMods.Designer.cs index 47c53d2..39e54e1 100644 --- a/Fo76ini/Forms/FormMods/FormMods.Designer.cs +++ b/Fo76ini/Forms/FormMods/FormMods.Designer.cs @@ -905,11 +905,14 @@ private void InitializeComponent() 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.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.textBoxResourceList.Location = new System.Drawing.Point(6, 37); this.textBoxResourceList.Multiline = true; this.textBoxResourceList.Name = "textBoxResourceList"; + this.textBoxResourceList.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.textBoxResourceList.Size = new System.Drawing.Size(312, 380); this.textBoxResourceList.TabIndex = 54; + this.textBoxResourceList.WordWrap = false; // // buttonModsCleanList // diff --git a/Fo76ini/Interface/Translation.cs b/Fo76ini/Interface/Translation.cs index 2e96550..e52fbb3 100644 --- a/Fo76ini/Interface/Translation.cs +++ b/Fo76ini/Interface/Translation.cs @@ -294,14 +294,6 @@ public class Translation private string fileName; private string filePath; - public bool UsesNonLatinCharacters - { - get - { - return NonLatinISOs.Contains(this.ISO); - } - } - /// /// Add event handler to reload UI elements after the program has been translated to another language. @@ -313,18 +305,6 @@ public bool UsesNonLatinCharacters /// public static List BlackList = new List{}; - public static readonly List NonLatinISOs = new List - { - // I'll add more when people translate other languages. - - // Russian - "ru-RU", - - // Chinese - "zh-CN", - "zh-TW" - }; - private Dictionary dictText = new Dictionary(); private Dictionary dictTooltip = new Dictionary(); diff --git a/Fo76ini/Properties/Resources.Designer.cs b/Fo76ini/Properties/Resources.Designer.cs index 682dea0..b0ad085 100644 --- a/Fo76ini/Properties/Resources.Designer.cs +++ b/Fo76ini/Properties/Resources.Designer.cs @@ -870,6 +870,16 @@ internal static System.Drawing.Bitmap quickboy_preview_screen { } } + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] RobotoCondensed_Bold { + get { + object obj = ResourceManager.GetObject("RobotoCondensed_Bold", resourceCulture); + return ((byte[])(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Fo76ini/Properties/Resources.resx b/Fo76ini/Properties/Resources.resx index bca8572..7018a60 100644 --- a/Fo76ini/Properties/Resources.resx +++ b/Fo76ini/Properties/Resources.resx @@ -415,4 +415,7 @@ ..\Resources\BTN_Thumb_Blue.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\RobotoCondensed-Bold.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/Fo76ini/Resources/RobotoCondensed-Bold.ttf b/Fo76ini/Resources/RobotoCondensed-Bold.ttf new file mode 100644 index 0000000..f1de58f Binary files /dev/null and b/Fo76ini/Resources/RobotoCondensed-Bold.ttf differ diff --git a/Fo76ini/Shared.cs b/Fo76ini/Shared.cs index aadc6b4..8543ac1 100644 --- a/Fo76ini/Shared.cs +++ b/Fo76ini/Shared.cs @@ -10,7 +10,7 @@ namespace Fo76ini /// public class Shared { - public const string VERSION = "1.11.0"; + public const string VERSION = "1.11.1"; public static string LatestVersion = null; public static readonly string AppInstallationFolder = Directory.GetParent(Application.ExecutablePath).ToString(); diff --git a/Fo76ini/Tweaks/Pipboy/Colors/QuickboyColorTweak.cs b/Fo76ini/Tweaks/Pipboy/Colors/QuickboyColorTweak.cs index c65b088..babe40e 100644 --- a/Fo76ini/Tweaks/Pipboy/Colors/QuickboyColorTweak.cs +++ b/Fo76ini/Tweaks/Pipboy/Colors/QuickboyColorTweak.cs @@ -14,7 +14,7 @@ public class QuickboyColorTweak : ITweak, ITweakInfo public WarnLevel WarnLevel => WarnLevel.None; - public string AffectedFiles => "Fallout76Prefs.ini"; + public string AffectedFiles => "Fallout76Prefs.ini, Fallout76Custom.ini"; public string AffectedValues => String.Join( Environment.NewLine, @@ -46,6 +46,9 @@ public void SetValue(Color value) IniFiles.F76Prefs.Set("Pipboy", "fQuickBoyEffectColorR", r); IniFiles.F76Prefs.Set("Pipboy", "fQuickBoyEffectColorG", g); IniFiles.F76Prefs.Set("Pipboy", "fQuickBoyEffectColorB", b); + IniFiles.F76Custom.Set("Pipboy", "fQuickBoyEffectColorR", r); + IniFiles.F76Custom.Set("Pipboy", "fQuickBoyEffectColorG", g); + IniFiles.F76Custom.Set("Pipboy", "fQuickBoyEffectColorB", b); } public void ResetValue() diff --git a/Fo76ini/Utilities/CustomFonts.cs b/Fo76ini/Utilities/CustomFonts.cs index c7c9b8f..516aa2c 100644 --- a/Fo76ini/Utilities/CustomFonts.cs +++ b/Fo76ini/Utilities/CustomFonts.cs @@ -20,18 +20,54 @@ public static class CustomFonts public static void Register() { InitCustomLabelFont(Resources.overseer); + InitCustomLabelFont(Resources.RobotoCondensed_Bold); + } + + /// + /// Get header font depending on which language is selected. + /// + public static Font GetHeaderFont() + { + return GetHeaderFont(Localization.Locale); + } + + /// + /// Get header font depending on which language is given. + /// + public static Font GetHeaderFont(string ISO) + { + switch (ISO) + { + case "ru-RU": + return new Font(RobotoCondensed, 16, FontStyle.Bold); + case "zh-CN": + case "zh-TW": + return new Font("Microsoft JhengHei", 18, FontStyle.Bold); + default: + return new Font(Overseer, 20, FontStyle.Regular); + } } public static FontFamily Overseer { get { - if (pfc.Families.Length < 1) + if (pfc.Families.Length < 2) return FallbackFont; return pfc.Families[0]; } } + public static FontFamily RobotoCondensed + { + get + { + if (pfc.Families.Length < 2) + return FallbackFont; + return pfc.Families[1]; + } + } + private static FontFamily FallbackFont { get { return FontFamily.GenericSansSerif; } diff --git a/VERSION b/VERSION index 1cac385..720c738 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.11.0 +1.11.1 diff --git a/What's new.html b/What's new.html index 0f6ab6c..48f7df5 100644 --- a/What's new.html +++ b/What's new.html @@ -32,6 +32,29 @@ +

What's new in v1.11.1?

+

This is a small update to address some bugs.

+

Changelog:

+
+Click to expand + +
    +
  • The textbox for the resource list in the mod manager has scrollbars +now.
  • +
  • Fix: The Quick-Boy color wouldn't be applied if values in the +Fallout76Custom.ini override them.
  • +
  • Fixed small issue that would prevent the tool from downloading +translations on first start.
  • +
  • Translations: +
      +
    • The font for the titles changes depending on the selected language. +(Russian uses Roboto, Chinese uses Microsoft JhengHei)
    • +
  • +
  • Minor changes
  • +
+
+ +

What’s new in v1.11.0? - The "fresh coat of paint" update

@@ -49,7 +72,6 @@

What’s new

As always, you can read the changelog below.

Happy hunting,

~ datasnake

-

Changelog:

Click to expand diff --git a/What's new.md b/What's new.md index 6140911..090c821 100644 --- a/What's new.md +++ b/What's new.md @@ -1,3 +1,22 @@ +### What's new in v1.11.1? + +This is a small update to address some bugs. + +**Changelog:** +
+Click to expand + +- The textbox for the resource list in the mod manager has scrollbars now. +- Fix: The Quick-Boy color wouldn't be applied if values in the Fallout76Custom.ini override them. +- Fixed small issue that would prevent the tool from downloading translations on first start. +- Translations: + - The font for the titles changes depending on the selected language. (Russian uses Roboto, Chinese uses Microsoft JhengHei) +- Minor changes + +
+ +--- + ### What’s new in v1.11.0? - The "fresh coat of paint" update > **If you do not like the changes, you can download v1.10 from NexusMods or GitHub.** @@ -18,8 +37,6 @@ Happy hunting, ~ datasnake ---- - **Changelog:**
Click to expand diff --git a/What's new.rtf b/What's new.rtf index 3b9692a..d083005 100644 --- a/What's new.rtf +++ b/What's new.rtf @@ -1,309 +1,72 @@ -{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi31507\deflang1031\deflangfe1031\themelang1031\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f4\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604020202020204}Helvetica;} -{\f5\fbidi \fmodern\fcharset0\fprq1{\*\panose 02070409020205020404}Courier{\*\falt Courier New};}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} -{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0302020204030204}Calibri Light;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f1194\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\f1195\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f1197\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f1198\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f1199\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\f1200\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f1201\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f1202\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f1234\fbidi \fswiss\fcharset238\fprq2 Helvetica CE;} -{\f1235\fbidi \fswiss\fcharset204\fprq2 Helvetica Cyr;}{\f1237\fbidi \fswiss\fcharset161\fprq2 Helvetica Greek;}{\f1238\fbidi \fswiss\fcharset162\fprq2 Helvetica Tur;}{\f1239\fbidi \fswiss\fcharset177\fprq2 Helvetica (Hebrew);} -{\f1240\fbidi \fswiss\fcharset178\fprq2 Helvetica (Arabic);}{\f1241\fbidi \fswiss\fcharset186\fprq2 Helvetica Baltic;}{\f1242\fbidi \fswiss\fcharset163\fprq2 Helvetica (Vietnamese);}{\f1534\fbidi \froman\fcharset238\fprq2 Cambria Math CE;} -{\f1535\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f1537\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f1538\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f1541\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;} -{\f1542\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Calibri Light CE;} -{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Calibri Light Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Calibri Light Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Calibri Light Tur;} -{\fhimajor\f31533\fbidi \fswiss\fcharset177\fprq2 Calibri Light (Hebrew);}{\fhimajor\f31534\fbidi \fswiss\fcharset178\fprq2 Calibri Light (Arabic);}{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Calibri Light Baltic;} -{\fhimajor\f31536\fbidi \fswiss\fcharset163\fprq2 Calibri Light (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;} -{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\fhiminor\f31573\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);} -{\fhiminor\f31574\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);} -{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0; -\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128; -\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;\caccentone\ctint255\cshade255\red68\green114\blue196;}{\*\defchp \fs22\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap \ql \li0\ri0\sa160\sl259\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 -\ltrch\fcs0 \fs22\lang1031\langfe1031\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1031\langfenp1031 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 \fs22\lang1031\langfe1031\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp1031\langfenp1031 \snext11 \ssemihidden \sunhideused -Normal Table;}}{\*\rsidtbl \rsid5839200\rsid6772543\rsid10909768\rsid15074035}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\operator Tamara Emig} -{\creatim\yr2022\mo7\dy25\hr12\min57}{\revtim\yr2022\mo7\dy25\hr12\min58}{\version4}{\edmins0}{\nofpages2}{\nofwords399}{\nofchars2516}{\nofcharsws2910}{\vern51}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} -\paperw12240\paperh15840\margl1417\margr1417\margt1417\margb1134\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\hyphhotz425\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120 -\dghorigin1701\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot10909768 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}} -{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}} -{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9 -\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa180\widctlpar\wrapdefault\faauto\outlinelevel2\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 -\fs22\lang1031\langfe1031\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1031\langfenp1031 {\rtlch\fcs1 \ab\af4\afs28 \ltrch\fcs0 \b\f4\fs28\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid10909768 \hich\af4\dbch\af31505\loch\f4 What -\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s new in v1.11.0? - The \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 fresh coat of paint\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 update +{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}} +{\colortbl;\red255\green0\blue0;\red0\green0\blue255;} +\widowctrl\hyphauto -\par }\pard \ltrpar\ql \li720\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\cf19\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid15074035 \hich\af4\dbch\af31505\loch\f4 -If you do not like the changes, you can download v1.10 from NexusMods or GitHub. -\par }\pard \ltrpar\ql \li0\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid10909768 \hich\af4\dbch\af31505\loch\f4 Hello everyone, -\par \hich\af4\dbch\af31505\loch\f4 this up\hich\af4\dbch\af31505\loch\f4 date is a rather large one - at least in terms of UI changes.\line }{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 -\hich\af4\dbch\af31505\loch\f4 I decided to rearrange everything and add a sidebar for navigation. -\par \hich\af4\dbch\af31505\loch\f4 I tested almost every tweak and changed/removed old tweaks as well as adding a few new ones.\line The mod manager has two new optio\hich\af4\dbch\af31505\loch\f4 -ns. Also, I fixed some smaller bugs. Just explore a little, if you like to. -\par \hich\af4\dbch\af31505\loch\f4 As always, you can read the changelog below. -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 Happy hunting, -\par }\pard \ltrpar\ql \li0\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid6772543 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid6772543 \hich\af4\dbch\af31505\loch\f4 ~ }{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 -\f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 datasnake -\par }\pard \ltrpar\qc \li0\ri0\sa180\widctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \emdash \emdash \emdash \emdash -\emdash -\par }\pard \ltrpar\ql \li0\ri0\widctlpar\wrapdefault\faauto\rin0\lin0\itap0 {\rtlch\fcs1 \ab\af4\afs24 \ltrch\fcs0 \b\f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 Changelog:}{\rtlch\fcs1 \af4\afs24 -\ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 General: -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Most notable change: Added a side navigation that replaces the t\hich\af4\dbch\af31505\loch\f4 op panel, the bottom status panel, and the tabs. -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Added a \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Hero\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 banner to the \loch\af4\dbch\af31505\hich\f4 \'93 -\hich\af4\dbch\af31505\loch\f4 Home\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 page -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Moved \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Tweaks\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 into their own page -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Removed \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Settings\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 window; moved \loch\af4\dbch\af31505\hich\f4 \'93 -\hich\af4\dbch\af31505\loch\f4 Settings\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 , \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Profiles\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 , and -\loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 NexusMods\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 into their own page -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \hich\af4\dbch\af31505\loch\f4 Reworked the profile manager -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Added line numbers, syntax highlighting, autocompletion and hotkeys to the \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Custom\loch\af4\dbch\af31505\hich\f4 \'94 -\hich\af4\dbch\af31505\loch\f4 page\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s textbox -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Replaced the awful }{\rtlch\fcs1 \af5\afs24 \ltrch\fcs0 \f5\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af5\dbch\af31505\loch\f5 FolderBrowserDialog}{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 -\f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 with a proper dialog that let\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s you choose a folder more comfortably. -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 Tweaks: -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Twe -\hich\af4\dbch\af31505\loch\f4 aks are now color-coded -\par }\pard \ltrpar\ql \fi-360\li1080\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin1080\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 -Added Info about color-codes and tool tips -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Reworked tweaks: -\par }\pard \ltrpar\ql \fi-360\li1080\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin1080\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 -Added some missing tweaks from the ingame settings -\par \bullet \tab \hich\af4\dbch\af31505\loch\f4 Added Screen Space Reflections and Blood Splatter to Graphics tweaks -\par }\pard \ltrpar\ql \fi-360\li1440\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin1440\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab -\loch\f4 Added fix for black/invisible water -\par }\pard \ltrpar\ql \fi-360\li1080\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin1080\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 Remo -\hich\af4\dbch\af31505\loch\f4 ved some tweaks that didn\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 t do anything -\par }\pard \ltrpar\ql \fi-360\li1080\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin1080\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 -Changed some tweaks -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Added FOV preview -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Removed the \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Danger Zone\loch\af4\dbch\af31505\hich\f4 \'94 -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 *.ini files are parsed differently now: -\par }\pard \ltrpar\ql \fi-360\li1080\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin1080\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 -Comments can now be in-line and begin with }{\rtlch\fcs1 \af5\afs24 \ltrch\fcs0 \f5\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af5\dbch\af31505\loch\f5 ";"}{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 -\f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 (semicolon) or }{\rtlch\fcs1 \af5\afs24 \ltrch\fcs0 \f5\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 -\hich\af5\dbch\af31505\loch\f5 "#"}{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 (hash) -\par }\pard \ltrpar\ql \fi-360\li1440\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin1440\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab -\hich\af4\dbch\af31505\loch\f4 This might break the s76UserName and s76Password text fields. -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 Pip-Boy: -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Added a few more Pip-Boy color presets -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Added HEX codes to Pip-Boy tab -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Fixed Quick-Boy color not applying ingame -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 Profiles: - -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -You can now change the path where the *.ini files a\hich\af4\dbch\af31505\loch\f4 re stored. -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 Mod manager: - -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Fixed: \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Import installed mods\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 importing already managed mods. -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Added an option to create symlinks when deploying. (Experimental feature) -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Added an option to put bundled archives last in the load order. -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Placed \loch\af4\dbch\af31505\hich\f4 \'93\hich\af4\dbch\af31505\loch\f4 Notes\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 under \loch\af4\dbch\af31505\hich\f4 \'93 -\hich\af4\dbch\af31505\loch\f4 Installation options\loch\af4\dbch\af31505\hich\f4 \'94\hich\af4\dbch\af31505\loch\f4 in mod manager\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s side panel -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -Added a button to open the folder of a mod in mod manager\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s side panel -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 -Minor changes / fixes -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab -\hich\af4\dbch\af31505\loch\f4 Added missing messagebox strings when you picked the wrong game path. -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Added missing messagebox strings when you delete photos in the gallery. -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 Made some UI elements that were previously untranslatable, translatable. -\par \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 When picking the game path, you now\hich\af4\dbch\af31505\loch\f4 browse for the folder instead of the *.exe file. -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -and a few more. -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 -Removed backwards-compatibility\loch\af4\dbch\af31505\hich\f4 \'85 -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab -\loch\af4\dbch\af31505\hich\f4 \'85\hich\af4\dbch\af31505\loch\f4 to v1.8\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s Mod Manager -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab -\loch\af4\dbch\af31505\hich\f4 \'85\hich\af4\dbch\af31505\loch\f4 to v1.8\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 s Profiles -\par }\pard \ltrpar\ql \fi-360\li360\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin360\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \bullet \tab \hich\af4\dbch\af31505\loch\f4 Known issues: - -\par }\pard \ltrpar\ql \fi-360\li720\ri0\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -The scroll whell on Windows 7 doesn\loch\af4\dbch\af31505\hich\f4 \rquote \hich\af4\dbch\af31505\loch\f4 t always work properly due to how focus works in o\hich\af4\dbch\af31505\loch\f4 lder Windows versions. -\par }\pard \ltrpar\ql \fi-360\li720\ri0\sa180\widctlpar\tx360\wrapdefault\faauto\rin0\lin720\itap0 {\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \loch\af4\dbch\af31505\hich\f4 \endash \tab \loch\f4 -If a password written into [Login]s76Password contains }{\rtlch\fcs1 \af5\afs24 \ltrch\fcs0 \f5\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af5\dbch\af31505\loch\f5 ";"}{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 -\f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 or }{\rtlch\fcs1 \af5\afs24 \ltrch\fcs0 \f5\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af5\dbch\af31505\loch\f5 "#"}{ -\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 \f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 \hich\af4\dbch\af31505\loch\f4 , it will be truncated.}{\rtlch\fcs1 \af4\afs24 \ltrch\fcs0 -\f4\fs24\lang1033\langfe1031\langnp1033\insrsid5839200\charrsid6772543 -\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a -9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad -5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 -b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 -0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 -a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f -c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 -0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 -a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 -6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b -4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b -4757e8d3f729e245eb2b260a0238fd010000ffff0300504b030414000600080000002100a4d06d8592070000c3200000160000007468656d652f7468656d652f -7468656d65312e786d6cec59cd8b1bc915bf07f23f347d97f5d5ad8fc1f2a24fcfda33b6b164873dd648a5eef2547789aad28cc56208de532e81c026e49085bd -ed21842cecc22eb9e48f31d8249b3f22afaa5bdd5552c99e191c3061463074977eefd5afde7bf5de53d5ddcf5e26d4bbc05c1096f6fcfa9d9aefe174ce16248d -7afeb3d9a4d2f13d2151ba4094a5b8e76fb0f03fbbf7eb5fdd454732c609f6403e1547a8e7c752ae8eaa5531876124eeb0154ee1bb25e30992f0caa3ea82a34b -d09bd06aa3566b55134452df4b51026a1f2f97648efd7b5bb5630aba5329d4c09cf2a9528af7b18bf3ba42888d1852ee5d20daf3618605bb9ce197d2f7281212 -bee8f935fde757efddada2a35c88ca03b286dc44ffe572b9c0e2bca1e7e4d1593169108441ab5fe8d7002af771e3f6b8356e15fa3400cde7b0d28c8badb3dd18 -0639d600658f0edda3f6a859b7f086fee61ee77ea83e165e8332fdc11e7e321982152dbc0665f8700f1f0eba8391ad5f83327c6b0fdfaef54741dbd2af413125 -e9f91eba16b69ac3ed6a0bc892d16327bc1b06937623575ea2201a8ae852532c592a0fc55a825e303e018002522449eac9cd0a2fd11ce277882839e3c43b2151 -0c81b7422913305c6bd426b526fc579f403f698fa2238c0c69c50b9888bd21c5c713734e56b2e73f00adbe0179fbf3cf6f5efff8e6f54f6fbefaeacdebbfe773 -6b5596dc314a2353ee97effef09f6f7eebfdfb876f7ff9fa8fd9d4bb7861e2dffded77effef1cff7a9871597a678fba7efdffdf8fddb3ffffe5f7ffddaa1bdcf -d199099f91040bef11bef49eb20416e8e08fcff8f524663122a6443f8d044a919ac5a17f2c630bfd68832872e006d8b6e3730ea9c605bcbf7e61119ec67c2d89 -43e3c338b180a78cd101e34e2b3c547319669eadd3c83d395f9bb8a7085db8e61ea2d4f2f278bd821c4b5c2a8731b6683ea1289528c229969efa8e9d63ec58dd -178458763d2573ce045b4aef0be20d10719a6446ceac682a858e49027ed9b80882bf2ddb9c3ef7068cba563dc2173612f606a20ef2334c2d33de476b891297ca -194aa869f013246317c9e986cf4ddc5848f0748429f3c60b2c844be63187f51a4e7f0869c6edf653ba496c2497e4dca5f30431662247ec7c18a364e5c24e491a -9bd8cfc5398428f29e30e9829f327b87a877f0034a0fbafb39c196bb3f9c0d9e418635299501a2be5973872fef6366c5ef74439708bb524d9f27568aed73e28c -8ec13ab242fb04638a2ed10263efd9e70e0603b6b26c5e927e10435639c6aec07a80ec5855ef2916d8d3cdcd7e9e3c21c20ad9298ed8013ea79b9dc4b3416982 -f821cd8fc0eba6cdc750ea1257003ca6f37313f88840f707f1e234ca63013a8ce03ea8f5498cac02a6de853b5e37dcf2df55f618eccb17168d2bec4b90c1d796 -81c46ecabcd7363344ad09ca809921e8325ce916442cf79722aab86ab1b5536e696fdad20dd01d594d4f42d20f76403bbd4ff8bfeb7da0c378fb976f1c9bede3 -f43b6ec556b2ba66a77328991ceff4378770bb5dcd90f105f9f49b9a115aa74f30d491fd8c75dbd3dcf634feff7d4f73683fdf763287fa8ddb4ec6870ee3b693 -c90f573e4e2753362fd0d7a8038feca0471ffb24074f7d9684d2a9dc507c22f4c18f80df338b090c2a397dd6898b53c0550c8faaccc104162ee248cb789cc9df -10194f63b482d3a1baaf944422571d096fc5041c1ae961a76e85a7ebe4942db2c3ce7a5d1d6c66955520598ed7c2621c0eaa64866eb5cb03bc42bd661be983d6 -2d01257b1d12c6643689a683447b3ba88ca48f75c1680e127a651f8545d7c1a2a3d46f5db5c702a8155e811fdc1efc4ceff96100222004e771d09c2f949f3257 -6fbdab9df9313d7dc89856044083bd8d80d2d35dc5f5e0f2d4eab250bb82a72d1246b8d924b46574832762f8199c47a71abd0a8debfaba5bbad4a2a74ca1e783 -d02a69b43bef6371535f83dc6e6ea0a9992968ea5df6fc5633849099a355cf5fc2a1313c262b881da17e73211ac19dcb5cf26cc3df24b3acb8902324e2cce03a -e964d9202112738f92a4e7abe5176ea0a9ce219a5bbd0109e19325d785b4f2a99103a7db4ec6cb259e4bd3edc688b274f60a193ecb15ce6fb5f8cdc14a92adc1 -ddd37871e99dd1357f8a20c4c2765d19704104dc1dd4336b2e085c861589ac8cbf9dc294a75df3364ac750368ee82a46794531937906d7a9bca0a3df0a1b186f -f99ac1a08649f2427816a9026b1ad5aaa645d5c8381cacba1f1652963392665933adaca2aaa63b8b59336ccbc08e2d6f56e40d565b13434e332b7c96ba77536e -779beb76fa84a24a80c10bfb39aaee150a8241ad9ccca2a618efa76195b3f351bb766c17f8016a57291246d66f6dd5eed8ada811cee960f046951fe476a31686 -96dbbe525b5adf979b17dbecec05248f1174b96b2a8576255c5b73040dd154f72459da802df252e65b039ebc35273dffcb5ad80f868d7058a975c271256806b5 -4a27ec372bfd306cd6c761bd361a345e41619171520fb3bbfa095c60d04d7e63afc7f76eed93ed1dcd9d394baa4cdfca5735717d6b5f6f386eedbd99ba9cf73d -0249e7cb5663d26d7607ad4ab7d99f5482d1a053e90e5b83caa8356c8f26a361d8e94e5ef9de850607fde630688d3b95567d38ac04ad9aa2dfe956da41a3d10f -dafdce38e8bfcadb185879963e725b807935af7bff050000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f -7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f -2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e31 -98720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d98505 -28a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c02000013000000000000000000000000 -00000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b0000000000000000000000 -0000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c000000000000000000000000001902000074 -68656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d0014000600080000002100a4d06d8592070000c3200000160000000000000000 -0000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b0100002700000000 -0000000000000000009c0a00007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000970b00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9; -\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3; -\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6; -\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong; -\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Table;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 1; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 2; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 2; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Colorful 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 3; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 2; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 6; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 2; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 6; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 2; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table 3D effects 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Contemporary;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Elegant;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Professional; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Subtle 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 1;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 2; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Web 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Theme;\lsdsemihidden1 \lsdlocked0 Placeholder Text; -\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2; -\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List; -\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;\lsdpriority61 \lsdlocked0 Light List Accent 1; -\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdsemihidden1 \lsdlocked0 Revision; -\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1; -\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;\lsdpriority72 \lsdlocked0 Colorful List Accent 1; -\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; -\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2; -\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2; -\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; -\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3; -\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4; -\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; -\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4; -\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5; -\lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5; -\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6; -\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6; -\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6; -\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography; -\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4; -\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4; -\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1; -\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1; -\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2; -\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2; -\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3; -\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4; -\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4; -\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5; -\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5; -\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6; -\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6; -\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark; -\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1; -\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1; -\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2; -\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3; -\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3; -\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4; -\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4; -\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5; -\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5; -\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6; -\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention; -\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000 -02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000d053 -c67115a0d801feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file +{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel2 \b \fs28 What\u8217's new in v1.11.1?\par} +{\pard \ql \f0 \sa180 \li0 \fi0 This is a small update to address some bugs.\par} +{\pard \ql \f0 \sa0 \li0 \fi0 {\b Changelog:}\par} +{\pard \ql \f0 \sa0 \li0 \fi0 Click to expand\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab The textbox for the resource list in the mod manager has scrollbars now.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Fix: The Quick-Boy color wouldn\u8217't be applied if values in the Fallout76Custom.ini override them.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Fixed small issue that would prevent the tool from downloading translations on first start.\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Translations:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab The font for the titles changes depending on the selected language. (Russian uses Roboto, Chinese uses Microsoft JhengHei)\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Minor changes\sa180\par} +{\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} +{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel2 \b \fs28 What\u8217's new in v1.11.0? - The \u8220"fresh coat of paint\u8221" update\par} +{\pard \ql \f0 \sa180 \li720 \fi0 {\b If you do not like the changes, you can download v1.10 from NexusMods or GitHub.}\par} +{\pard \ql \f0 \sa180 \li0 \fi0 Hello everyone,\par} +{\pard \ql \f0 \sa180 \li0 \fi0 this update is a rather large one - at least in terms of UI changes.\line I decided to rearrange everything and add a sidebar for navigation.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 I tested almost every tweak and changed/removed old tweaks as well as adding a few new ones.\line The mod manager has two new options. Also, I fixed some smaller bugs. Just explore a little, if you like to.\par} +{\pard \ql \f0 \sa180 \li0 \fi0 As always, you can read the changelog below.\par} +{\pard \ql \f0 \sa0 \li0 \fi0 Happy hunting,\par} +{\pard \ql \f0 \sa180 \li360 \fi0 datasnake\sa180\par} +{\pard \ql \f0 \sa0 \li0 \fi0 {\b Changelog:}\par} +{\pard \ql \f0 \sa0 \li0 \fi0 Click to expand\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab General:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Most notable change: Added a side navigation that replaces the top panel, the bottom status panel, and the tabs.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added a \u8220"Hero\u8221" banner to the \u8220"Home\u8221" page\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Moved \u8220"Tweaks\u8221" into their own page\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Removed \u8220"Settings\u8221" window; moved \u8220"Settings\u8221", \u8220"Profiles\u8221", and \u8220"NexusMods\u8221" into their own page\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Reworked the profile manager\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added line numbers, syntax highlighting, autocompletion and hotkeys to the \u8220"Custom\u8221" page\u8217's textbox\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Replaced the awful {\f1 FolderBrowserDialog} with a proper dialog that let\u8217's you choose a folder more comfortably.\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tweaks:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Tweaks are now color-coded\par} +{\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Added Info about color-codes and tool tips\sa180\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Reworked tweaks:\par} +{\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Added some missing tweaks from the ingame settings\par} +{\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Added Screen Space Reflections and Blood Splatter to Graphics tweaks\par} +{\pard \ql \f0 \sa0 \li1440 \fi-360 \endash \tx360\tab Added fix for black/invisible water\sa180\par} +{\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Removed some tweaks that didn\u8217't do anything\par} +{\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Changed some tweaks\sa180\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added FOV preview\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Removed the \u8220"Danger Zone\u8221"\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab *.ini files are parsed differently now:\par} +{\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Comments can now be in-line and begin with {\f1 ";"} (semicolon) or {\f1 "#"} (hash)\par} +{\pard \ql \f0 \sa0 \li1440 \fi-360 \endash \tx360\tab This might break the s76UserName and s76Password text fields.\sa180\sa180\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pip-Boy:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added a few more Pip-Boy color presets\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added HEX codes to Pip-Boy tab\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Fixed Quick-Boy color not applying ingame\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Profiles:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab You can now change the path where the *.ini files are stored.\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Mod manager:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Fixed: \u8220"Import installed mods\u8221" importing already managed mods.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added an option to create symlinks when deploying. (Experimental feature)\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added an option to put bundled archives last in the load order.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Placed \u8220"Notes\u8221" under \u8220"Installation options\u8221" in mod manager\u8217's side panel\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added a button to open the folder of a mod in mod manager\u8217's side panel\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Minor changes / fixes\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added missing messagebox strings when you picked the wrong game path.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Added missing messagebox strings when you delete photos in the gallery.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Made some UI elements that were previously untranslatable, translatable.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab When picking the game path, you now browse for the folder instead of the *.exe file.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab and a few more.\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Removed backwards-compatibility\u8230?\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab \u8230? to v1.8\u8217's Mod Manager\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab \u8230? to v1.8\u8217's Profiles\sa180\par} +{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Known issues:\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab The scroll whell on Windows 7 doesn\u8217't always work properly due to how focus works in older Windows versions.\par} +{\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab If a password written into [Login]s76Password contains {\f1 ";"} or {\f1 "#"}, it will be truncated.\sa180\sa180\par} +} diff --git a/setup.iss b/setup.iss index e043ee5..0adf17b 100644 --- a/setup.iss +++ b/setup.iss @@ -6,7 +6,7 @@ #define MyAppURL "https://www.nexusmods.com/fallout76/mods/546" #define MyAppExeName "Fo76ini.exe" -#define ProjectVersion "1.11.0" +#define ProjectVersion "1.11.1" #define ProjectGitDir "D:\Workspace\Fallout 76 Quick Configuration\Fallout76-QuickConfiguration" #define ProjectPackTargetDir "D:\Workspace\Fallout 76 Quick Configuration\Files\Main Files"