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
Justin Piper
VuhDo
Commits
c59c0473
Commit
c59c0473
authored
9 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Monochrome font outline hint should now work for all clients without crashing.
parent
81d82f36
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
32 additions
and
9 deletions
+32
-9
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoGuiToolbox.lua
VuhDoGuiToolbox.lua
+1
-1
VuhDoOptions/VuhDoLookAndFeelStandardFont.lua
VuhDoOptions/VuhDoLookAndFeelStandardFont.lua
+3
-3
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
VuhDoPanelRedraw.lua
VuhDoPanelRedraw.lua
+3
-3
changelog.txt
changelog.txt
+23
-0
No files found.
VuhDo.toc
View file @
c59c0473
## Interface: 60200
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.7
0
## Version: 3.7
1
## 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.
VuhDoGuiToolbox.lua
View file @
c59c0473
...
...
@@ -732,7 +732,7 @@ function VUHDO_customizeIconText(aParent, aHeight, aLabel, aSetup)
aLabel
:
ClearAllPoints
();
aLabel
:
SetPoint
(
aSetup
[
"ANCHOR"
],
aParent
:
GetName
(),
aSetup
[
"ANCHOR"
],
tFactor
*
aSetup
[
"X_ADJUST"
],
-
tFactor
*
aSetup
[
"Y_ADJUST"
]);
tOutline
=
aSetup
[
"USE_OUTLINE"
]
and
"OUTLINE|"
or
""
;
--
tOutline = tOutline .. (aSetup["USE_MONO"] and "MONOCHROME" or ""); -- Bugs out in MoP beta
tOutline
=
tOutline
..
(
aSetup
[
"USE_MONO"
]
and
"
OUTLINE
MONOCHROME"
or
""
);
-- Bugs out in MoP beta
tColor
=
aSetup
[
"COLOR"
];
if
tColor
then
...
...
This diff is collapsed.
Click to expand it.
VuhDoOptions/VuhDoLookAndFeelStandardFont.lua
View file @
c59c0473
...
...
@@ -111,9 +111,9 @@ function VUHDO_lnfStandardFontUpdateDemoText()
tOutlineText
=
""
;
end
--
if (sTable["USE_MONO"]) then -- -- Bugs out in MoP beta
--
tOutlineText = tOutlineText .. "MONOCHROME";
--
end
if
(
sTable
[
"USE_MONO"
])
then
-- -- Bugs out in MoP beta
tOutlineText
=
tOutlineText
..
"
OUTLINE
MONOCHROME"
;
end
tLabel
:
SetFont
(
sTable
[
"FONT"
],
sTable
[
"SCALE"
]
*
0
.
01
*
32
,
tOutlineText
);
...
...
This diff is collapsed.
Click to expand it.
VuhDoOptions/VuhDoOptions.toc
View file @
c59c0473
## Interface: 60200
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.7
0
## Version: 3.7
1
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
VuhDoPanelRedraw.lua
View file @
c59c0473
...
...
@@ -81,9 +81,9 @@ function VUHDO_initLocalVars(aPanelNum)
sLifeFontHeight
=
sPanelSetup
[
"PANEL_COLOR"
][
"TEXT"
][
"textSizeLife"
];
sOutlineText
=
sPanelSetup
[
"PANEL_COLOR"
][
"TEXT"
][
"outline"
]
and
"OUTLINE|"
or
""
;
--
if (sPanelSetup["PANEL_COLOR"]["TEXT"]["USE_MONO"]) then -- Bugs out in MoP beta
--
sOutlineText = sOutlineText .. "MONOCHROME";
--
end
if
(
sPanelSetup
[
"PANEL_COLOR"
][
"TEXT"
][
"USE_MONO"
])
then
-- Bugs out in MoP beta
sOutlineText
=
sOutlineText
..
"
OUTLINE
MONOCHROME"
;
end
sShadowAlpha
=
sPanelSetup
[
"PANEL_COLOR"
][
"TEXT"
][
"USE_SHADOW"
]
and
1
or
0
;
sBarHeight
=
VUHDO_getHealthBarHeight
(
aPanelNum
);
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
c59c0473
Version 3.71.
Known issues:
-- Limited support for Garrison Bodyguards
-- Bodyguards can be used in panels when set to target or focus
-- Bodyguards have no unit ID so for now are only partially supported
-- AOE advisor not yet updated for Warlords of Draenor
-- Need new spell formulas and coefficients
-- Incoming heal estimation reported is not even close to accurate
-- Bug in Blizzard API UnitGetIncomingHeals() - returns bogus values
-- Holy Priest spells derived from Chakra stance behave oddly as of 6.0.2
-- Stance specific spells must all use the spell name Holy Word: Chastise
Bugfixes:
-- Monochrome font outline should now work for all clients without crashing
Improvements:
--------------------------------------------------------------
Version 3.70.
...
...
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