Skip to content

Commit

Permalink
5.2.180-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Aug 23, 2024
1 parent 06f8ffd commit c05fecf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AzeriteUI/Components/ActionBars/Elements/StatusBars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ end

StatusBars.OnEnable = function(self)
local MinimapMod = ns:GetModule("Minimap", true)
if (not MinimapMod or not MinimapMod:IsEnabled()) then return end
if (not MinimapMod or not MinimapMod:IsEnabled()) then return self:Disable() end

self:CreateBars()
self:UpdateBars()
Expand Down
8 changes: 8 additions & 0 deletions AzeriteUI/WoW11/Misc/Minimap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ MinimapMod.DelayedEnable = function(self)
ns.MovableModulePrototype.OnInitialize(self)

self:Enable()

-- Manually enable the XP bars,
-- in case they were unable to previously load
-- because of the delayed Minimap module start.
local PlayerStatusBars = ns:GetModule("PlayerStatusBars", true)
if (PlayerStatusBars and not PlayerStatusBars:IsEnabled()) then
PlayerStatusBars:Enable()
end
end

MinimapMod.InitializeObjectTables = function(self)
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ 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.179-Beta] 2024-08-21
## [5.2.180-Release] 2024-08-24
- Note that for Retail users that didn't use the Alpha/Beta development versions leading up to this Release, there will be a full settings reset as a lot of settings got broken and stored incorrectly as a result of the bugs after WoW Retail patch 11.0.2.

### Fixed
- Reworked the Retail loading order for multiple modules to avoid incorrect scaling.
- Fixed some incorrect texture crops in the health predict element of the player- and target healthbars.
Expand All @@ -14,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Slightly adjusted the position of the Vehicle Exit button on the Minimap in Classic Era.
- Fixed reputation tracking in Classic Era.
- Removed usage of `GetMouseFocus` from Retail.
- The XP bar is once again displayed on the Minimap in Retail. The Retail reputation tracking seems to be missing in action, though. A fix for that is coming later.

## [5.2.174-Release] 2024-07-10
- Previously updated for WoW Classic Era Client Patch 1.15.3.
Expand Down

0 comments on commit c05fecf

Please sign in to comment.