Compare commits

...

9 Commits

Author SHA1 Message Date
da54c659bc Merge branch 'hotfix/ci-disable' into main 2021-06-22 12:19:11 +02:00
6be94215b9 CI disable hotfix 2021-06-22 12:18:45 +02:00
03a55395b8 Merge branch 'release/v1.16' into main 2021-06-22 12:07:50 +02:00
8409ac1b96 bump version + readme 2021-06-22 12:07:15 +02:00
d653c76e37 stealth unit when rangecheck disabled 2021-06-22 12:04:59 +02:00
984c22a861 Merge tag 'entangling-roots-ng' into develop
v1.15-Beta hotfix nature's grasp
2021-06-20 14:03:06 +02:00
5b348b760c Merge tag 'button-fix-up' into develop
v1.14-Beta hotfix
2021-06-20 13:16:05 +02:00
9dab6b7299 Merge tag 'miraage-mention' into develop
miraage readme
2021-06-20 11:12:43 +02:00
2c21a6e770 Merge tag 'v1.13-Beta' into develop
v1.13-Beta
2021-06-20 02:57:50 +02:00
5 changed files with 13 additions and 4 deletions

View File

@ -25,7 +25,7 @@ local MAJOR, MINOR = "Gladdy", 4
local Gladdy = LibStub:NewLibrary(MAJOR, MINOR) local Gladdy = LibStub:NewLibrary(MAJOR, MINOR)
local L local L
Gladdy.version_major_num = 1 Gladdy.version_major_num = 1
Gladdy.version_minor_num = 0.15 Gladdy.version_minor_num = 0.16
Gladdy.version_num = Gladdy.version_major_num + Gladdy.version_minor_num Gladdy.version_num = Gladdy.version_major_num + Gladdy.version_minor_num
Gladdy.version_releaseType = RELEASE_TYPES.beta Gladdy.version_releaseType = RELEASE_TYPES.beta
Gladdy.version = PREFIX .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType Gladdy.version = PREFIX .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType

View File

@ -1,6 +1,6 @@
## Interface: 20501 ## Interface: 20501
## Title: Gladdy - TBC ## Title: Gladdy - TBC
## Version: 1.15-Beta ## Version: 1.16-Beta
## Notes: The most powerful arena AddOn for WoW 2.5.1 ## Notes: The most powerful arena AddOn for WoW 2.5.1
## Author: XiconQoo, DnB_Junkee, Knall ## Author: XiconQoo, DnB_Junkee, Knall
## X-Email: contact me on discord Knall#1751 ## X-Email: contact me on discord Knall#1751

View File

@ -95,7 +95,7 @@ function CombatIndicator.OnEvent(self, elapsed)
if (self.lastTimeUpdated > self.updateInterval) then if (self.lastTimeUpdated > self.updateInterval) then
for i=1,Gladdy.curBracket do for i=1,Gladdy.curBracket do
local unit = "arena" .. i local unit = "arena" .. i
if CombatIndicator.test or (UnitExists(unit) and UnitAffectingCombat(unit)) then if Gladdy.db.ciEnabled and (CombatIndicator.test or (UnitExists(unit) and UnitAffectingCombat(unit))) then
CombatIndicator.frames[unit]:Show() CombatIndicator.frames[unit]:Show()
else else
CombatIndicator.frames[unit]:Hide() CombatIndicator.frames[unit]:Hide()

View File

@ -185,9 +185,15 @@ function RangeCheck:ENEMY_STEALTH(unit, stealth)
button.lastState = 0 button.lastState = 0
if stealth then if stealth then
button.classColors = { r = 0.66, g = 0.66, b = 0.66 } button.classColors = { r = 0.66, g = 0.66, b = 0.66 }
if not Gladdy.db.rangeCheckEnabled then
button.healthBar.hp:SetStatusBarColor(0.66, 0.66, 0.66, 1)
end
else else
if button.class then if button.class then
button.classColors = { r = RAID_CLASS_COLORS[button.class].r, g = RAID_CLASS_COLORS[button.class].g, b = RAID_CLASS_COLORS[button.class].b } button.classColors = { r = RAID_CLASS_COLORS[button.class].r, g = RAID_CLASS_COLORS[button.class].g, b = RAID_CLASS_COLORS[button.class].b }
if not Gladdy.db.rangeCheckEnabled then
button.healthBar.hp:SetStatusBarColor(RAID_CLASS_COLORS[button.class].r, RAID_CLASS_COLORS[button.class].g, RAID_CLASS_COLORS[button.class].b, 1)
end
end end
end end
end end

View File

@ -1,7 +1,7 @@
# Gladdy - TBC # Gladdy - TBC
### The most powerful arena addon for WoW TBC 2.5.1 ### The most powerful arena addon for WoW TBC 2.5.1
## [v1.15-Beta Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v1.15-Beta/Gladdy_TBC-Classic_v1.15-Beta.zip) ## [v1.16-Beta Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v1.16-Beta/Gladdy_TBC-Classic_v1.16-Beta.zip)
###### <a target="_blank" rel="noopener noreferrer" href="https://www.paypal.me/xiconqoo/10"><img src="https://raw.githubusercontent.com/XiconQoo/Gladdy/readme-media/Paypal-Donate.png" height="30" style="margin-top:-30px;position:relative;top:20px;"></a> Please consider donating if you like my work ###### <a target="_blank" rel="noopener noreferrer" href="https://www.paypal.me/xiconqoo/10"><img src="https://raw.githubusercontent.com/XiconQoo/Gladdy/readme-media/Paypal-Donate.png" height="30" style="margin-top:-30px;position:relative;top:20px;"></a> Please consider donating if you like my work
@ -62,6 +62,9 @@ The goal is to make Gladdy highly configurable in it's appearance. Everything ca
### Changes ### Changes
### v1.16-Beta
- unit gray in stealth when rangecheck module disabled
### v1.15-Beta ### v1.15-Beta
- hotfix added entangling roots nature's grasp - hotfix added entangling roots nature's grasp