Skip to content

Commit 6d4cbbd

Browse files
committed
Replace AceEvent with a fork, to fix some issues with CPU blame being incorrect
1 parent a2e4f87 commit 6d4cbbd

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.pkgmeta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
externals:
22
libs/AceAddon-3.0: https://repos.wowace.com/wow/ace3/trunk/AceAddon-3.0
33
libs/AceConfig-3.0: https://repos.wowace.com/wow/ace3/trunk/AceConfig-3.0
4-
libs/AceEvent-3.0: https://repos.wowace.com/wow/ace3/trunk/AceEvent-3.0
4+
libs/NumyAceEvent-3.0: https://github.com/NumyAddon/NumyAceEvent-3.0.git
55
libs/AceGUI-3.0: https://repos.wowace.com/wow/ace3/trunk/AceGUI-3.0
66
libs/AceHook-3.0: https://repos.wowace.com/wow/ace3/trunk/AceHook-3.0
77
libs/CallbackHandler-1.0: https://repos.wowace.com/wow/ace3/trunk/CallbackHandler-1.0

embeds.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ https://raw.githubusercontent.com/Gethe/wow-ui-source/refs/heads/live/Interface/
33
<Script file="libs\LibStub\LibStub.lua"/>
44
<Include file="libs\CallbackHandler-1.0\CallbackHandler-1.0.xml"/>
55
<Include file="libs\AceAddon-3.0\AceAddon-3.0.xml"/>
6-
<Include file="libs\AceEvent-3.0\AceEvent-3.0.xml"/>
6+
<Include file="libs\NumyAceEvent-3.0\NumyAceEvent-3.0.xml"/>
77
<Include file="libs\AceGUI-3.0\AceGUI-3.0.xml"/>
88
<Include file="libs\AceConfig-3.0\AceConfig-3.0.xml"/>
99
<Include file="libs\AceHook-3.0\AceHook-3.0.xml"/>

main.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ local StripHyperlinks = C_StringUtil and C_StringUtil.StripHyperlinks or StripHy
77

88
_G.DialogKeyNS = ns -- expose ourselves to the world :)
99

10-
--- @class DialogKey: AceAddon, AceEvent-3.0, AceHook-3.0
11-
local DialogKey = LibStub("AceAddon-3.0"):NewAddon(name, "AceEvent-3.0", "AceHook-3.0")
10+
--- @class DialogKey: AceAddon, NumyAceEvent-3.0, AceHook-3.0
11+
local DialogKey = LibStub("AceAddon-3.0"):NewAddon(name, "NumyAceEvent-3.0", "AceHook-3.0")
1212
ns.Core = DialogKey
1313

1414
local defaultPopupBlacklist = { -- If a popup dialog contains one of these strings, don't click it

0 commit comments

Comments
 (0)