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
Kris
VuhDo
Commits
a478dc4c
Commit
a478dc4c
authored
5 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Use LibTotemInfo to replace removed Blizzard API GetTotemInfo
parent
b76265d8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
51 additions
and
5 deletions
+51
-5
.pkgmeta
.pkgmeta
+1
-0
VuhDo.toc
VuhDo.toc
+3
-2
VuhDoAddonAdapter.lua
VuhDoAddonAdapter.lua
+1
-0
VuhDoBuffWatch.lua
VuhDoBuffWatch.lua
+1
-1
VuhDoOptions/VuhDoOptions.toc
VuhDoOptions/VuhDoOptions.toc
+2
-2
changelog.txt
changelog.txt
+43
-0
No files found.
.pkgmeta
View file @
a478dc4c
...
...
@@ -30,6 +30,7 @@ externals:
Libs/LibClassicDurations: https://repos.curseforge.com/wow/libclassicdurations
Libs/LibHealComm-4.0: https://repos.wowace.com/wow/libhealcomm-4-0
Libs/ThreatClassic-1.0: https://github.com/EsreverWoW/LibThreatClassic.git
Libs/!LibTotemInfo: https://github.com/SwimmingTiger/LibTotemInfo.git
VuhDoOptions/Libs/ChatThrottleLib: svn://svn.wowace.com/wow/chatthrottlelib/mainline/trunk
...
...
This diff is collapsed.
Click to expand it.
VuhDo.toc
View file @
a478dc4c
## Interface: 1130
2
## Interface: 1130
3
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.11
0
-classic
## Version: 3.11
1
-classic
## 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
...
...
@@ -21,6 +21,7 @@ Libs\AceSerializer-3.0\AceSerializer-3.0.xml
Libs
\UTF
8
\utf
8.lua
Libs
\UTF
8
\utf
8data.lua
Libs
\ThreatClassic
-1.0
\lib
.xml
Libs
\!
LibTotemInfo
\embeds
.xml
VuhDo.xml
VuhDoPanel.xml
...
...
This diff is collapsed.
Click to expand it.
VuhDoAddonAdapter.lua
View file @
a478dc4c
...
...
@@ -25,6 +25,7 @@ if VUHDO_LibClassicDurations then
end
VUHDO_LibThreatClassic
=
LibStub
(
"ThreatClassic-1.0"
);
VUHDO_LibTotemInfo
=
LibStub
(
"LibTotemInfo-1.0"
);
VUHDO_LibSharedMedia
:
Register
(
"font"
,
"Arial Black"
,
"Interface\\AddOns\\VuhDo\\Fonts\\ariblk.ttf"
);
VUHDO_LibSharedMedia
:
Register
(
"font"
,
"Emblem"
,
"Interface\\AddOns\\VuhDo\\Fonts\\Emblem.ttf"
);
...
...
This diff is collapsed.
Click to expand it.
VuhDoBuffWatch.lua
View file @
a478dc4c
...
...
@@ -43,7 +43,7 @@ local VUHDO_isInBattleground;
local
VUHDO_brightenTextColor
;
local
VUHDO_isConfigDemoUsers
;
local
GetTotemInfo
=
GetTotemInfo
;
local
GetTotemInfo
=
VUHDO_LibTotemInfo
.
GetTotemInfo
;
local
table
=
table
;
local
strsub
=
strsub
;
local
GetTime
=
GetTime
;
...
...
This diff is collapsed.
Click to expand it.
VuhDoOptions/VuhDoOptions.toc
View file @
a478dc4c
## Interface: 1130
2
## Interface: 1130
3
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.11
0
-classic
## Version: 3.11
1
-classic
## Notes: VuhDo Options
## SavedVariables: VUHDO
_
OPTIONS
_
SETTINGS
## SavedVariablesPerCharacter: VUHDO
_
GLOBAL
_
ICONS, VUHDO
_
GI
_
SCAN
_
IDX
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
a478dc4c
Version 3.111-classic
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:
-- Use LibTotemInfo to replace removed Blizzard API GetTotemInfo
Improvements:
--------------------------------------------------------------
Version 3.111
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:
Improvements:
--------------------------------------------------------------
Version 3.110-classic
...
...
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