Skip to content

Commit

Permalink
Releasing the new end of mythic+ panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Feb 7, 2024
1 parent 4f63a6f commit c080f6e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
local addonName, Details222 = ...
local version, build, date, tocversion = GetBuildInfo()

Details.build_counter = 12256
Details.alpha_build_counter = 12256 --if this is higher than the regular counter, use it instead
Details.build_counter = 12281
Details.alpha_build_counter = 12281 --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 Expand Up @@ -161,6 +161,12 @@ do
--]=]

local news = {
{"v10.2.5.12281.155", "February 07th, 2024"},
"Released the new panel for the Mythic+ Run Completion.",
"The list of Crowd Control spells is now sourced from the Lib Open Raid.",
"Fixed an issue where the Player Color feature wouldn't work properly if not using class colors.",
"Fixed an error with Vanilla, where it was trying to access talent data from Retail.",

{"v10.2.5.12255.155", "February 04th, 2024"},
"Dungeon followers now correctly show into the damage done section.",
"Fixed an error while statusbar plugin options.",
Expand Down
4 changes: 2 additions & 2 deletions frames/window_mythicplus/window_end_of_run.lua
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ function mythicDungeonFrames.ShowEndOfMythicPlusPanel(bIsDebug)
end

--feature under development
if (Details222.MythicPlus.Level and Details222.MythicPlus.Level < 28 and not Details.user_is_patreon_supporter) then
if (false and Details222.MythicPlus.Level and Details222.MythicPlus.Level < 28 and not Details.user_is_patreon_supporter) then
--create the panel
if (not mythicDungeonFrames.ReadyFrame) then
mythicDungeonFrames.ReadyFrame = CreateFrame("frame", "DetailsMythicDungeonReadyFrame", UIParent, "BackdropTemplate")
Expand Down Expand Up @@ -471,7 +471,7 @@ function mythicDungeonFrames.ShowEndOfMythicPlusPanel(bIsDebug)
LibWindow.SavePosition(readyFrame)

--warning footer
local warningFooter = DetailsFramework:CreateLabel(readyFrame, "You are seeing this because it's a 28 or above. Under development.", 9, "yellow")
local warningFooter = DetailsFramework:CreateLabel(readyFrame, "Under development.", 9, "yellow")
warningFooter:SetPoint("bottom", readyFrame, "bottom", 0, 20)

local roundedCornerPreset = {
Expand Down

0 comments on commit c080f6e

Please sign in to comment.