Merge tag 'v1.20-Release' into develop
v1.20-Release
This commit is contained in:
commit
95106eab1e
@ -26,9 +26,9 @@ local MAJOR, MINOR = "Gladdy", 4
|
||||
local Gladdy = LibStub:NewLibrary(MAJOR, MINOR)
|
||||
local L
|
||||
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_releaseType = RELEASE_TYPES.beta
|
||||
Gladdy.version_releaseType = RELEASE_TYPES.release
|
||||
Gladdy.version = PREFIX .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType
|
||||
Gladdy.VERSION_REGEX = VERSION_REGEX
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
## Interface: 20501
|
||||
## Interface: 20502
|
||||
## Title: Gladdy - TBC
|
||||
## Version: 1.19-Beta
|
||||
## Version: 1.20-Release
|
||||
## Notes: The most powerful arena AddOn for WoW 2.5.1
|
||||
## Author: XiconQoo, DnB_Junkee, Knall
|
||||
## X-Email: contact me on discord Knall#1751
|
||||
|
16
Options.lua
16
Options.lua
@ -216,7 +216,7 @@ function Gladdy:SetupOptions()
|
||||
args = {
|
||||
test = {
|
||||
order = 1,
|
||||
width = "0.7",
|
||||
width = 0.7,
|
||||
name = L["Test"],
|
||||
type = "execute",
|
||||
func = function()
|
||||
@ -225,7 +225,7 @@ function Gladdy:SetupOptions()
|
||||
},
|
||||
hide = {
|
||||
order = 2,
|
||||
width = "0.7",
|
||||
width = 0.7,
|
||||
name = L["Hide"],
|
||||
type = "execute",
|
||||
func = function()
|
||||
@ -235,19 +235,25 @@ function Gladdy:SetupOptions()
|
||||
},
|
||||
reload = {
|
||||
order = 3,
|
||||
width = "0.7",
|
||||
width = 0.7,
|
||||
name = L["ReloadUI"],
|
||||
type = "execute",
|
||||
func = function()
|
||||
ReloadUI()
|
||||
end,
|
||||
},
|
||||
version = {
|
||||
order = 4,
|
||||
width = 1,
|
||||
type = "description",
|
||||
name = " Gladdy v" .. Gladdy.version_num .. "-" .. Gladdy.version_releaseType
|
||||
},
|
||||
general = {
|
||||
type = "group",
|
||||
name = L["General"],
|
||||
desc = L["General settings"],
|
||||
childGroups = "tab",
|
||||
order = 4,
|
||||
order = 5,
|
||||
args = {
|
||||
locked = {
|
||||
type = "toggle",
|
||||
@ -728,7 +734,7 @@ function Gladdy:SetupOptions()
|
||||
},
|
||||
}
|
||||
|
||||
local order = 5
|
||||
local order = 6
|
||||
for k, v in pairsByKeys(self.modules) do
|
||||
self:SetupModule(k, v, order)
|
||||
order = order + 1
|
||||
|
21
README.md
21
README.md
@ -1,7 +1,7 @@
|
||||
# Gladdy - TBC
|
||||
|
||||
### 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
|
||||
|
||||
@ -62,6 +62,25 @@ The goal is to make Gladdy highly configurable in it's appearance. Everything ca
|
||||
|
||||
### 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
|
||||
- fix gladdy frames not showing v2
|
||||
- minor bug fixes
|
||||
|
Loading…
Reference in New Issue
Block a user