Compare commits

...

3 Commits

Author SHA1 Message Date
6282dfb256 Update changelog 2021-04-13 21:32:40 -05:00
4de8cb0d27 Show fury raw value as top number when DogTags are disabled
Same as commit 36c8f02fc2

WoWAce ticket #301
2021-04-13 21:31:32 -05:00
ea28a05051 Update Classic TOC 2021-03-23 12:15:38 -05:00
6 changed files with 10 additions and 8 deletions

View File

@ -42,4 +42,4 @@ jobs:
- name: Package and release for Classic
uses: BigWigsMods/packager@master
with:
args: -g 1.13.5 -w 0
args: -g 1.13.6 -w 0

View File

@ -2,7 +2,7 @@
## Interface: 90005
#@end-retail@
#@non-retail@
# ## Interface: 11305
# ## Interface: 11306
#@end-non-retail@
## Author: Parnic, originally created by Iceroth
## Name: IceHUD

View File

@ -2,7 +2,7 @@
## Interface: 90005
#@end-retail@
#@non-retail@
# ## Interface: 11305
# ## Interface: 11306
#@end-non-retail@
## Title: IceHUD |cff7fff7f-Options-|r
## Author: Parnic

View File

@ -1,5 +1,9 @@
# Changelog
vNext:
- Show Demon Hunter Fury top text as the raw Fury amount instead of a 0-100 scale with DogTags off. (ticket #301)
v1.13.3:
- Activated Totems module for all classes in Shadowlands. Some class abilities spawn units that live for a specific amount of time, and the game handles these as Totems.

View File

@ -387,7 +387,7 @@ function PlayerMana.prototype:Update(unit, powertype)
if not IceHUD.IceCore:ShouldUseDogTags() then
-- extra hack for whiny rogues (are there other kind?)
local displayPercentage = self.manaPercentage
if self.manaType == SPELL_POWER_ENERGY or self.manaType == SPELL_POWER_FOCUS then
if self.manaType == SPELL_POWER_ENERGY or self.manaType == SPELL_POWER_FOCUS or self.manaType == SPELL_POWER_FURY then
displayPercentage = self.mana
else
displayPercentage = math.floor(displayPercentage * 100)

View File

@ -1,7 +1,5 @@
# Changelog
v1.13.3:
vNext:
- Activated Totems module for all classes in Shadowlands. Some class abilities spawn units that live for a specific amount of time, and the game handles these as Totems.
- Fixed an issue where mana bars could use the wrong alpha settings if the player's maximum mana was 0 (such as during the use of Soulshape).
- Update TOC for 9.0.5
- Show Demon Hunter Fury top text as the raw Fury amount instead of a 0-100 scale with DogTags off. (ticket #301)