Skip to content

Commit

Permalink
1.9.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Caraxi committed Oct 11, 2023
1 parent bd65a67 commit 8733aae
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SimpleTweaksPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>
<PropertyGroup Label="Feature">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.9.1.0</Version>
<Version>1.9.1.1</Version>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion Tweaks/UiAdjustment/ControlHintMirroring.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment;
[TweakAuthor("BoredDan")]
[TweakVersion(2)]
[Changelog("1.9.1.0", "Rewritten & re-enabled")]
[Changelog(UnreleasedVersion, "Fixed flickering while cooldown is active.")]
[Changelog("1.9.1.1", "Fixed flickering while cooldown is active.")]
public unsafe class ControlHintMirroring : UiAdjustments.SubTweak {
private readonly Dictionary<(HotbarSlotType Type, uint Id), string> hints = new();
private readonly Dictionary<(byte BarID, byte SlotIndex), bool> barSlotHasNoHint = new();
Expand Down
4 changes: 2 additions & 2 deletions Tweaks/UiAdjustment/RemoveQuestMarkerLimit.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Dalamud.Utility.Signatures;
using Dalamud.Utility.Signatures;
using FFXIVClientStructs.FFXIV.Client.Game;
using FFXIVClientStructs.FFXIV.Client.System.String;
using FFXIVClientStructs.FFXIV.Client.Game.UI;
Expand All @@ -10,7 +10,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment;

[TweakName("Remove Quest Marker Limit")]
[TweakDescription("Allow the map and minimap to display markers for more than 5 active quests.")]
[Changelog(UnreleasedVersion, "Fix tweak not working since API 9")]
[Changelog("1.9.1.1", "Fix tweak not working since API 9")]
public unsafe class RemoveQuestMarkerLimit : UiAdjustments.SubTweak {
private delegate void* SetQuestMarkerInfoDelegate(Map* map, uint index, ushort questId, Utf8String* name, ushort recommendedLevel);
[TweakHook, Signature("E8 ?? ?? ?? ?? 0F B6 5B 0A", DetourName = nameof(SetQuestMarkerInfoDetour))]
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.9.1.1
***Tweak Changes***
- **`Duplicate Keybind Hints Between Hotbars`** - Fixed flickering while cooldown is active.

- **`Remove Quest Marker Limit`** - Fix tweak not working since API 9


## 1.9.1.0
***New Tweaks***
- **`Remember Selected World`** - Remembers which world was selected for each datacentre.
Expand Down

0 comments on commit 8733aae

Please sign in to comment.