Skip to content

Commit

Permalink
5.2.165-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Apr 4, 2024
1 parent 04688fb commit 2edf9f6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AzeriteUI/Components/UnitFrames/Units/Raid25.lua
Original file line number Diff line number Diff line change
Expand Up @@ -735,8 +735,8 @@ RaidFrame25Mod.GetHeaderAttributes = function(self)
"point", db.point, -- Unit anchoring within each column
"xOffset", db.xOffset,
"yOffset", db.yOffset,
"groupBy", db.groupBy, -- ROLE, CLASS, GROUP -- Grouping order and type
"groupingOrder", db.groupingOrder,
"groupBy", "GROUP", -- db.groupBy, -- ROLE, CLASS, GROUP -- Grouping order and type
"groupingOrder", "1,2,3,4,5,6,7,8", -- db.groupingOrder,
"unitsPerColumn", db.unitsPerColumn, -- Column setup and growth
"maxColumns", db.maxColumns,
"columnSpacing", db.columnSpacing,
Expand Down
4 changes: 2 additions & 2 deletions AzeriteUI/Components/UnitFrames/Units/Raid40.lua
Original file line number Diff line number Diff line change
Expand Up @@ -735,8 +735,8 @@ RaidFrame40Mod.GetHeaderAttributes = function(self)
"point", db.point, -- Unit anchoring within each column
"xOffset", db.xOffset,
"yOffset", db.yOffset,
"groupBy", db.groupBy, -- ROLE, CLASS, GROUP -- Grouping order and type
"groupingOrder", db.groupingOrder,
"groupBy", "GROUP", -- db.groupBy, -- ROLE, CLASS, GROUP -- Grouping order and type
"groupingOrder", "1,2,3,4,5,6,7,8", -- db.groupingOrder,
"unitsPerColumn", db.unitsPerColumn, -- Column setup and growth
"maxColumns", db.maxColumns,
"columnSpacing", db.columnSpacing,
Expand Down
4 changes: 4 additions & 0 deletions AzeriteUI/Core/Common/Compatibility.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ if (not _G.UnitHasVehicleUI) then
_G.UnitHasVehicleUI = function() return false end
end

if (not _G.GetTimeToWellRested) then
_G.GetTimeToWellRested = function() return nil end
end

local tocversion = select(4, GetBuildInfo())

-- Deprecated in 10.1.0
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ 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/).

## [Unreleased] 2024-04-03
## [5.2.165-RC] 2024-04-04
### Changed
- Default unit frame grouping in raid(15) and raid(40) group frames is now by player group, not by role as previously. Options of this is coming.

### Fixed
- Fixed `GetTimeToWellRested` nil bug when hovering over the XP bar in SoD phase 3.
- Actionbutton fading should be updated instantly when moving abilities around.

## [5.2.164-RC] 2024-04-03
Expand Down

0 comments on commit 2edf9f6

Please sign in to comment.