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
KnewOne
VuhDo
Commits
c53258f1
Commit
c53258f1
authored
5 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
-- Safer sound playback for profiles created w/ old versions of LSM (pre 2010?)
parent
ce27e895
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
7 deletions
+35
-7
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
VuhDoToolbox.lua
VuhDoToolbox.lua
+10
-5
changelog.txt
changelog.txt
+23
-0
No files found.
VuhDo.toc
View file @
c53258f1
## Interface: 80200
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.10
5
## Version: 3.10
6
## 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.
VuhDoOptions/VuhDoOptions.toc
View file @
c53258f1
## Interface: 80200
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.10
5
## Version: 3.10
6
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
VuhDoToolbox.lua
View file @
c53258f1
...
...
@@ -1000,26 +1000,31 @@ end
function VUHDO_playSoundFile(aSound)
if (aSound and aSound == "Interface\\Quiet.ogg") then
if (aSound and
(
aSound == "Interface\\Quiet.ogg"
or aSound == "Interface\\Quiet.mp3")
) then
-- sweep and reset any sound settings referencing the old '
none
' LSM default
for _, tDebuffInfo in pairs(VUHDO_CONFIG["CUSTOM_DEBUFF"]["STORED_SETTINGS"]) do
if (tDebuffInfo["SOUND"] and tDebuffInfo["SOUND"] == "Interface\\Quiet.ogg") then
if (tDebuffInfo["SOUND"] and
(tDebuffInfo["SOUND"] == "Interface\\Quiet.ogg" or
tDebuffInfo["SOUND"] == "Interface\\Quiet.mp3")) then
tDebuffInfo["SOUND"] = nil;
end
end
-- reset custom debuff default sound if set to old '
none
' LSM default
if (VUHDO_CONFIG["CUSTOM_DEBUFF"]["SOUND"] and
VUHDO_CONFIG["CUSTOM_DEBUFF"]["SOUND"] == "Interface\\Quiet.ogg") then
(VUHDO_CONFIG["CUSTOM_DEBUFF"]["SOUND"] == "Interface\\Quiet.ogg" or
VUHDO_CONFIG["CUSTOM_DEBUFF"]["SOUND"] == "Interface\\Quiet.mp3")) then
VUHDO_CONFIG["CUSTOM_DEBUFF"]["SOUND"] = nil;
end
-- reset standard debuff sound if set to old '
none
' LSM default
if (VUHDO_CONFIG["SOUND_DEBUFF"] and VUHDO_CONFIG["SOUND_DEBUFF"] == "Interface\\Quiet.ogg") then
if (VUHDO_CONFIG["SOUND_DEBUFF"] and
(VUHDO_CONFIG["SOUND_DEBUFF"] == "Interface\\Quiet.ogg" or
VUHDO_CONFIG["SOUND_DEBUFF"] == "Interface\\Quiet.mp3")) then
VUHDO_CONFIG["SOUND_DEBUFF"] = nil;
end
-- return success because we'
ve
played
nothing
as
requested
(
i
e
.
Quiet
.
ogg
)
-- return success because we'
ve
played
nothing
as
requested
(
e
g
.
Quiet
.
ogg
)
return
true
;
end
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
c53258f1
Version 3.106
Known issues:
-- BfA 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'
-- In 8.2.0 Blizzard removed the ability to play sounds by file path
-- If you have LibSharedMedia installed make sure it is up to date
-- You may need to reselect your sound options in VuhDo for debuffs
-- VuhDo Options frame cannot be moved due to a bug introduced in 8.2
Bugfixes:
-- Safer sound playback for profiles created w/ old versions of LSM
Improvements:
--------------------------------------------------------------
Version 3.105
...
...
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