Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Updating for 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Tischel committed May 24, 2023
1 parent 7d575d7 commit 85c6151
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ActionTimeline/ActionTimeline.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<!-- Assembly Configuration -->
<PropertyGroup>
<AssemblyName>ActionTimeline</AssemblyName>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<InformationalVersion>1.1.0.0</InformationalVersion>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
<InformationalVersion>1.2.0.0</InformationalVersion>
</PropertyGroup>

<!-- Build Configuration -->
Expand Down
2 changes: 1 addition & 1 deletion ActionTimeline/ActionTimeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"Description": "Configurable timeline display of all the actions you use.",
"RepoUrl": "https://github.com/Tischel/ActionTimeline",
"Tags": [ "UI" ],
"Changelog": "1.1.0.0\n- Added support for Patch 6.3 and Dalamud Api8."
"Changelog": "# 1.2.0.0\n- Added support for Patch 6.4."
}
3 changes: 2 additions & 1 deletion ActionTimeline/Helpers/TimelineManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ public TimelineManager()

try
{
_onActionUsedHook = Hook<OnActionUsedDelegate>.FromAddress(Plugin.SigScanner.ScanText("4C 89 44 24 ?? 55 56 41 54 41 55 41 56"), OnActionUsed);
IntPtr funcPtr = Plugin.SigScanner.ScanText("40 55 53 57 41 54 41 55 41 56 41 57 48 8D AC 24 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 48 8B 05 ?? ?? ?? ?? 48 33 C4 48 89 45 70");
_onActionUsedHook = Hook<OnActionUsedDelegate>.FromAddress(funcPtr, OnActionUsed);
_onActionUsedHook?.Enable();

_onActorControlHook = Hook<OnActorControlDelegate>.FromAddress(Plugin.SigScanner.ScanText("E8 ?? ?? ?? ?? 0F B7 0B 83 E9 64"), OnActorControl);
Expand Down
2 changes: 1 addition & 1 deletion ActionTimeline/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ KeyState keyState
AssemblyLocation = Assembly.GetExecutingAssembly().Location;
}

Version = Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "1.1.0.0";
Version = Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "1.2.0.0";

UiBuilder.Draw += Draw;
UiBuilder.OpenConfigUi += OpenConfigUi;
Expand Down
3 changes: 3 additions & 0 deletions ActionTimeline/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.2.0.0
- Added support for Patch 6.4.

# 1.1.0.0
- Added support for Patch 6.3 and Dalamud Api8.

Expand Down

0 comments on commit 85c6151

Please sign in to comment.