From 1c7b45bd042152bc34462ddb9ad00c5ffa80545a Mon Sep 17 00:00:00 2001 From: Peter Yu <49627468+Peterodox@users.noreply.github.com> Date: Thu, 2 Jul 2026 14:18:41 +0800 Subject: [PATCH 1/3] Fix Teleport Home Macro Occasionally Stops Working Issue - We keep listening to "PLAYER_HOUSE_LIST_UPDATED" since the initial payload might be incomplete. #460 - Thanks foxlit for pointing it out. --- Modules/Housing/Housing_API.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Housing/Housing_API.lua b/Modules/Housing/Housing_API.lua index 4f32f66..f287e9d 100644 --- a/Modules/Housing/Housing_API.lua +++ b/Modules/Housing/Housing_API.lua @@ -173,7 +173,7 @@ do --House Level / Info / Teleport end function DataProvider:LoadHouses() - self:RegisterEventCallback("PLAYER_HOUSE_LIST_UPDATED", self.OnHouseListUpdated, true); + self:RegisterEventCallback("PLAYER_HOUSE_LIST_UPDATED", self.OnHouseListUpdated); C_Housing.GetPlayerOwnedHouses(); --Tigger PLAYER_HOUSE_LIST_UPDATED end From 0fb6d25c7083da4379b5a5a71a42d882148bfe05 Mon Sep 17 00:00:00 2001 From: Peter Yu <49627468+Peterodox@users.noreply.github.com> Date: Thu, 2 Jul 2026 20:57:02 +0800 Subject: [PATCH 2/3] Landing Button: Properly Hide Blizzard Minimap Button #459 --- Modules/ExpansionLandingPage/MinimapButton.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/ExpansionLandingPage/MinimapButton.lua b/Modules/ExpansionLandingPage/MinimapButton.lua index 93c03cd..d302e6a 100644 --- a/Modules/ExpansionLandingPage/MinimapButton.lua +++ b/Modules/ExpansionLandingPage/MinimapButton.lua @@ -740,6 +740,7 @@ do --Order Hall, RightClickMenu API.RegisterFrameForEvents(button, GarrisonLandingPageEvents); local forceUpdateIcon = true; button:RefreshButton(forceUpdateIcon); + EventRegistry:RegisterCallback("ExpansionLandingPage.OverlayChanged", button.OnOverlayChanged, button); elseif (not state) and not OrderHallUtil.blizzardButtonHidden then OrderHallUtil.blizzardButtonHidden = true; button:UnregisterAllEvents(); @@ -747,6 +748,7 @@ do --Order Hall, RightClickMenu C_Timer.After(0, function() button:Hide(); end); + EventRegistry:UnregisterCallback("ExpansionLandingPage.OverlayChanged", button); end end From 68105a99295e5bb466ca5b4dd99053cee9ba43b1 Mon Sep 17 00:00:00 2001 From: Peter Yu <49627468+Peterodox@users.noreply.github.com> Date: Thu, 2 Jul 2026 22:09:45 +0800 Subject: [PATCH 3/3] Update Changelog --- Initialization.lua | 4 ++-- Modules/ControlCenter/Changelog/enUS.lua | 25 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/Initialization.lua b/Initialization.lua index ed67459..3488d29 100644 --- a/Initialization.lua +++ b/Initialization.lua @@ -1,5 +1,5 @@ -local VERSION_TEXT = "1.9.3 b"; -local VERSION_DATE = 1782700000; +local VERSION_TEXT = "1.9.3 c"; +local VERSION_DATE = 1783000000; local addonName, addon = ... diff --git a/Modules/ControlCenter/Changelog/enUS.lua b/Modules/ControlCenter/Changelog/enUS.lua index ef25643..90cb2cf 100644 --- a/Modules/ControlCenter/Changelog/enUS.lua +++ b/Modules/ControlCenter/Changelog/enUS.lua @@ -8,6 +8,31 @@ local L = addon.L; local changelogs = addon.ControlCenter.changelogs; changelogs[10903] = { + { + type = "date", + versionText = "1.9.3 c", + timestamp = 1783000000, + }, + + { + type = "p", + bullet = true, + text = "Teleport Home Macro: Fix an issue where the macro stopped working if your house data wasn't fully received during the initial login. Special thanks to foxlit for pointing out the issue.", + }, + + { + type = "p", + bullet = true, + text = "Expansion Summary UI: When the Plumber minimap button is enabled, WoW's minimap button for Omnium Folio should no longer appear after completing a related quest.", + }, + + { + type = "br", + }, + { + type = "br", + }, + { type = "date", versionText = "1.9.3 b",