Skip to content

Commit

Permalink
1.9.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Caraxi committed Oct 27, 2023
1 parent bcf7fc9 commit a647a36
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 13 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.1</Version>
<Version>1.9.2.0</Version>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down
31 changes: 28 additions & 3 deletions Tweaks.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

---

- **Alt + F4 Exit Game**

Pressing Alt + F4 will cause the game to close safely.


- **Auto Lock Action Bars**

Automatically locks action bars when certain conditions are met.
Expand Down Expand Up @@ -106,6 +111,11 @@
Sets a fixed value for the shadow rendering, preventing it from changing when flying.


- **Hide 'Character not found' Message**

Prevent the game from displaying the "The character you last logged out with could not be found on the current data center." message.


- **Hide Hotbar Lock**

Hides the hotbar lock button, with an option to make it visible while holding a modifier combo.
Expand Down Expand Up @@ -248,6 +258,11 @@
Show the correct item when trying on a glamoured item.


- **Use Custom Time for Furniture Clocks**

Changes the time displayed on chronometer furniture.


### Chat Tweaks

---
Expand Down Expand Up @@ -277,6 +292,11 @@
Prevents movement of the chat window.


- **Echo Party Finder**

Prints Party Finder description to chat when joining a group and entering a duty.


- **Echo Story Selection**

When given multiple choices during quests, print the selected option to chat.
Expand Down Expand Up @@ -524,7 +544,12 @@

- **Fade Unavailable Actions**

Instead of darkening icons, makes them transparent when unavailable
Instead of darkening icons, makes them transparent when unavailable.


- **Fast Item Search**

Enable superfast searches for the market board & crafting log.


- **Hide Achievements Nearing Completion Notifications**
Expand Down Expand Up @@ -554,7 +579,7 @@

- **Hide Unwanted Banners**

Hide information banners such as 'Venture Complete', or 'Levequest Accepted'
Hide information banners such as 'Venture Complete', or 'Levequest Accepted'.


- **Housing Lottery Timer**
Expand All @@ -569,7 +594,7 @@

- **Improved Interruptable Castbars**

Displays an icon next to interruptable castbars
Displays an icon next to interruptable castbars.


- **Item Level in Examine**
Expand Down
2 changes: 1 addition & 1 deletion Tweaks/Chat/EchoPartyFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace SimpleTweaksPlugin.Tweaks.Chat;
[TweakVersion(2)]
[TweakAutoConfig]
[TweakReleaseVersion("1.8.3.0")]
[Changelog(UnreleasedVersion, "Rewrote Tweak for Patch 6.5")]
[Changelog("1.9.2.0", "Rewrote Tweak for Patch 6.5")]
public unsafe class EchoPartyFinder : ChatTweaks.SubTweak {
public class Config : TweakConfig {
[TweakConfigOption("Show PF description when joining party")]
Expand Down
4 changes: 2 additions & 2 deletions Tweaks/ExitGame.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using FFXIVClientStructs.FFXIV.Client.UI;
Expand All @@ -10,7 +10,7 @@ namespace SimpleTweaksPlugin.Tweaks;
[TweakName("Alt + F4 Exit Game")]
[TweakDescription("Pressing Alt + F4 will cause the game to close safely.")]
[TweakAuthor("MidoriKami")]
[TweakReleaseVersion(UnreleasedVersion)]
[TweakReleaseVersion("1.9.2.0")]
public unsafe class ExitGame : Tweak {
[DllImport("user32.dll")] public static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);
private const int WM_CLOSE = 0x10;
Expand Down
2 changes: 1 addition & 1 deletion Tweaks/FurnitureClocksCustomTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace SimpleTweaksPlugin.Tweaks;
[TweakName("Use Custom Time for Furniture Clocks")]
[TweakDescription("Changes the time displayed on chronometer furniture.")]
[TweakAutoConfig]
[TweakReleaseVersion(UnreleasedVersion)]
[TweakReleaseVersion("1.9.2.0")]
public unsafe class FurnitureClocksCustomTime : Tweak {
public enum TimeMode {
[Description("Local Time")] Local,
Expand Down
2 changes: 1 addition & 1 deletion Tweaks/NoCharacterNotFoundWarning.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace SimpleTweaksPlugin.Tweaks;

[TweakName("Hide 'Character not found' Message")]
[TweakDescription("Prevent the game from displaying the \"The character you last logged out with could not be found on the current data center.\" message.")]
[TweakReleaseVersion(UnreleasedVersion)]
[TweakReleaseVersion("1.9.2.0")]
public unsafe class NoCharacterNotFoundWarning : Tweak {
protected override void Enable() => AgentLobby.Instance()->HasShownCharacterNotFound = true;
}
4 changes: 2 additions & 2 deletions Tweaks/UiAdjustment/FadeUnavailableActions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#nullable enable
#nullable enable
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
Expand All @@ -23,7 +23,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment;
[Changelog("1.8.3.2", "Add option to apply to sync'd skills only")]
[Changelog("1.8.4.0", "Tweak now only applies to combat actions")]
[Changelog("1.8.4.0", "Properly resets hotbar state on unload/disable")]
[Changelog(UnreleasedVersion, "Added option to make skills that are out of range red")]
[Changelog("1.9.2.0", "Added option to make skills that are out of range red")]
public unsafe class FadeUnavailableActions : UiAdjustments.SubTweak {
private delegate void UpdateHotBarSlotDelegate(AddonActionBarBase* addon, ActionBarSlot* uiData, NumberArrayData* numberArray, StringArrayData* stringArray, int numberArrayIndex, int stringArrayIndex);

Expand Down
4 changes: 2 additions & 2 deletions Tweaks/UiAdjustment/FastSearch.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Dalamud.Utility;
using Dalamud.Utility;
using FFXIVClientStructs.Attributes;
using FFXIVClientStructs.FFXIV.Client.System.String;
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
Expand Down Expand Up @@ -26,7 +26,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment;
[TweakDescription("Enable superfast searches for the market board & crafting log.")]
[TweakAuthor("Asriel")]
[TweakAutoConfig]
[TweakReleaseVersion(UnreleasedVersion)]
[TweakReleaseVersion("1.9.2.0")]
public unsafe class FastSearch : UiAdjustments.SubTweak {
public class FastSearchConfig : TweakConfig {
[TweakConfigOption("Use Fuzzy Search")]
Expand Down
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 1.9.2.0
***New Tweaks***
- **`Alt + F4 Exit Game`** - Pressing Alt + F4 will cause the game to close safely. *(MidoriKami)*

- **`Fast Item Search`** - Enable superfast searches for the market board & crafting log. *(Asriel)*

- **`Hide 'Character not found' Message`** - Prevent the game from displaying the "The character you last logged out with could not be found on the current data center." message.

- **`Use Custom Time for Furniture Clocks`** - Changes the time displayed on chronometer furniture.


***Tweak Changes***
- **`Fade Unavailable Actions`** - Added option to make skills that are out of range red


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

0 comments on commit a647a36

Please sign in to comment.