Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Anonomit committed Jul 12, 2024
1 parent 808c93b commit 2d9d299
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 10 deletions.
15 changes: 8 additions & 7 deletions CHANGELOG.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<h3>API</h3>
<ul>
<li>Items can now be built with a third parameter: uniqueID. This is sometimes required to send suffix item links through chat.</li>
<li>ItemCache:Filter() callback is now passed a fourth parameter: uniqueID.</li>
<li>Added Item:GetUniqueID().</li>
<li>Added Item:HasUniqueID().</li>
<li>Added Item:GetIDSuffixUniqueID().</li>
<li>Added Item:GetLinkUncached().</li>
<li>Added Item:GetClass().</li>
<li>Added Item:GetSubClass().</li>
<li>Added Item:GetClassSubClass().</li>
</ul>
<h3>Changes</h3>
<ul>
<li>Druids can now use polearms in Era.</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Fixed an issue with linking items that scale by character level.</li>
<li>Fixed another issue with localized druid text due to the Cataclysm API change.</li>
</ul>
18 changes: 18 additions & 0 deletions CHANGELOG_HISTORY.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<h1>1.6.0</h1>
<h3>API</h3>
<ul>
<li>Added Item:GetClass().</li>
<li>Added Item:GetSubClass().</li>
<li>Added Item:GetClassSubClass().</li>
</ul>
<h3>Changes</h3>
<ul>
<li>Druids can now use polearms in Era.</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Fixed another issue with localized druid text due to the Cataclysm API change.</li>
</ul>


<p>&nbsp;</p>
<h1>1.5.0</h1>
<h3>API</h3>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion ItemCache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local ADDON_NAME = "ItemCache"
local HOST_ADDON_NAME, Data = ...
local IsStandalone = ADDON_NAME == HOST_ADDON_NAME

local MAJOR, MINOR = ADDON_NAME, 8
local MAJOR, MINOR = ADDON_NAME, 9
local ItemCache, oldMinor = LibStub:NewLibrary(MAJOR, MINOR)
if not ItemCache and not IsStandalone then
return
Expand Down
4 changes: 2 additions & 2 deletions ItemCache.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Interface: 40400
## Interface-Cata: 40400
## Interface-Classic: 11502
## Interface-Classic: 11503

## Version: 1.5.0
## Version: 1.6.0
## Author: Anonomit

## X-Curse-Project-ID: 591277
Expand Down

0 comments on commit 2d9d299

Please sign in to comment.