diff --git a/VuhDo.toc b/VuhDo.toc index 0b896f2815d23725ff605c3bc85a644e97e85828..14df5611b850a935f727297b7edcf530ef30103a 100644 --- a/VuhDo.toc +++ b/VuhDo.toc @@ -1,7 +1,7 @@ ## Interface: 60200 ## Title: VuhDo ['vu:du:] ## Author: Iza@Gilneas, humfras, Ivaria@Hyjal -## Version: 3.70 +## Version: 3.71 ## 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 diff --git a/VuhDoGuiToolbox.lua b/VuhDoGuiToolbox.lua index 194ae6d60e58dcea3edb2811878fdc7f6832b125..bff5146e264e8684e0e0911d0da24ede7903a30e 100644 --- a/VuhDoGuiToolbox.lua +++ b/VuhDoGuiToolbox.lua @@ -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 "OUTLINEMONOCHROME" or ""); -- Bugs out in MoP beta tColor = aSetup["COLOR"]; if tColor then diff --git a/VuhDoOptions/VuhDoLookAndFeelStandardFont.lua b/VuhDoOptions/VuhDoLookAndFeelStandardFont.lua index 482f157227ce9034415332df852e84a91990e875..8831da8bdbc4171f962effd3031ea1278234b9a4 100644 --- a/VuhDoOptions/VuhDoLookAndFeelStandardFont.lua +++ b/VuhDoOptions/VuhDoLookAndFeelStandardFont.lua @@ -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 .. "OUTLINEMONOCHROME"; + end tLabel:SetFont(sTable["FONT"], sTable["SCALE"] * 0.01 * 32, tOutlineText); diff --git a/VuhDoOptions/VuhDoOptions.toc b/VuhDoOptions/VuhDoOptions.toc index aa6ca592b541b98390183479b0607ad21173a151..9cd3a3de0f54646f15443c0d4b6c3e1d07ca2793 100644 --- a/VuhDoOptions/VuhDoOptions.toc +++ b/VuhDoOptions/VuhDoOptions.toc @@ -1,7 +1,7 @@ ## Interface: 60200 ## Title: VuhDo ['vu:du:] - Options ## Author: Iza@Gilneas, humfras, Ivaria@Hyjal -## Version: 3.70 +## Version: 3.71 ## Notes: VuhDo Options ## SavedVariables: VUHDO_OPTIONS_SETTINGS ## SavedVariablesPerCharacter: VUHDO_GLOBAL_ICONS, VUHDO_GI_SCAN_IDX diff --git a/VuhDoPanelRedraw.lua b/VuhDoPanelRedraw.lua index a649fc06a3230872c2a262738e3d064a77f38d70..a66d5c8f7cf9ed53c8e6a45fa49f48b0b63b2f11 100644 --- a/VuhDoPanelRedraw.lua +++ b/VuhDoPanelRedraw.lua @@ -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 .. "OUTLINEMONOCHROME"; + end sShadowAlpha = sPanelSetup["PANEL_COLOR"]["TEXT"]["USE_SHADOW"] and 1 or 0; sBarHeight = VUHDO_getHealthBarHeight(aPanelNum); diff --git a/changelog.txt b/changelog.txt index 836611a7f938bd95dd5cf87f2d4ad3c823fe5206..3537589e1422f95fae8691e261fd10c6bd30328f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,26 @@ +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.