Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Blazeflack
ElvUI_VisualAuraTimers
Commits
8e36e1b6
Commit
8e36e1b6
authored
Oct 20, 2019
by
Blazeflack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed logic for version check. Release v1.63
parent
86102f39
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
Changelog_Curse.txt
Changelog_Curse.txt
+5
-0
ElvUI_VisualAuraTimers/ElvUI_VisualAuraTimers.toc
ElvUI_VisualAuraTimers/ElvUI_VisualAuraTimers.toc
+1
-1
ElvUI_VisualAuraTimers/core.lua
ElvUI_VisualAuraTimers/core.lua
+1
-1
No files found.
Changelog_Curse.txt
View file @
8e36e1b6
<p><strong>1.63, October 20th 2019</strong></p>
<ul>
<li>Fixed version check logic so users won't see new popup too early.</li>
</ul>
<br />
<p><strong>1.62, October 20th 2019</strong></p>
<ul>
<li>Added information about features moving to ElvUI.</li>
...
...
ElvUI_VisualAuraTimers/ElvUI_VisualAuraTimers.toc
View file @
8e36e1b6
## Interface: 80205
## Author: Blazeflack
## Credit: Hydra, Cutepally
## Version: 1.6
2
## Version: 1.6
3
## Title: |cff1784d1ElvUI|r VisualAuraTimers
## Notes: Allows you to change text color and add statusbars to the 'Buffs and Debuffs' auras near the minimap.
## RequiredDeps: ElvUI
...
...
ElvUI_VisualAuraTimers/core.lua
View file @
8e36e1b6
...
...
@@ -467,7 +467,7 @@ E.PopupDialogs.VAT_INCLUDED_IN_ELVUI = {
function
VAT
:
Initialize
()
--Retail ElvUI v11.25 and Classic ElvUI v1.16 includes VAT features
if
((
WOW_PROJECT_ID
==
WOW_PROJECT_MAINLINE
and
tonumber
(
E
.
version
)
>=
11
.
25
)
or
tonumber
(
E
.
version
)
>=
1
.
16
)
then
if
((
WOW_PROJECT_ID
==
WOW_PROJECT_MAINLINE
and
tonumber
(
E
.
version
)
>=
11
.
25
)
or
(
WOW_PROJECT_ID
~=
WOW_PROJECT_MAINLINE
and
tonumber
(
E
.
version
)
>=
1
.
16
)
)
then
E
:
StaticPopup_Show
(
"VAT_INCLUDED_IN_ELVUI"
)
return
end
...
...
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