Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.42-Release' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumsebrum committed Jul 13, 2024
2 parents 250c4f9 + 68fe1cd commit b0674ad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion EventListener.lua
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ function EventListener:UNIT_SPELLCAST_SUCCEEDED(...)
local button = Gladdy.buttons[unit]
if button then
if not button.class or not button.race then
self:SpotEnemy(unit, false, true)
Gladdy:SpotEnemy(unit, false, true)
end
local spellName = GetSpellInfo(spellID)
local unitRace = button.race
Expand Down
4 changes: 2 additions & 2 deletions Gladdy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ local LibStub = LibStub

---------------------------

local MAJOR, MINOR = "Gladdy", 16
local MAJOR, MINOR = "Gladdy", 17
local Gladdy = LibStub:NewLibrary(MAJOR, MINOR)
local L
Gladdy.version_major_num = 2
Gladdy.version_minor_num = 0.41
Gladdy.version_minor_num = 0.42
Gladdy.version_num = Gladdy.version_major_num + Gladdy.version_minor_num
Gladdy.version_releaseType = RELEASE_TYPES.release
Gladdy.version = PREFIX .. string.format("%.2f", Gladdy.version_num) .. "-" .. Gladdy.version_releaseType
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

---

## [v2.41-Release Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v2.41-Release/Gladdy_Classic_v2.41-Release.zip)
## [v2.42-Release Download Here](https://github.com/XiconQoo/Gladdy-TBC/releases/download/v2.42-Release/Gladdy_Classic_v2.42-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

Expand Down Expand Up @@ -82,6 +82,9 @@ Thank you!

### Changes

### v2.42-Release
- hotfix EventListener SpotEnemy nil error

### v2.41-Release
- DRList update
- RangeCheck melee range fix
Expand Down

0 comments on commit b0674ad

Please sign in to comment.