Mercurial > wow > reaction
changeset 9:650f75d08952
Version 0.32
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Tue, 20 Mar 2007 21:35:57 +0000 |
parents | c05fd3e18b4f |
children | f3a7bfebc283 |
files | README.html ReAction.toc classes/ReAction_ActionDisplay.lua |
diffstat | 3 files changed, 9 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/README.html Tue Mar 20 21:33:59 2007 +0000 +++ b/README.html Tue Mar 20 21:35:57 2007 +0000 @@ -7,8 +7,8 @@ <body bgcolor="#FFFFFF" text="#000000"> <h1 align="center">ReAction</h1> <h3 align="center">AddOn for World of Warcraft</h3> -<p><font size="2">Current Version: 0.31 (alpha)<br> - Released: 02 Feb 2007</font><font size="2"><br> +<p><font size="2">Current Version: 0.32 (alpha)<br> + Released: 03 Feb 2007</font><font size="2"><br> WoW Version Compatibility/TOC: 2.0.6 / TOC 20003</font></p> <h2>The Basics</h2> <p>ReAction is a replacement for the default Blizzard action bars. It allows you @@ -156,6 +156,10 @@ <li>Localization</li> </ul> <h2>Version History</h2> +<p>Version 0.32:</p> +<ul> + <li>Fixed a bug with displaying cooldowns generating slews of errors</li> +</ul> <p>Version 0.31:</p> <ul> <li>Fixed a bug where action IDs > 120 were being configured and allocated @@ -180,6 +184,7 @@ some first. Will probably simplify even further in a future patch. Note this doesn't fix the action-rearrangement setup headaches with warriors, druids, and rogues.</li> + <li>Cooldowns can now be hidden - either all cooldowns or just global cooldowns.</li> </ul> <p>Version 0.3</p> <ul>
--- a/ReAction.toc Tue Mar 20 21:33:59 2007 +0000 +++ b/ReAction.toc Tue Mar 20 21:35:57 2007 +0000 @@ -4,7 +4,7 @@ ## DefaultState: enabled ## LoadOnDemand: 0 ## Author: Flick -## Version: 0.31 +## Version: 0.32 ## X-Description: An action bar and button layout tool ## X-Category: Action Bars ## SavedVariables: ReActionDB
--- a/classes/ReAction_ActionDisplay.lua Tue Mar 20 21:33:59 2007 +0000 +++ b/classes/ReAction_ActionDisplay.lua Tue Mar 20 21:35:57 2007 +0000 @@ -230,7 +230,7 @@ end function RAAD:DisplayCooldown( start, duration, enable ) - enable = enable and not self.config.hideCooldown and (not self.config.hideGlobalCooldown or duration > 1.5) + enable = (enable > 0 ) and not self.config.hideCooldown and (not self.config.hideGlobalCooldown or duration > 1.5) and 1 or 0 CooldownFrame_SetTimer(self.frames.cooldown, start, duration, enable) end