Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ls- committed Jul 31, 2024
2 parents e8d2ff3 + c8a4d42 commit 8a25425
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## Version 110000.02

- Fixed "[DNT] Worldsoul Memory Score" toasts.

## Version 110000.01

- Added 11.0.0 support.
Expand Down
2 changes: 1 addition & 1 deletion ls_Toasts/core/changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ local _G = getfenv(0)

-- Mine
E.CHANGELOG = [[
- Added 11.0.0 support.
- Fixed "[DNT] Worldsoul Memory Score" toasts.
]]
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local LibStub = LibStub
local gui = LibStub("AceGUI-3.0")
local reg = LibStub("AceConfigRegistry-3.0")

local MAJOR, MINOR = "AceConfigDialog-3.0", 86
local MAJOR, MINOR = "AceConfigDialog-3.0", 87
local AceConfigDialog, oldminor = LibStub:NewLibrary(MAJOR, MINOR)

if not AceConfigDialog then return end
Expand Down Expand Up @@ -544,6 +544,7 @@ local function GetFuncName(option)
end
end
do
local InCombatLockdown = InCombatLockdown
local frame = AceConfigDialog.popup
if not frame or oldminor < 81 then
frame = CreateFrame("Frame", nil, UIParent)
Expand All @@ -556,13 +557,15 @@ do
frame:SetFrameLevel(100) -- Lots of room to draw under it
frame:SetScript("OnKeyDown", function(self, key)
if key == "ESCAPE" then
self:SetPropagateKeyboardInput(false)
if not InCombatLockdown() then
self:SetPropagateKeyboardInput(false)
end
if self.cancel:IsShown() then
self.cancel:Click()
else -- Showing a validation error
self:Hide()
end
else
elseif not InCombatLockdown() then
self:SetPropagateKeyboardInput(true)
end
end)
Expand Down
4 changes: 4 additions & 0 deletions ls_Toasts/embeds/LibSharedMedia-3.0/lib.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="LibSharedMedia-3.0.lua" />
</Ui>
2 changes: 1 addition & 1 deletion ls_Toasts/embeds/_embeds.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Include file="AceDBOptions-3.0\AceDBOptions-3.0.xml"/>
<Include file="AceGUI-3.0\AceGUI-3.0.xml"/>
<Include file="AceConfig-3.0\AceConfig-3.0.xml"/>
<Script file="LibSharedMedia-3.0\LibSharedMedia-3.0.lua"/>
<Include file="LibSharedMedia-3.0\lib.xml"/>
<Include file="AceGUI-3.0-SharedMediaWidgets\widget.xml"/>
<Include file="AceGUI-3.0-LSWidgets\_widgets.xml"/>
</Ui>
2 changes: 1 addition & 1 deletion ls_Toasts/ls_Toasts.toc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Interface: 110000, 110002
## Author: lightspark
## Version: 110000.01
## Version: 110000.02
## Title: LS: |cff00cc99Toasts|r
## Notes: Better toasts, cheers!
## IconTexture: Interface\AddOns\ls_Toasts\assets\logo-64
Expand Down
3 changes: 2 additions & 1 deletion ls_Toasts/systems/loot_currency.lua
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ local BLACKLIST = {
[2808] = true, -- Drake's Awakened Crest
[2810] = true, -- Wyrm's Awakened Crest
[2811] = true, -- Aspect's Awakened Crest
[2813] = true, -- Harmonzed Silk
[2813] = true, -- Harmonized Silk
[2814] = true, -- Renown-Keg Leg's Crew
[2819] = true, -- Azerothian Archives
[2822] = true, -- [DNT] Corgi Cache
Expand Down Expand Up @@ -1061,6 +1061,7 @@ local BLACKLIST = {
[3099] = true, -- 11.0 Raid - Nerubian - Nerubar Finery Tracking Currency (Hidden)
[3103] = true, -- 11.0 Delves - System - Seasonal Affix - Events Active
[3104] = true, -- 11.0 Delves - System - Seasonal Affix - Events Maximum
[3115] = true, -- [DNT] Worldsoul Memory Score
}

local MULT = {
Expand Down

0 comments on commit 8a25425

Please sign in to comment.