Skip to content

Commit

Permalink
Update to 1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamanis committed Jul 10, 2024
1 parent ac4c6e7 commit 75aca44
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Details_Classic.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11502
## Interface: 11503
## Title: Details! Damage Meter
## Notes: Essential tool to impress that chick in your raid.
## Notes-ruRU: Незаменимый инструмент, чтобы произвести впечатление на цыпочку в вашем рейде.
Expand Down
4 changes: 2 additions & 2 deletions Libs/LibLuaServer/LibLuaServer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5562,8 +5562,8 @@ function GetTalentLink(tabIndex, talentIndex, isInspect) return "" end
function GetTalentPrereqs(tabIndex, talentIndex, isInspect) return 0 end

---@param tabIndex number
---@return string, string, number, number, number, number
function GetTalentTabInfo(tabIndex) return "", "", 0, 0, 0, 0 end
---@return number, string, string, number, number, string, number, boolean
function GetTalentTabInfo(tabIndex) return 0, "", "", 0, 0, "", 0, false end

---@param tabIndex number
---@param talentIndex number
Expand Down
8 changes: 2 additions & 6 deletions core/gears.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2789,12 +2789,8 @@ if (DetailsFramework.IsWotLKWow() or DetailsFramework.IsCataWow()) then
for i = 1,(MAX_TALENT_TABS or 3) do
if (i <= numTabs) then
--tab information
local id, name, description, iconTexture, pointsSpent, fileName
if DetailsFramework.IsCataWow() then
id, name, description, iconTexture, pointsSpent, fileName = GetTalentTabInfo(i)
else
name, iconTexture, pointsSpent, fileName = GetTalentTabInfo(i)
end
local id, name, description, iconTexture, pointsSpent, fileName = GetTalentTabInfo(i)

if (name) then
tinsert(pointsPerSpec, {name, pointsSpent, fileName})
end
Expand Down
2 changes: 1 addition & 1 deletion plugins/Details_TinyThreat/Details_TinyThreat-Classic.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11501
## Interface: 11503
## Title: Details!: Tiny Threat (plugin)
## Notes: Threat meter plugin, show threat for group members in the window. Select it from the Plugin menu in the Orange Cogwheel.
## RequiredDeps: Details
Expand Down

0 comments on commit 75aca44

Please sign in to comment.