Renamed HarmonyPower to Chi

Updated readme link to the create-your-own-texture guide
This commit is contained in:
Parnic
2018-07-20 13:20:27 -05:00
parent 6445b424b3
commit 02ad6253d3
5 changed files with 14 additions and 6 deletions

View File

@ -173,6 +173,13 @@ function IceCore.prototype:CheckDisplayUpdateMessage()
self.settings.modules["DruidMana"] = nil
end
end
if self.accountSettings.lastRunVersion <= 20180720033008 then
if self.settings.modules["HarmonyPower"] ~= nil then
self.settings.modules["Chi"] = self.settings.modules["HarmonyPower"]
self.settings.modules["HarmonyPower"] = nil
self.settings.colors["ChiNumeric"] = self.settings.colors["HarmonyPowerNumeric"]
end
end
self.accountSettings.lastRunVersion = thisVersion
end
end

View File

@ -71,7 +71,7 @@ This isn't |cff9999ffIceHUD|r - it's Blizzard's Spell Alerts they added in 4.0.1
Expand "|cffffdc42Module Settings|r", expand whatever module you want to move (e.g. PlayerHealth, PlayerMana), and adjust the "Side" and "Offset" settings. "Side" controls whether it's on the left or the right and "Offset" controls how far from center it is.
|cff9999ff14. Which module displays Monk Chi power?|r
This module is called |cffdcff42HarmonyPower|r. Harmony was the original name for Chi back when 5.0 was in beta, so I used Blizzard's name for it while I was developing for Cataclysm. I feel like it's too late to change now that many people are familiar with the Harmony name.
Prior to |cff9999ffIceHUD|r v1.11.2, this module was called |cffdcff42HarmonyPower|r. Harmony was the original name for Chi back when 5.0 was in beta, so I used Blizzard's name for it while I was developing for Cataclysm. |cff9999ffIceHUD|r v1.11.2 changed this module to be called |cffdcff42Chi|r.
|cff9999ff15. How do I add commas/periods into big numbers like health?|r
If you have |cff42ffffDogTags|r enabled, you can open the Text Settings for the module in question and add SeparateDigits() around the tag you're trying to split up. To display Health/MaxHealth with commas, use: [(SeparateDigits(HP):HPColor "/" SeparateDigits(MaxHP):HPColor):Bracket]. To use periods instead of commas, use: [(SeparateDigits(HP, "."):HPColor "/" SeparateDigits(MaxHP, "."):HPColor):Bracket]. Use the /dog help menu to build your own similar tags for Mana, etc.

View File

@ -1,6 +1,7 @@
v1.11.2:
- Fixed Stagger bar to work in 8.0
- Fixed DK Runes in graphical mode not always correctly showing runes on cooldown (curse ticket 238, thanks ithorazei!)
- Renamed HarmonyPower module to Chi and moved saved settings over
v1.11.1:
- Fixed error when playing as a Monk

View File

@ -7,9 +7,9 @@ if IceHUD.WowVer >= 80000 then
end
function HarmonyPower.prototype:init()
HarmonyPower.super.prototype.init(self, "HarmonyPower")
HarmonyPower.super.prototype.init(self, "Chi")
self:SetDefaultColor("HarmonyPowerNumeric", 218, 231, 31)
self:SetDefaultColor("ChiNumeric", 218, 231, 31)
-- pulled from MonkHarmonyBar.xml in Blizzard's UI source
self.runeCoords =
@ -22,7 +22,7 @@ function HarmonyPower.prototype:init()
{0.00390625, 0.08593750, 0.71093750, 0.87500000},
}
self.numRunes = 4
self.numericColor = "HarmonyPowerNumeric"
self.numericColor = "ChiNumeric"
if IceHUD.WowVer >= 50100 then
self.unitPower = SPELL_POWER_CHI
else

View File

@ -63,7 +63,7 @@ IceHUD is a highly configurable and customizable HUD addon in the spirit of DHUD
Type /icehud, expand Module Settings, expand whatever module you want to move (e.g. PlayerHealth, PlayerMana), and adjust the "Side" and "Offset" settings. "Side" controls whether it's on the left or the right and "Offset" controls how far from center it is.
1. **Which module displays Monk Chi power?**
This module is called HarmonyPower. Harmony was the original name for Chi back when 5.0 was in beta, so I used Blizzard's name for it while I was developing for Cataclysm. I feel like it's too late to change now that many people are familiar with the Harmony name.
Prior to v1.11.2, this module was called HarmonyPower. Harmony was the original name for Chi back when 5.0 was in beta, so I used Blizzard's name for it while I was developing for Cataclysm. IceHUD v1.11.2 changed this module to be called Chi.
1. **How do I add commas/periods into big numbers like health?**
If you have DogTags enabled, you can open the Text Settings for the module in question and add SeparateDigits() around the tag you're trying to split up. To display Health/MaxHealth with commas, use: [(SeparateDigits(HP):HPColor "/" SeparateDigits(MaxHP):HPColor):Bracket]. To use periods instead of commas, use: [(SeparateDigits(HP, "."):HPColor "/" SeparateDigits(MaxHP, "."):HPColor):Bracket]. Use the /dog help menu to build your own similar tags for Mana, etc.
@ -78,4 +78,4 @@ IceHUD is a highly configurable and customizable HUD addon in the spirit of DHUD
Blizzard added a "Personal Resource Display" feature in the 7.0 game client. You can disable it in the Game options -> Interface -> Names -> Personal Resource Display.
See [here](http://www.wowace.com/addons/ice-hud/tickets/113-basic-guide-to-texture-creation/) for a user-created guide to creating new IceHUD textures.
See [here](https://www.wowace.com/projects/ice-hud/issues/113) for a user-created guide to creating new IceHUD textures.