Skip to content

Commit

Permalink
2.0.96-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Aug 17, 2024
1 parent 0a79a47 commit 266d88e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Bagnon_ItemLevel/dispatcher.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
--]]
local _, Private = ...

-- WoW 11.0.x
local GetAddOnEnableState = GetAddOnEnableState or function(character, name) return C_AddOns.GetAddOnEnableState(name, character) end
local GetAddOnInfo = GetAddOnInfo or C_AddOns.GetAddOnInfo
local GetNumAddOns = GetNumAddOns or C_AddOns.GetNumAddOns

for i = 1,GetNumAddOns() do
local name, _, _, loadable = GetAddOnInfo(i)
if (name == "Bagnon_ItemInfo") then
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.0.96-Release] 2024-07-18
- Updated for WoW Retail Client Patch 11.0.2.

## [2.0.95-Release] 2024-07-10
- Updated for WoW Classic Client Patch 1.15.3.

Expand Down

0 comments on commit 266d88e

Please sign in to comment.