Skip to content

Commit

Permalink
5.2.183-Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldpaw committed Sep 25, 2024
1 parent 2d627f4 commit 0b62f46
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AzeriteUI/AzeriteUI_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11503
## Interface: 11504
## IconTexture: Interface\Addons\AzeriteUI\Assets\power-crystal-ice-icon.tga

## Title: |TInterface\Addons\AzeriteUI\Assets\power-crystal-ice-icon.tga:16:16:0:0:512:512:70:442:40:472|t |cff4488bbAzerite|r |cfffafafaUI|r |cffcccccc5.2|r
Expand Down
2 changes: 1 addition & 1 deletion AzeriteUI/Components/ActionBars/Prototypes/PetButton.lua
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ end

PetButton.GetHotkey = function(self)
local key = GetBindingKey(format("BONUSACTIONBUTTON%d", self.id)) or GetBindingKey("CLICK "..self:GetName()..":LeftButton")
return key and KeyBound:ToShortKey(key)
return key and KeyBound and KeyBound:ToShortKey(key)
end

PetButton.GetBindings = function(self)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ end

StanceButton.GetHotkey = function(self)
local key = GetBindingKey(string_format("SHAPESHIFTBUTTON%d", self:GetID())) or GetBindingKey("CLICK "..self:GetName()..":LeftButton")
return key and KeyBound:ToShortKey(key)
return key and KeyBound and KeyBound:ToShortKey(key)
end

StanceButton.GetTexture = function(self)
Expand Down
1 change: 0 additions & 1 deletion AzeriteUI/Core/Common/Constants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ ns.Private.IsRetail = (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE)
ns.Private.IsClassic = (WOW_PROJECT_ID == WOW_PROJECT_CLASSIC)
ns.Private.IsTBC = (WOW_PROJECT_ID == WOW_PROJECT_BURNING_CRUSADE_CLASSIC)
ns.Private.IsWrath = (WOW_PROJECT_ID == WOW_PROJECT_WRATH_CLASSIC)
--ns.Private.IsCata = WOW_PROJECT_ID == (WOW_PROJECT_CATA_CLASSIC or 99) -- NYI in first build
ns.Private.IsCata = (version >= 40400) and (version < 50000)
ns.Private.WoW10 = version >= 100000
ns.Private.WoW11 = version >= 110000
Expand Down
2 changes: 1 addition & 1 deletion AzeriteUI/Libs/Libs_Vanilla.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<Script file="LibMoreEvents-1.0\LibMoreEvents-1.0.lua"/>
@end-non-debug@-->
<Include file="UTF8\utf8.xml"/>
<Include file="LibKeyBound-1.0\lib.xml"/>
<!--<Include file="LibKeyBound-1.0\lib.xml"/>-->
<Script file="LibClassicSpellActionCount-1.0\LibClassicSpellActionCount-1.0.lua"/>
<Script file="LibAuraTypes\LibAuraTypes.lua"/>
<Script file="LibSpellLocks\LibSpellLocks.lua"/>
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. Be aware th
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [5.2.183-Release] 2024-09-25
- Updated for Classic Era client patch 1.15.4.

## [5.2.182-Release] 2024-09-02
### Added
- Added the new Professions entry to our cogwheel dropdown menu in Retail.
Expand Down

0 comments on commit 0b62f46

Please sign in to comment.