From f36883df31e88bfef311031ed49b50e1743b3ced Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Wed, 15 Sep 2021 00:42:36 +0200 Subject: [PATCH 1/3] add version in options --- Options.lua | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Options.lua b/Options.lua index 0c8faa6..e0c7f37 100644 --- a/Options.lua +++ b/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 From c3a1555932e0115ed879d52ec90ca63db4129929 Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Wed, 15 Sep 2021 00:42:49 +0200 Subject: [PATCH 2/3] bump version --- Gladdy.lua | 4 ++-- Gladdy.toc | 4 ++-- README.md | 5 ++++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Gladdy.lua b/Gladdy.lua index 5d4d709..a3f6578 100644 --- a/Gladdy.lua +++ b/Gladdy.lua @@ -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 diff --git a/Gladdy.toc b/Gladdy.toc index ba5a687..b3623bc 100644 --- a/Gladdy.toc +++ b/Gladdy.toc @@ -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 diff --git a/README.md b/README.md index f4bdfb5..ad22649 100644 --- a/README.md +++ b/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.19-Release/Gladdy_TBC-Classic_v1.20-Release.zip) ###### 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 +### v1.20-Release +TODO + ### v1.19-Beta - fix gladdy frames not showing v2 - minor bug fixes From b861091d4494fc411024fa32b3347a6094b72109 Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Wed, 15 Sep 2021 00:55:06 +0200 Subject: [PATCH 3/3] added 1.20 changelist --- README.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad22649..06f3d23 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Gladdy - TBC ### The most powerful arena addon for WoW TBC 2.5.1 -## [v1.20-Release Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v1.19-Release/Gladdy_TBC-Classic_v1.20-Release.zip) +## [v1.20-Release Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v1.20-Release/Gladdy_TBC-Classic_v1.20-Release.zip) ###### Please consider donating if you like my work @@ -63,7 +63,23 @@ The goal is to make Gladdy highly configurable in it's appearance. Everything ca ### Changes ### v1.20-Release -TODO +- 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