Skip to content

Commit 627aa8d

Browse files
committed
patch 11.0.2
1 parent 8824963 commit 627aa8d

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- replace `_G.IsAddOnLoaded` with `C_AddOns.IsAddOnLoaded` (patch 11.0.2)
13+
1014
## [5.1.0] - 2024-08-04
1115

1216
### Changed

Filger.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 20504, 30403, 40400, 100207, 110000
1+
## Interface: 20504, 30403, 40400, 100207, 110002
22
## Author: Luaerror
33
## Credits: Nils Ruesch, Shestak, Affli, Garagar, hidekki, FourOne, Tukz
44
## Version: 5.1.0

core/api.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ local config = Filger.config
44
local fonts = Filger.fonts
55
local textures = Filger.textures
66

7-
-- blizzard
8-
local IsAddOnLoaded = _G.IsAddOnLoaded
7+
-- Blizzard
8+
local IsAddOnLoaded = C_AddOns and C_AddOns.IsAddOnLoaded or _G.IsAddOnLoaded
99

1010
-- skip it if Tukui exists
1111
if IsAddOnLoaded("Tainted") then

core/blacklist.lua

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,9 @@ end
253253
-- Shadowlands
254254
--------------------------------------------------
255255
if expansion >= LE_EXPANSION_SHADOWLANDS then
256-
local data = {}
256+
local data = {
257+
[359082] = true, -- Sign of the Legion
258+
}
257259
import(data, blacklist)
258260
end
259261

@@ -331,8 +333,9 @@ if expansion >= LE_EXPANSION_DRAGONFLIGHT then
331333
[382093] = true, -- Alchemically Inspired
332334

333335
-- Items
334-
[401518] = true, -- Bronze Resonance (Ominous Chromatic Essence)
335336
[399502] = true, -- Automically Recalibrated
337+
[401518] = true, -- Bronze Resonance (Ominous Chromatic Essence)
338+
[410762] = true, -- The Silent Star (Voice of the Silent Star)
336339

337340
-- Tier Set
338341
[426262] = true, -- Larodar's Fiery Reverie (Priest Discipline / Holy)

core/spells.lua

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ if Filger.isRetail then
9090
["DEMONHUNTER"] = {
9191
-- Vengeance
9292
[263648] = Filger:CreateSpellPriority(7), -- Soul Barrier
93-
[203720] = Filger:CreateSpellPriority(6), -- Demon Spike
93+
[203718] = Filger:CreateSpellPriority(6), -- Demon Spike
94+
[212988] = Filger:CreateSpellPriority(8), -- Painbringer
95+
[391234] = Filger:CreateSpellPriority(8), -- Soulmonger
9496
},
9597
["DEATHKNIGHT"] = {
9698
-- Blood
@@ -119,6 +121,11 @@ if Filger.isRetail then
119121
[102342] = Filger:CreateSpellPriority(3), -- Ironbark
120122
[102351] = Filger:CreateSpellPriority(2), -- Cenarion Ward
121123
},
124+
["HUNTER"] = {
125+
-- Marksmanship
126+
[260242] = Filger:CreateSpellPriority(7), -- Precise Shot
127+
[342076] = Filger:CreateSpellPriority(7), -- Streamline
128+
},
122129
["MONK"] = {
123130
-- Brewmaster
124131
[120954] = Filger:CreateSpellPriority(1), -- Fortifying Brew

0 commit comments

Comments
 (0)