Skip to content

Commit e3a93b2

Browse files
committed
2.0.71-Release
1 parent 7db6fc6 commit e3a93b2

8 files changed

Lines changed: 20 additions & 84 deletions

Bagnon_Garbage/Bagnon_Garbage.toc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 110107
1+
## Interface: 110107, 50500, 11507
22
## IconTexture: Interface\Addons\BagBrother\Art\Bagnon-Plugin.tga
33

44
## Plain Title: Bagnon Garbage
@@ -12,8 +12,8 @@
1212
## X-Wago-ID: 2jK8YbGy
1313
## X-License: Custom
1414

15-
## OptionalDeps: TaintLess
16-
## RequiredDeps: Bagnon
15+
## OptionalDeps: TaintLess, Bagnon, Bagnonium
16+
## RequiredDeps: BagBrother
1717

1818
embeds.xml
1919
dispatcher.lua

Bagnon_Garbage/Bagnon_Garbage_Cata.toc

Lines changed: 0 additions & 19 deletions
This file was deleted.

Bagnon_Garbage/Bagnon_Garbage_TBC.toc

Lines changed: 0 additions & 19 deletions
This file was deleted.

Bagnon_Garbage/Bagnon_Garbage_Vanilla.toc

Lines changed: 0 additions & 19 deletions
This file was deleted.

Bagnon_Garbage/Bagnon_Garbage_Wrath.toc

Lines changed: 0 additions & 19 deletions
This file was deleted.

Bagnon_Garbage/dispatcher.lua

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,16 @@ end
8686

8787
-- Hook the updater
8888
if (not BAGNON_ITEMINFO_DISPATCHER) then
89-
local item = Bagnon.ItemSlot or Bagnon.Item
90-
local method = item.UpdateSecondary and "UpdateSecondary" or item.UpdatePrimary and "UpdatePrimary" or item.Update and "Update"
91-
hooksecurefunc(item, method, Private.Dispatcher)
89+
if (Bagnon) then
90+
local item = Bagnon.Item
91+
local method = item.UpdateSecondary and "UpdateSecondary" or item.UpdatePrimary and "UpdatePrimary" or item.Update and "Update"
92+
hooksecurefunc(item, method, Private.Dispatcher)
93+
end
94+
if (Bagnonium) then
95+
local item = Bagnonium.Item
96+
local method = item.UpdateSecondary and "UpdateSecondary" or item.UpdatePrimary and "UpdatePrimary" or item.Update and "Update"
97+
hooksecurefunc(item, method, Private.Dispatcher)
98+
end
9299
end
93100

94101
-- (Re)assign globals

Bagnon_Garbage/main.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ if (Private.Incompatible) then
2929
return
3030
end
3131

32+
local Bagnon = Bagnon or Bagnonium
3233
local Module = Bagnon:NewModule(Addon, Private)
3334
local cache = Private.cache
3435

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2.0.71-Release] 2025-08-15
8+
- Added compatibility with Classic MoP Client Patch 5.5.0.
9+
- Added compatibility with Bagnonium!
10+
711
## [2.0.70-Release] 2025-06-18
8-
- Updated for Retail client patch 11.1.7.
9-
- Updated for Classic Era client patch 1.15.7.
12+
- Updated for Retail Client Patch 11.1.7.
13+
- Updated for Classic Era Client Patch 1.15.7.
1014

1115
## [2.0.69-Release] 2025-04-02
1216
### Fixed

0 commit comments

Comments
 (0)