Skip to content

Commit

Permalink
1.10.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Caraxi committed Dec 1, 2024
1 parent 3f8da34 commit 09ffbdd
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 8 deletions.
1 change: 1 addition & 0 deletions Changelog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ internal static void AddGeneralChangelogs() {
.Sub("You can also set a permanent decoration to be used all year round.");
Add("1.10.0.0", "Support for Dawntrail");
Add("1.10.0.1", "Updated more tweaks for Dawntrail");
Add("1.10.5.0", "Fixed tweak preview images not loading correctly");
}

#if DEBUG
Expand Down
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.10.4.0</Version>
<Version>1.10.5.0</Version>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down
5 changes: 5 additions & 0 deletions Tweaks.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
Adds a command to equip recommended gear.


- **Estate Access Command**

Adds a command to open the estate access configuration for the current estate.


- **Estate List Command**

Adds a command to open the estate list of one of your friends.
Expand Down
3 changes: 2 additions & 1 deletion Tweaks/Chat/ImprovedFontSizes.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using Dalamud.Game.Config;
using Dalamud.Game.Text.SeStringHandling;
Expand All @@ -21,6 +21,7 @@ namespace SimpleTweaksPlugin.Tweaks.Chat;
[TweakName("Improved Chat Font Sizes")]
[TweakDescription("Allows you to change the font size for the chat windows beyond the default limits, and allows docked chat tabs to keep their font size separate from the main tab.")]
[TweakAutoConfig]
[Changelog("1.10.5.0", "Fixed tweak not working.")]
public unsafe class ImprovedFontSizes : ChatTweaks.SubTweak {
public const byte MinimumFontSize = 8; // Game crashes below 8
public const byte MaximumFontSize = 80;
Expand Down
3 changes: 2 additions & 1 deletion Tweaks/HouseLightCommand.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using Dalamud.Game.Text.SeStringHandling;
using Dalamud.Game.Text.SeStringHandling.Payloads;
Expand All @@ -13,6 +13,7 @@ namespace SimpleTweaksPlugin.Tweaks;
[TweakName("House Lights Command")]
[TweakDescription("Adds a command to control lighting in your own housing areas.")]
[TweakReleaseVersion("1.8.2.0")]
[Changelog("1.10.5.0", "Fixed tweak not working.")]
public unsafe class HouseLightCommand : CommandTweak {
public override bool Experimental => true;
protected override string Command => "lights";
Expand Down
4 changes: 2 additions & 2 deletions Tweaks/OpenEstateAccess.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
using Dalamud.Game.Text.SeStringHandling;
using Dalamud.Interface.Components;
using Dalamud.Utility;
Expand All @@ -14,7 +14,7 @@ namespace SimpleTweaksPlugin.Tweaks;

[TweakName("Estate Access Command")]
[TweakDescription("Adds a command to open the estate access configuration for the current estate.")]
[TweakReleaseVersion(UnreleasedVersion)]
[TweakReleaseVersion("1.10.5.0")]
public unsafe class OpenEstateAccess : CommandTweak {
private delegate byte OpenEstateAccessSettingsDelegate(AgentHousing* agentHousing);

Expand Down
2 changes: 1 addition & 1 deletion Tweaks/ScreenshotFileName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace SimpleTweaksPlugin.Tweaks;
[TweakAutoConfig]
[Changelog("1.10.2.0", "Added ability to use folders in screenshot path.")]
[Changelog("1.10.2.0", "Added ability to use character name and location in screenshot path.")]
[Changelog(UnreleasedVersion, "Added option to use milliseconds in name template.")]
[Changelog("1.10.5.0", "Added option to use milliseconds in name template.")]
public unsafe class ScreenshotFileName : Tweak {
public class Configs : TweakConfig {
public string DateFormatString = "ffxiv_%Y-%m-%d_%H%M%S";
Expand Down
3 changes: 2 additions & 1 deletion Tweaks/Tooltips/CraftingActionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Linq;
using Dalamud.Game.Text.SeStringHandling.Payloads;
using FFXIVClientStructs.FFXIV.Client.System.Memory;
Expand All @@ -15,6 +15,7 @@ namespace SimpleTweaksPlugin.Tweaks.Tooltips;
[TweakName("Improved Crafting Action Tooltips")]
[TweakDescription("Adds calculated efficiency of crafting actions to tooltips.")]
[TweakAutoConfig]
[Changelog("1.10.5.0", "Fixed results preview not resetting.")]
public unsafe class CraftingActionInfo : TooltipTweaks.SubTweak {
public class Configs : TweakConfig {
[TweakConfigOption("Show Results Preview")]
Expand Down
3 changes: 2 additions & 1 deletion Tweaks/UiAdjustment/TimerOnDutyWaiting.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Diagnostics;
using Dalamud.Game.Text.SeStringHandling;
using Dalamud.Game.Text.SeStringHandling.Payloads;
Expand All @@ -13,6 +13,7 @@ namespace SimpleTweaksPlugin.Tweaks.UiAdjustment;

[TweakName("Timer on Duty Waiting")]
[TweakDescription("Shows the 45 second countdown after readying for a duty.")]
[Changelog("1.10.5.0", "Fixed display of text in french clients.")]
public unsafe class TimerOnDutyWaiting : UiAdjustments.SubTweak {
private readonly Utf8String* timeRemainingString = Utf8String.CreateEmpty();
private readonly SeString prefix = Service.Data.GetExcelSheet<Addon>().GetRow(2780).Text.ToDalamudString();
Expand Down
20 changes: 20 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 1.10.5.0
***General Changes***
- Fixed tweak preview images not loading correctly

***New Tweaks***
- **`Estate Access Command`** - Adds a command to open the estate access configuration for the current estate.


***Tweak Changes***
- **`House Lights Command`** - Fixed tweak not working.

- **`Improved Chat Font Sizes`** - Fixed tweak not working.

- **`Improved Crafting Action Tooltips`** - Fixed results preview not resetting.

- **`Screenshot File Name`** - Added option to use milliseconds in name template.

- **`Timer on Duty Waiting`** - Fixed display of text in french clients.


## 1.10.4.0
***New Tweaks***
- **`Case Insensitive Text Commands`** - Allows text commands to be entered without caring about case. *(KazWolfe)*
Expand Down

0 comments on commit 09ffbdd

Please sign in to comment.