From 253981d9c4d66e098ffd7fc1fdd112614a5be1f6 Mon Sep 17 00:00:00 2001 From: Caraxi Date: Sun, 5 Nov 2023 14:44:51 +1030 Subject: [PATCH] 1.9.2.1 --- SimpleTweaksPlugin.csproj | 2 +- Tweaks/UiAdjustment/AlwaysYes.cs | 1 + Tweaks/UiAdjustment/TargetCastbarCountdown.cs | 4 ++-- changelog.md | 7 +++++++ 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/SimpleTweaksPlugin.csproj b/SimpleTweaksPlugin.csproj index 9904d235..e0cf241a 100755 --- a/SimpleTweaksPlugin.csproj +++ b/SimpleTweaksPlugin.csproj @@ -18,7 +18,7 @@ true - 1.9.2.0 + 1.9.2.1 false diff --git a/Tweaks/UiAdjustment/AlwaysYes.cs b/Tweaks/UiAdjustment/AlwaysYes.cs index 0fb125c8..4c54bb4e 100644 --- a/Tweaks/UiAdjustment/AlwaysYes.cs +++ b/Tweaks/UiAdjustment/AlwaysYes.cs @@ -11,6 +11,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment; +[Changelog("1.9.2.1", "Added support for Blunderville exit dialog.")] public unsafe class AlwaysYes : UiAdjustments.SubTweak { public override string Name => "Always Yes"; public override string Description => "Sets the default action in dialog boxes to yes when using confirm (num 0)."; diff --git a/Tweaks/UiAdjustment/TargetCastbarCountdown.cs b/Tweaks/UiAdjustment/TargetCastbarCountdown.cs index 9f0d029a..d5e2b344 100644 --- a/Tweaks/UiAdjustment/TargetCastbarCountdown.cs +++ b/Tweaks/UiAdjustment/TargetCastbarCountdown.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System; using System.Numerics; using Dalamud.Game.Addon.Lifecycle.AddonArgTypes; @@ -20,7 +20,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment; [TweakReleaseVersion("1.8.3.0")] [Changelog("1.8.3.1", "Add TopRight option for displaying countdown")] [Changelog("1.8.9.0", "Add option to disable on primary target")] -[Changelog(UnreleasedVersion, "Fix updating slowly for really slow castbars")] +[Changelog("1.9.2.1", "Fix updating slowly for really slow castbars")] public unsafe class TargetCastbarCountdown : UiAdjustments.SubTweak { private uint CastBarTextNodeId => CustomNodes.Get(this, "Countdown"); diff --git a/changelog.md b/changelog.md index 33694c3b..f2aff114 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 1.9.2.1 +***Tweak Changes*** +- **`Always Yes`** - Added support for Blunderville exit dialog. + +- **`Target Castbar Countdown`** - Fix updating slowly for really slow castbars + + ## 1.9.2.0 ***New Tweaks*** - **`Alt + F4 Exit Game`** - Pressing Alt + F4 will cause the game to close safely. *(MidoriKami)*