From 2d627f444e122a1b53676b8d8bc80cc44fd71039 Mon Sep 17 00:00:00 2001 From: Lars Norberg Date: Mon, 2 Sep 2024 20:23:51 +0200 Subject: [PATCH] 5.2.182-Release --- AzeriteUI/Components/ActionBars/Elements/MicroMenu.lua | 5 ++++- AzeriteUI/Core/ExplorerMode.lua | 2 +- CHANGELOG.md | 7 +++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/AzeriteUI/Components/ActionBars/Elements/MicroMenu.lua b/AzeriteUI/Components/ActionBars/Elements/MicroMenu.lua index 833e03ec..afde9789 100644 --- a/AzeriteUI/Components/ActionBars/Elements/MicroMenu.lua +++ b/AzeriteUI/Components/ActionBars/Elements/MicroMenu.lua @@ -36,6 +36,7 @@ MicroMenu.SpawnButtons = function(self) -- Retail local labels = { CharacterMicroButton = CHARACTER_BUTTON, + ProfessionMicroButton = TRADE_SKILLS, SpellbookMicroButton = SPELLBOOK_ABILITIES_BUTTON, TalentMicroButton = TALENTS_BUTTON, AchievementMicroButton = ACHIEVEMENT_BUTTON, @@ -46,7 +47,7 @@ MicroMenu.SpawnButtons = function(self) CollectionsMicroButton = COLLECTIONS, EJMicroButton = ADVENTURE_JOURNAL or ENCOUNTER_JOURNAL, StoreMicroButton = BLIZZARD_STORE, - MainMenuMicroButton = MAINMENU_BUTTON, + MainMenuMicroButton = MAINMENU_BUTTON } -- Cata Classic @@ -83,6 +84,7 @@ MicroMenu.SpawnButtons = function(self) -- Retail local buttons = { CharacterMicroButton, + ProfessionMicroButton, SpellbookMicroButton, TalentMicroButton, AchievementMicroButton, @@ -342,6 +344,7 @@ end MicroMenu.OnEnable = function(self) + -- Watch this, it is a potential source of taint in WoW11. if (ns.WoW10) then MicroMenuContainer.HighlightSystem = ns.Noop MicroMenuContainer.ClearHighlight = ns.Noop diff --git a/AzeriteUI/Core/ExplorerMode.lua b/AzeriteUI/Core/ExplorerMode.lua index f117bd18..2b7213e2 100644 --- a/AzeriteUI/Core/ExplorerMode.lua +++ b/AzeriteUI/Core/ExplorerMode.lua @@ -228,7 +228,7 @@ ExplorerMode.UpdateSettings = function(self) local Tracker = ns:GetModule("Tracker", true) if (Tracker) then local fade = not self.FORCED and Tracker:IsEnabled() and db.enabled and db.fadeTracker - local tracker = Tracker:GetFrame() + local tracker = Tracker.GetFrame and Tracker:GetFrame() -- we don't have this in WoW11 if (tracker) then if (fade) then LFF:RegisterFrameForFading(tracker, Tracker:GetName()) diff --git a/CHANGELOG.md b/CHANGELOG.md index d77efd2e..38f6779d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. Be aware th The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [5.2.182-Release] 2024-09-02 +### Added +- Added the new Professions entry to our cogwheel dropdown menu in Retail. + +### Fixed +- A bug in Retail when enabling the Explorer Mode was fixed. + ## [5.2.181-Alpha] 2024-08-25 ### Fixed - Boss unit frames once again appear in Retail. They are also movable and scalable through `/lock` as before.