Skip to content

Commit

Permalink
Framework update for bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Jan 18, 2025
1 parent 83a3751 commit 0b74296
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/DF/ejournal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function Ejc.CreateEncounterJournalDump()
---could also be tierAmount - 1
---because the tier is "current season"
---@type number
local currentTierId = tierAmount --EJ_GetCurrentTier(), for some unknown reason, this function is returning 3 on retail
local currentTierId = tierAmount - 1 --EJ_GetCurrentTier(), for some unknown reason, this function is returning 3 on retail

---maximum amount of dungeons in the expansion
---@type number
Expand Down
2 changes: 1 addition & 1 deletion libs/DF/fw.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


local dversion = 586
local dversion = 587
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary(major, minor)

Expand Down
2 changes: 1 addition & 1 deletion libs/DF/panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ if ((ColorPickerFrame and ColorPickerFrame.SetupColorPickerAndShow) or toc >= 10

local color_pick_func_cancel = function()
local r, g, b, a = ColorPickerFrame.previousValues.r, ColorPickerFrame.previousValues.g, ColorPickerFrame.previousValues.b, ColorPickerFrame.previousValues.a
ColorPickerFrame.Content.ColorPicker:SetColorRGB(r, g, b) --error here: attempt to index field 'Content' (a nil value)
ColorPickerFrame:SetColorRGB(r, g, b)
ColorPickerFrame:dcallback (r, g, b, a, ColorPickerFrame.dframe)
end

Expand Down
1 change: 1 addition & 0 deletions libs/DF/timeline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,7 @@ detailsFramework.TimeLineMixin = {

RefreshTimeLine = function(self, bDelayButtonRefresh, bFromScale) --~refresh
if (not self.data.lines) then
error("Timeline data for SetData() has no line data.")
return
end

Expand Down

0 comments on commit 0b74296

Please sign in to comment.