Merge tag 'v1.20-Release' into develop

v1.20-Release
This commit is contained in:
Sumsebrum 2021-09-15 00:55:40 +02:00
commit 95106eab1e
4 changed files with 35 additions and 10 deletions

View File

@ -26,9 +26,9 @@ 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.19 Gladdy.version_minor_num = 0.20
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.release
Gladdy.version = PREFIX .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType Gladdy.version = PREFIX .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType
Gladdy.VERSION_REGEX = VERSION_REGEX Gladdy.VERSION_REGEX = VERSION_REGEX

View File

@ -1,6 +1,6 @@
## Interface: 20501 ## Interface: 20502
## Title: Gladdy - TBC ## Title: Gladdy - TBC
## Version: 1.19-Beta ## Version: 1.20-Release
## 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

@ -216,7 +216,7 @@ function Gladdy:SetupOptions()
args = { args = {
test = { test = {
order = 1, order = 1,
width = "0.7", width = 0.7,
name = L["Test"], name = L["Test"],
type = "execute", type = "execute",
func = function() func = function()
@ -225,7 +225,7 @@ function Gladdy:SetupOptions()
}, },
hide = { hide = {
order = 2, order = 2,
width = "0.7", width = 0.7,
name = L["Hide"], name = L["Hide"],
type = "execute", type = "execute",
func = function() func = function()
@ -235,19 +235,25 @@ function Gladdy:SetupOptions()
}, },
reload = { reload = {
order = 3, order = 3,
width = "0.7", width = 0.7,
name = L["ReloadUI"], name = L["ReloadUI"],
type = "execute", type = "execute",
func = function() func = function()
ReloadUI() ReloadUI()
end, end,
}, },
version = {
order = 4,
width = 1,
type = "description",
name = " Gladdy v" .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType
},
general = { general = {
type = "group", type = "group",
name = L["General"], name = L["General"],
desc = L["General settings"], desc = L["General settings"],
childGroups = "tab", childGroups = "tab",
order = 4, order = 5,
args = { args = {
locked = { locked = {
type = "toggle", type = "toggle",
@ -728,7 +734,7 @@ function Gladdy:SetupOptions()
}, },
} }
local order = 5 local order = 6
for k, v in pairsByKeys(self.modules) do for k, v in pairsByKeys(self.modules) do
self:SetupModule(k, v, order) self:SetupModule(k, v, order)
order = order + 1 order = order + 1

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.19-Beta Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v1.19-Beta/Gladdy_TBC-Classic_v1.19-Beta.zip) ## [v1.20-Release Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v1.20-Release/Gladdy_TBC-Classic_v1.20-Release.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,25 @@ The goal is to make Gladdy highly configurable in it's appearance. Everything ca
### Changes ### Changes
### v1.20-Release
- configurable DR duration
- scale in 0.01 percent steps
- added Net-o-Matic, Nigh Invulnerablility Shield, Nigh Invulnerablility Backfire & Flee (Skull of Impending Doom) to Auras
- added Mangle, Chastise, Avenging Wrath, Rapid Fire to BuffsDebuffs
- improved testmode to only activate Auras/Buffs/Debuffs/Dr's that are actually enabled
- added Mir's profile to XiconProfiles
- added zhTW localization
- added buttons for Test, Hide & Reload in the config
- added version in config
- ArenaCountdown upgrade
- Repentance, Freezing Trap & Wyvern Sting are now disorients
- import string now ignores errors on deleted options
- added (un)checkAll button in DR-Categories in Diminishing Module
- totemplates fix option to alter all colors/alphas
- hide blizzard arena pets as well
- fix shadowsight timer showing when not in arena or testmode
- some minor refactoring / optimization
### v1.19-Beta ### v1.19-Beta
- fix gladdy frames not showing v2 - fix gladdy frames not showing v2
- minor bug fixes - minor bug fixes