diff --git a/ActionTimelineEx/Localization/Localization.json b/ActionTimelineEx/Localization/Localization.json index 3793f48..6d9cb9f 100644 --- a/ActionTimelineEx/Localization/Localization.json +++ b/ActionTimelineEx/Localization/Localization.json @@ -92,12 +92,6 @@ "XIVConfigUI.LocalString.CopyCommand": "Copy \"{0}\"", "XIVConfigUI.LocalString.Localization": "Click to open the crowdin for modifying localization!", "XIVConfigUI.LocalString.SourceCode": "Click to see the source code!", - "XIVConfigUI.Attributes.ConfigUnitType.None": "None", - "XIVConfigUI.Attributes.ConfigUnitType.Seconds": "Time Unit, in seconds.", - "XIVConfigUI.Attributes.ConfigUnitType.Degree": "Angle Unit, in degrees.", - "XIVConfigUI.Attributes.ConfigUnitType.Yalms": "Distance Unit, in yalms.", - "XIVConfigUI.Attributes.ConfigUnitType.Percent": "Ratio Unit, as percentage.", - "XIVConfigUI.Attributes.ConfigUnitType.Pixels": "Display Unit, in pixels.", "XIVConfigUI.LocalString.Remove": "Remove", "XIVConfigUI.LocalString.MoveUp": "Move Up", "XIVConfigUI.LocalString.MoveDown": "Move Down", @@ -105,8 +99,9 @@ "XIVConfigUI.LocalString.FromClipboard": "From Clipboard", "XIVConfigUI.LocalString.List": "List", "XIVConfigUI.LocalString.Nothing": "No items in Combo", - "ActionTimeline.Windows.SettingsWindow+AddOne": "AddOne", - "ActionTimeline.Windows.SettingsWindow+ChangeLog": "ChangeLog", - "ActionTimelineEx.Punchline": "Show your actions in real-time.", - "ActionTimelineEx.Description": "Configurable timeline display of all the actions you use." + "XIVConfigUI.Attributes.ConfigUnitType.Seconds": "Time Unit, in seconds.", + "XIVConfigUI.Attributes.ConfigUnitType.Degree": "Angle Unit, in degrees.", + "XIVConfigUI.Attributes.ConfigUnitType.Yalms": "Distance Unit, in yalms.", + "XIVConfigUI.Attributes.ConfigUnitType.Percent": "Ratio Unit, as percentage.", + "XIVConfigUI.Attributes.ConfigUnitType.Pixels": "Display Unit, in pixels." } \ No newline at end of file diff --git a/ActionTimelineEx/Timeline/TimelineManager.cs b/ActionTimelineEx/Timeline/TimelineManager.cs index 95495a6..1ca3d0e 100644 --- a/ActionTimelineEx/Timeline/TimelineManager.cs +++ b/ActionTimelineEx/Timeline/TimelineManager.cs @@ -58,7 +58,7 @@ public void Dispose() private readonly Hook? _onActorControlHook = null; private delegate void OnCastDelegate(uint sourceId, IntPtr sourceCharacter); - [Signature("40 55 56 48 81 EC ?? ?? ?? ?? 48 8B EA", DetourName = nameof(OnCast))] + [Signature("40 56 41 56 48 81 EC ?? ?? ?? ?? 48 8B F2", DetourName = nameof(OnCast))] private readonly Hook? _onCastHook = null; public static SortedSet ShowedStatusId { get; } = [];