Skip to content

Commit

Permalink
BossBanner: add keybinds infotext
Browse files Browse the repository at this point in the history
  • Loading branch information
Zidras committed Dec 4, 2024
1 parent 8718444 commit 78d830b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DBM-Core/DBM-Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ local function currentFullDate()
end

DBM = {
Revision = parseCurseDate("20241204152045"),
Revision = parseCurseDate("20241204193401"),
DisplayVersion = "10.1.13 alpha", -- the string that is shown as version
ReleaseRevision = releaseDate(2024, 07, 20) -- the date of the latest stable version that is available, optionally pass hours, minutes, and seconds for multiple releases in one day
}
Expand Down
5 changes: 5 additions & 0 deletions DBM-GUI/modules/options/filters/GlobalDisables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,8 @@ showButton:SetHighlightFontObject(GameFontNormalSmall)
showButton:SetScript("OnClick", function()
BossBanner:Show()
end)

-- BossBanner Keybinds
local keybindsString = "|cffffffff"..string.upper(KEY_BINDINGS).."|r\n"..KEY_BUTTON2..": "..HIDE
local keybindsInfotext = spamBBArea:CreateText(keybindsString, nil, false, GameFontNormal, "LEFT", 0)
keybindsInfotext:SetPoint("BOTTOMLEFT", spamBBArea.frame, "BOTTOMLEFT", 10, 10)

0 comments on commit 78d830b

Please sign in to comment.