From 6cb426507ba24dba22804b2438c5dc24de01877e Mon Sep 17 00:00:00 2001 From: urnati Date: Sat, 9 May 2026 09:53:08 -0400 Subject: [PATCH] - Utils : Revert change on frame timer out - it hides control frames (Vol / Clock) --- Titan/TitanHistory.lua | 69 +++++++++--------------------------------------- Titan/TitanUtils.lua | 2 +- 2 files changed, 13 insertions(+), 58 deletions(-) diff --git a/Titan/TitanHistory.lua b/Titan/TitanHistory.lua index 63bbf0e..95fa397 100644 --- a/Titan/TitanHistory.lua +++ b/Titan/TitanHistory.lua @@ -10,6 +10,18 @@ These are in a seperate file to --- Release notes. Keep structure; most recent on 'top' local recent_changes = { { + version = "9.2.4", + when = "2026/05/07", + topics = { + { + topic = "Titan", + lines = { + "Utils : Revert change on frame timer out - it hides control frames (Vol / Clock).", + }, + }, + }, + }, + { version = "9.2.3", when = "2026/05/07", topics = { @@ -69,63 +81,6 @@ local recent_changes = { }, }, }, - { - version = "9.2.0", - when = "2026/04/20", - topics = { - { - topic = "Alts", - lines = { - "New built-in plugin to display profile info on Alts in tooltip format.", - }, - }, - { - topic = "TitanUI", - lines = { - "Tools : Added /eventtrace and /api", - }, - }, - { - topic = "Titan", - lines = { - "Tooltip : Change to revert behavior to be same as GameTooltip - cursor over plugin controls tooltip show / hide.", - "Core : TOC retail to 12.0.5; Foundational for Alts profile info", - "Config : Fixed string in Import / Export text", - }, - }, - }, - }, - { - version = "9.1.7", - when = "2026/04/05", - topics = { - { - topic = "Gold", - lines = { - "Delete Database is back.", - }, - }, - { - topic = "Titan", - lines = { - "Profile : deletes allowed when using Sync (All) - as long it is not a sync 'source' for any other profile", - }, - }, - }, - }, - { - version = "9.1.6", - when = "2026/03/25", - topics = { - { - topic = "Titan", - lines = { - "Scaling : Plugins should properly scale.", - "Tooltip : New registry .tooltipTemplateFunction; prevent 'secret' errors.", - }, - }, - }, - }, } ---Format the release notes diff --git a/Titan/TitanUtils.lua b/Titan/TitanUtils.lua index f62653a..7f8acd3 100644 --- a/Titan/TitanUtils.lua +++ b/Titan/TitanUtils.lua @@ -1164,7 +1164,7 @@ end function TitanUtils_CheckFrameCounting(frame, elapsed) if (frame:IsVisible()) then if (not frame.frameTimer or not frame.isCounting) then - frame:Hide() -- just in case +-- frame:Hide() -- just in case; 9.2.4 removed - it hides control frames... elseif (frame.frameTimer < 0) then -- hide and clear frame:Hide() -- 1.7.9.5