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
Alexander Sommen
VuhDo
Commits
198986ad
Commit
198986ad
authored
9 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Re-enabled option for Monochrome font hint.
parent
d79405be
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
VuhDoGuiToolbox.lua
VuhDoGuiToolbox.lua
+1
-1
VuhDoOptions/VuhDoLookAndFeelStandardFont.lua
VuhDoOptions/VuhDoLookAndFeelStandardFont.lua
+3
-3
VuhDoPanelRedraw.lua
VuhDoPanelRedraw.lua
+2
-2
changelog.txt
changelog.txt
+1
-1
No files found.
VuhDoGuiToolbox.lua
View file @
198986ad
...
...
@@ -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
"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 @
198986ad
...
...
@@ -111,9 +111,9 @@ function VUHDO_lnfStandardFontUpdateDemoText()
tOutlineText
=
""
;
end
--[[
if (sTable["USE_MONO"]) then -- -- Bugs out in MoP beta
if
(
sTable
[
"USE_MONO"
])
then
-- -- Bugs out in MoP beta
tOutlineText
=
tOutlineText
..
"MONOCHROME"
;
end
]]
end
tLabel
:
SetFont
(
sTable
[
"FONT"
],
sTable
[
"SCALE"
]
*
0
.
01
*
32
,
tOutlineText
);
...
...
@@ -129,4 +129,4 @@ function VUHDO_lnfStandardFontUpdateDemoText()
else
tLabel
:
SetTextColor
(
1
,
1
,
1
,
1
);
end
end
\ No newline at end of file
end
This diff is collapsed.
Click to expand it.
VuhDoPanelRedraw.lua
View file @
198986ad
...
...
@@ -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
if
(
sPanelSetup
[
"PANEL_COLOR"
][
"TEXT"
][
"USE_MONO"
])
then
-- Bugs out in MoP beta
sOutlineText
=
sOutlineText
..
"MONOCHROME"
;
end
]]
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 @
198986ad
...
...
@@ -11,7 +11,6 @@ Known issues:
-- 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
-- Monochrome text hint is currently disabled due to a Blizzard bug
Bugfixes:
...
...
@@ -21,6 +20,7 @@ Bugfixes:
-- Fixed localization bug when adding default custom debuffs by spell ID
-- Fixed muting of SFX and Error Speech when auto-firing spells/trinkets
-- Fixed smart cast for Holy Priest while in a Chakra stance
-- Re-enabled option for Monochrome font hint
Improvements:
...
...
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