Skip to content

Commit

Permalink
Update Toc for 11.0.2 and update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
brittyazel committed Jul 10, 2024
1 parent 317e6c8 commit fd307ab
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion EnhancedRaidFrames.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 11502, 40400, 100207, 110000
## Interface: 11502, 40400, 100207, 110002
## Title: Enhanced Raid Frames
## Notes: Enhances the Blizzard raid frames with configurable Buff/Debuff indicators
## IconTexture: Interface\Icons\spell_holy_borrowedtime
Expand Down
12 changes: 6 additions & 6 deletions Libs/LibDualSpec-1.0/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
tag 7b853271f8a96c023ee9dcaed9d9ee674b6799f0 v1.22.5
tag 83f5d1251166a2bf44a782acbc10ed0a01420131 v1.24.0
Author: Kyle Buller <[email protected]>
Date: Wed May 8 01:29:36 2024 -0500
Date: Wed Jul 10 02:16:07 2024 -0500

Tagging as v1.22.5
Tagging as v1.24.0

commit 1f311597d9a0bbcdb292877daa91ef4fb47609a7
commit e0da0f71030bc52fd07cdaf56543c139fdc09276
Author: Kyle Buller <[email protected]>
Date: Wed May 8 01:28:08 2024 -0500
Date: Wed Jul 10 01:46:35 2024 -0500

Update TOC for 10.2.7, 4.4.0 and combine
Add support for Wrath Classic (China)

8 changes: 4 additions & 4 deletions Libs/LibDualSpec-1.0/LibDualSpec-1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-- Only load in Classic Era on Season of Discovery realms
if WOW_PROJECT_ID == WOW_PROJECT_CLASSIC and C_Seasons.GetActiveSeason() ~= 2 then return end

local MAJOR, MINOR = "LibDualSpec-1.0", 22
local MAJOR, MINOR = "LibDualSpec-1.0", 24
assert(LibStub, MAJOR.." requires LibStub")
local lib, minor = LibStub:NewLibrary(MAJOR, MINOR)
if not lib then return end
Expand Down Expand Up @@ -347,10 +347,10 @@ for i = 1, numSpecs do
local highPointsSpentIndex = nil
for treeIndex = 1, 3 do
local name, pointsSpent, previewPointsSpent, _
if WOW_PROJECT_ID == WOW_PROJECT_CATACLYSM_CLASSIC then
_, name, _, _, pointsSpent, _, previewPointsSpent = GetTalentTabInfo(treeIndex, nil, nil, specIndex)
else
if WOW_PROJECT_ID == WOW_PROJECT_WRATH_CLASSIC then
name, _, pointsSpent, _, previewPointsSpent = GetTalentTabInfo(treeIndex, nil, nil, specIndex)
else
_, name, _, _, pointsSpent, _, previewPointsSpent = GetTalentTabInfo(treeIndex, nil, nil, specIndex)
end
if name then
local displayPointsSpent = pointsSpent + previewPointsSpent
Expand Down
6 changes: 3 additions & 3 deletions Libs/LibDualSpec-1.0/LibDualSpec-1.0.toc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Interface: 11502, 100207, 40400
## Interface: 11503, 30403, 40400, 100207
## LoadOnDemand: 1
## Title: Lib: DualSpec-1.0
## Version: v1.22.5
## X-Date: 2024-05-08T6:28:08Z
## Version: v1.24.0
## X-Date: 2024-07-10T6:46:35Z
## Notes: Adds spec switching support to individual AceDB-3.0 databases.
## Author: Adirelle, Nebula
## OptionalDeps: Ace3
Expand Down

0 comments on commit fd307ab

Please sign in to comment.