diff --git a/IceHUD.toc b/IceHUD.toc index 4eee874..2f2f59b 100644 --- a/IceHUD.toc +++ b/IceHUD.toc @@ -1,5 +1,5 @@ -## Interface: 110100 -## Interface-Retail: 110100 +## Interface: 110105 +## Interface-Retail: 110105 ## Interface-Classic: 11507 ## Interface-BCC: 20504 ## Interface-Wrath: 30403 diff --git a/IceHUD_Options/IceHUD_Options.toc b/IceHUD_Options/IceHUD_Options.toc index f5d5ea1..afacc6a 100644 --- a/IceHUD_Options/IceHUD_Options.toc +++ b/IceHUD_Options/IceHUD_Options.toc @@ -1,5 +1,5 @@ -## Interface: 110100 -## Interface-Retail: 110100 +## Interface: 110105 +## Interface-Retail: 110105 ## Interface-Classic: 11507 ## Interface-BCC: 20504 ## Interface-Wrath: 30403 diff --git a/changelog.md b/changelog.md index 9a9212b..4cd0a3f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +v1.15.14: + +- Support WoW 11.1.5 +- Update TWW TOC to 11.1.5 + v1.15.13: - Update TOCs diff --git a/modules/RollTheBones.lua b/modules/RollTheBones.lua index f932ea1..f057bc3 100644 --- a/modules/RollTheBones.lua +++ b/modules/RollTheBones.lua @@ -477,7 +477,11 @@ function RollTheBones.prototype:GetItemIdFromItemLink(linkStr) local _ if linkStr then - _, itemId, _, _, _, _, _, _, _ = strsplit(":", linkStr) + _, itemId, itemId2, _, _, _, _, _, _ = strsplit(":", linkStr) + end + + if not tonumber(itemId) then + itemId = itemId2 end return itemId or 0 diff --git a/modules/SliceAndDice.lua b/modules/SliceAndDice.lua index 9f82f12..9999d02 100644 --- a/modules/SliceAndDice.lua +++ b/modules/SliceAndDice.lua @@ -532,7 +532,11 @@ function SliceAndDice.prototype:GetItemIdFromItemLink(linkStr) local _ if linkStr then - _, itemId, _, _, _, _, _, _, _ = strsplit(":", linkStr) + _, itemId, itemId2, _, _, _, _, _, _ = strsplit(":", linkStr) + end + + if not tonumber(itemId) then + itemId = itemId2 end return itemId or 0 diff --git a/this_version.md b/this_version.md index 01b5591..d2e0c15 100644 --- a/this_version.md +++ b/this_version.md @@ -1,5 +1,10 @@ # Changelog +v1.15.14: + +- Support WoW 11.1.5 +- Update TWW TOC to 11.1.5 + v1.15.13: - Update TOCs