Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Matthieu Saint Aubin
VuhDo
Commits
14e54740
Commit
14e54740
authored
4 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed inverted health display when shield bar is disabled
parent
ebafa80a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
4 deletions
+28
-4
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoBouquetValidators.lua
VuhDoBouquetValidators.lua
+7
-2
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
changelog.txt
changelog.txt
+19
-0
No files found.
VuhDo.toc
View file @
14e54740
## Interface: 90005
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.12
1
## Version: 3.12
2
## Notes: Raid Frames providing click-heal functionality, buff and debuff control, main tank management and much more
## SavedVariablesPerCharacter: VUHDO
_
CONFIG, VUHDO
_
PANEL
_
SETUP, VUHDO
_
SPELL
_
ASSIGNMENTS, VUHDO
_
HOSTILE
_
SPELL
_
ASSIGNMENTS, VUHDO
_
MM
_
SETTINGS, VUHDO
_
PLAYER
_
TARGETS, VUHDO
_
MAINTANK
_
NAMES, VUHDO
_
BUFF
_
SETTINGS, VUHDO
_
POWER
_
TYPE
_
COLORS, VUHDO
_
SPELLS
_
KEYBOARD, VUHDO
_
SPELL
_
CONFIG, VUHDO
_
BUFF
_
ORDER, VUHDO
_
SPEC
_
LAYOUTS, VUHDO
_
GROUP
_
SIZE, VUHDO
_
RAID, VUHDO
_
INDICATOR
_
CONFIG
## SavedVariables: VUHDO
_
DEFAULT
_
LAYOUT, VUHDO
_
DEFAULT
_
PROFILE, VUHDO
_
PROFILES, VUHDO
_
MANUAL
_
ROLES, VUHDO
_
SPELL
_
LAYOUTS, VUHDO
_
USER
_
CLASS
_
COLORS, VUHDO
_
DEBUFF
_
BLACKLIST, VUHDO
_
BOUQUETS, VUHDO
_
COMBAT
_
LOG
_
TRACE, VUHDO
_
GLOBAL
_
CONFIG, VUHDO
_
DEBUG
...
...
This diff is collapsed.
Click to expand it.
VuhDoBouquetValidators.lua
View file @
14e54740
...
...
@@ -715,8 +715,13 @@ end
local
tHealth
,
tHealthMax
;
local
function
VUHDO_statusHealthValidator
(
anInfo
,
_
)
if
sIsInverted
then
return
true
,
nil
,
anInfo
[
"health"
]
+
VUHDO_getIncHealOnUnit
(
anInfo
[
"unit"
])
+
VUHDO_getUnitOverallShieldRemain
(
anInfo
[
"unit"
]),
-
1
,
anInfo
[
"healthmax"
],
nil
,
anInfo
[
"health"
];
if
VUHDO_CONFIG
[
"SHOW_SHIELD_BAR"
]
then
tHealth
=
anInfo
[
"health"
]
+
VUHDO_getIncHealOnUnit
(
anInfo
[
"unit"
])
+
VUHDO_getUnitOverallShieldRemain
(
anInfo
[
"unit"
]);
else
tHealth
=
anInfo
[
"health"
]
+
VUHDO_getIncHealOnUnit
(
anInfo
[
"unit"
]);
end
return
true
,
nil
,
tHealth
,
-
1
,
anInfo
[
"healthmax"
],
nil
,
anInfo
[
"health"
];
else
return
true
,
nil
,
anInfo
[
"health"
],
-
1
,
anInfo
[
"healthmax"
],
nil
,
anInfo
[
"health"
];
...
...
This diff is collapsed.
Click to expand it.
VuhDoOptions/VuhDoOptions.toc
View file @
14e54740
## Interface: 90005
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.12
1
## Version: 3.12
2
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
14e54740
Version 3.122
Known issues:
-- Shadowlands stat squish cleanup still a work in progress
-- AOE Advice spell equations need complete overhaul
-- Some text providers need changes to better display small numbers
-- Debuff tooltips are currently bugged when using ElvUI
-- Deselect 'VuhDo Options > Panels > Tooltips > Tooltips > Debuffs'
Bugfixes:
-- Fixed inverted health display when shield bar is disabled
Improvements:
--------------------------------------------------------------
Version 3.121
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment