Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VuhDo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
121
Issues
121
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
Operations
Operations
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
VuhDo
VuhDo
Commits
15bcb040
Commit
15bcb040
authored
Feb 15, 2020
by
Ivaria
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debuffs are now considered 'removable only' if the unit is friendly
parent
fe545f07
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
4 deletions
+27
-4
VuhDo.toc
VuhDo.toc
+1
-1
VuhDoDebuffs.lua
VuhDoDebuffs.lua
+3
-2
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+1
-1
changelog.txt
changelog.txt
+22
-0
No files found.
VuhDo.toc
View file @
15bcb040
## Interface: 80300
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.11
1
## Version: 3.11
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
...
...
VuhDoDebuffs.lua
View file @
15bcb040
...
...
@@ -50,6 +50,7 @@ local VUHDO_DEBUFF_BLACKLIST = { };
local
UnitDebuff
=
UnitDebuff
;
local
UnitBuff
=
UnitBuff
;
local
UnitIsFriend
=
UnitIsFriend
;
local
table
=
table
;
local
GetTime
=
GetTime
;
local
PlaySoundFile
=
PlaySoundFile
;
...
...
@@ -346,7 +347,7 @@ function VUHDO_determineDebuff(aUnit)
end
tType
=
VUHDO_DEBUFF_TYPES
[
tTypeString
];
tAbility
=
VUHDO_PLAYER_ABILITIES
[
tType
];
tAbility
=
VUHDO_PLAYER_ABILITIES
[
tType
]
and
UnitIsFriend
(
"player"
,
aUnit
)
;
tIsRelevant
=
not
VUHDO_IGNORE_DEBUFF_NAMES
[
tName
]
and
not
(
VUHDO_IGNORE_DEBUFFS_BY_CLASS
[
tInfo
[
"class"
]
or
""
]
or
sEmpty
)[
tName
];
...
...
@@ -371,7 +372,7 @@ function VUHDO_determineDebuff(aUnit)
end
-- Entweder Fhigkeit vorhanden ODER noch keiner gewhlt UND auch nicht entfernbare
-- Either ability available OR none selected AND not removable (DETECT_DEBUFFS_REMOVABLE_ONLY
_ICONS
)
-- Either ability available OR none selected AND not removable (DETECT_DEBUFFS_REMOVABLE_ONLY)
if
tType
and
(
tAbility
or
(
sCurChosenType
==
0
and
sIsNotRemovableOnly
))
then
-- VUHDO_DEBUFF_TYPE_NONE
sCurChosenType
=
tType
;
tUnitDebuffInfo
[
"CHOSEN"
][
1
],
tUnitDebuffInfo
[
"CHOSEN"
][
2
]
=
tIcon
,
tStacks
;
...
...
VuhDoOptions/VuhDoOptions.toc
View file @
15bcb040
## Interface: 80300
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.11
1
## Version: 3.11
2
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
changelog.txt
View file @
15bcb040
Version 3.112
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
Bugfixes:
-- Debuffs are now considered 'removable only' if the unit is friendly
Improvements:
--------------------------------------------------------------
Version 3.111
...
...
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