Skip to content

Commit

Permalink
5.2.182-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Sep 2, 2024
1 parent 8b19aa0 commit 2d627f4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
5 changes: 4 additions & 1 deletion AzeriteUI/Components/ActionBars/Elements/MicroMenu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down Expand Up @@ -83,6 +84,7 @@ MicroMenu.SpawnButtons = function(self)
-- Retail
local buttons = {
CharacterMicroButton,
ProfessionMicroButton,
SpellbookMicroButton,
TalentMicroButton,
AchievementMicroButton,
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion AzeriteUI/Core/ExplorerMode.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2d627f4

Please sign in to comment.