Skip to content

Commit

Permalink
1.0.38-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Aug 17, 2024
1 parent 040e26f commit beb6c9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions BlizzardBags_ItemLevel/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,11 @@ end
local patch, build, date, tocversion = GetBuildInfo()
local major, minor, micro = string.split(".", patch)

-- 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

-- Simple flags for client version checks
Private.IsRetail = (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE)
Private.IsClassic = (WOW_PROJECT_ID == WOW_PROJECT_CLASSIC)
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/).

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

## [1.0.37-Release] 2024-07-24
- Updated for WoW Retail Client Patch 11.0.0.

Expand Down

0 comments on commit beb6c9e

Please sign in to comment.