Skip to content

Commit

Permalink
Updating framework
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Oct 18, 2024
1 parent 1517804 commit d8289f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Libs/DF/fw.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


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

Expand Down Expand Up @@ -5708,14 +5708,14 @@ local sendTimeBarNotification = function(token, barType, id, msg, timer, icon, s
end

local createBossModsCallback = function()
if (_G.DBM) then
if (false and _G.DBM) then
local DBM = _G.DBM

--phase change
local phaseChangeCallback = function(event, mod, modId, phase, encounterId, stageTotal)
sendPhaseNotification(phase)
end
DBM:RegisterCallback("DBM_SetStage", phaseChangeCallback)
--DBM:RegisterCallback("DBM_SetStage", phaseChangeCallback)

--time bars
local timerChangeCallback = function(bar_type, id, msg, timer, icon, bartype, spellId, colorId, modid)
Expand All @@ -5733,12 +5733,12 @@ local createBossModsCallback = function()
end
end

DBM:RegisterCallback("DBM_TimerStart", timerChangeCallback)
--DBM:RegisterCallback("DBM_TimerStart", timerChangeCallback)
end

local BigWigsLoader = BigWigsLoader

if (BigWigsLoader and not _G.DBM) then
if (BigWigsLoader) then -- and not _G.DBM
--Bigwigs change the phase of an encounter
if (BigWigsLoader.RegisterMessage) then
local t = {}
Expand Down
4 changes: 2 additions & 2 deletions boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
local addonName, Details222 = ...
local version, build, date, tvs = GetBuildInfo()

Details.build_counter = 13131
Details.alpha_build_counter = 13131 --if this is higher than the regular counter, use it instead
Details.build_counter = 13132
Details.alpha_build_counter = 13132 --if this is higher than the regular counter, use it instead
Details.dont_open_news = true
Details.game_version = version
Details.userversion = version .. " " .. Details.build_counter
Expand Down

0 comments on commit d8289f0

Please sign in to comment.