diff --git a/changelog.txt b/changelog.txt index 7699d51..a2d19e6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,7 @@ v1.10.12: - Tweaked a few Druid CCs in the CC modules. If you've got a more up-to-date list of any of the CCs, please send them along to icehud@parnic.com -- Hopefully fixed a problem that could cause a custom counter to loop forever and cause framerate problems. (ticket #230) +- Fixed a problem that could cause a custom counter to loop forever and cause framerate problems. (ticket #230) +- Updated default text values for Health and Mana modules to show values in shortened form so they're more readable. Anyone who has customized their text will not be affected by this change and the shortened form only kicks in once values reach 10,000. v1.10.11: - Updated TOC for IceHUD_Options module diff --git a/modules/PlayerHealth.lua b/modules/PlayerHealth.lua index 1f73d92..832b0c2 100644 --- a/modules/PlayerHealth.lua +++ b/modules/PlayerHealth.lua @@ -29,7 +29,7 @@ function PlayerHealth.prototype:GetDefaultSettings() settings["hideBlizz"] = false settings["hideBlizzParty"] = false settings["upperText"] = "[PercentHP:Round]" - settings["lowerText"] = "[FractionalHP:HPColor:Bracket]" + settings["lowerText"] = "[FractionalHP:Short:HPColor:Bracket]" settings["allowMouseInteraction"] = false settings["allowMouseInteractionCombat"] = false settings["healAlpha"] = 0.6 diff --git a/modules/PlayerMana.lua b/modules/PlayerMana.lua index ba22a6d..f9e21e7 100644 --- a/modules/PlayerMana.lua +++ b/modules/PlayerMana.lua @@ -34,7 +34,7 @@ function PlayerMana.prototype:GetDefaultSettings() settings["tickerEnabled"] = true settings["tickerAlpha"] = 0.5 settings["upperText"] = "[PercentMP:Round]" - settings["lowerText"] = "[FractionalMP:PowerColor]" + settings["lowerText"] = "[FractionalMP:Short:PowerColor]" return settings end diff --git a/modules/TargetHealth.lua b/modules/TargetHealth.lua index 309c56f..c61636b 100644 --- a/modules/TargetHealth.lua +++ b/modules/TargetHealth.lua @@ -43,7 +43,7 @@ function IceTargetHealth.prototype:GetDefaultSettings() settings["classColor"] = false settings["hideBlizz"] = false settings["upperText"] = "[PercentHP:Round]" - settings["lowerText"] = "[(HP:Round \"/\" MaxHP:Round):HPColor:Bracket]" + settings["lowerText"] = "[FractionalHP:Short:HPColor:Bracket]" settings["raidIconOnTop"] = true settings["showRaidIcon"] = true settings["raidIconXOffset"] = 12 diff --git a/modules/TargetMana.lua b/modules/TargetMana.lua index 5adbf9b..6b7977b 100644 --- a/modules/TargetMana.lua +++ b/modules/TargetMana.lua @@ -33,7 +33,7 @@ function IceTargetMana.prototype:GetDefaultSettings() settings["side"] = IceCore.Side.Right settings["offset"] = 2 settings["upperText"] = "[PercentMP:Round]" - settings["lowerText"] = "[FractionalMP:PowerColor]" + settings["lowerText"] = "[FractionalMP:Short:PowerColor]" settings["onlyShowMana"] = false return settings diff --git a/modules/TargetOfTargetHealth.lua b/modules/TargetOfTargetHealth.lua index 6c611c8..f501dbd 100644 --- a/modules/TargetOfTargetHealth.lua +++ b/modules/TargetOfTargetHealth.lua @@ -24,7 +24,7 @@ function TargetTargetHealth.prototype:GetDefaultSettings() settings["selfColor"] = { r = 0, g = 0, b = 1 } settings["selfDisplayMode"] = "Color as SelfColor" settings["upperText"] = "[PercentHP:Round]" - settings["lowerText"] = "[(HP:Round \"/\" MaxHP:Round):HPColor:Bracket]" + settings["lowerText"] = "[FractionalHP:Short:HPColor:Bracket]" settings["barVerticalOffset"] = 35 settings["scale"] = 0.7 settings["enabled"] = false diff --git a/modules/TargetOfTargetMana.lua b/modules/TargetOfTargetMana.lua index 04afcf5..9d6d7f3 100644 --- a/modules/TargetOfTargetMana.lua +++ b/modules/TargetOfTargetMana.lua @@ -21,7 +21,7 @@ function TargetTargetMana.prototype:GetDefaultSettings() settings["side"] = IceCore.Side.Right settings["offset"] = 11 settings["upperText"] = "[PercentMP:Round]" - settings["lowerText"] = "[FractionalMP:PowerColor]" + settings["lowerText"] = "[FractionalMP:Short:PowerColor]" settings["barVerticalOffset"] = 35 settings["scale"] = 0.7 settings["enabled"] = false