Skip to content

Commit

Permalink
Update LibRangeCheck version
Browse files Browse the repository at this point in the history
Should fix taint issues as reported in https://www.wowace.com/projects/ice-hud/issues/353
  • Loading branch information
parnic committed Apr 4, 2024
1 parent acee3f4 commit 2ae8266
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .pkgmeta
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ externals:
libs/AceHook-3.0:
url: svn://svn.wowace.com/wow/ace3/mainline/trunk/AceHook-3.0
tag: latest
libs/LibRangeCheck-2.0:
url: https://github.com/WeakAuras/LibRangeCheck-2.0/
libs/LibRangeCheck-3.0:
url: https://github.com/WeakAuras/LibRangeCheck-3.0/
libs/LibSharedMedia-3.0:
url: svn://svn.wowace.com/wow/libsharedmedia-3-0/mainline/trunk
tag: latest
Expand All @@ -57,11 +57,11 @@ externals:
optional-dependencies:
- libdogtag-3-0
- libdogtag-unit-3-0
- librangecheck-2-0
- librangecheck-3-0

move-folders:
IceHUD/IceHUD_Options: IceHUD_Options
IceHUD/libs/LibRangeCheck-2.0/LibRangeCheck-2.0: IceHUD/libs/LibRangeCheck-2.0
IceHUD/libs/LibRangeCheck-3.0/LibRangeCheck-3.0: IceHUD/libs/LibRangeCheck-3.0

tools-used:
- libdatabroker-1-1
Expand Down
2 changes: 1 addition & 1 deletion IceHUD.toc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#@end-non-debug@
## SavedVariables: IceCoreDB
## IconTexture: Interface\Icons\Spell_Frost_Frost
## OptionalDeps: Ace3, LibSharedMedia-3.0, LibDogTag-3.0, LibDogTag-Unit-3.0, LibRangeCheck-2.0, LibDualSpec-1.0, LibDBIcon-1.0, AceGUI-3.0-SharedMediaWidgets
## OptionalDeps: Ace3, LibSharedMedia-3.0, LibDogTag-3.0, LibDogTag-Unit-3.0, LibRangeCheck-3.0, LibDualSpec-1.0, LibDBIcon-1.0, AceGUI-3.0-SharedMediaWidgets
## X-Category: HUDs
## X-Website: https://www.wowace.com/projects/ice-hud
## X-Curse-Project-ID: 5394
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

v1.14.37:

- Update LibRangeCheck version to address taint issues (wowace ticket #353)

v1.14.36:

- Really fix IceHUD stomping on other uses of the PowerBarContainer such as the Digging bar for the Archive event.
Expand Down
2 changes: 1 addition & 1 deletion embeds.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Include file="libs\AceHook-3.0\AceHook-3.0.xml"/>
<Include file="libs\LibDogTag-3.0\lib.xml"/>
<Include file="libs\LibDogTag-Unit-3.0\lib.xml"/>
<Script file="libs\LibRangeCheck-2.0\LibRangeCheck-2.0.lua"/>
<Script file="libs\LibRangeCheck-3.0\LibRangeCheck-3.0.lua"/>
<Include file="libs\LibSharedMedia-3.0\lib.xml"/>
<Include file="libs\AceGUI-3.0-SharedMediaWidgets\widget.xml"/>
<Script file="LibDataBroker-1.1.lua"/>
Expand Down
2 changes: 1 addition & 1 deletion modules/RangeCheck.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function RangeCheck.prototype:init()

self.scalingEnabled = true

LibRange = LibStub("LibRangeCheck-2.0", true)
LibRange = LibStub("LibRangeCheck-3.0", true)
end

function RangeCheck.prototype:Enable(core)
Expand Down
4 changes: 4 additions & 0 deletions this_version.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

v1.14.37:

- Update LibRangeCheck version to address taint issues (wowace ticket #353)

v1.14.36:

- Really fix IceHUD stomping on other uses of the PowerBarContainer such as the Digging bar for the Archive event.
Expand Down

0 comments on commit 2ae8266

Please sign in to comment.