Skip to content

Commit

Permalink
Update for patch 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pingumania committed Jul 26, 2024
1 parent 16b39e2 commit 3e17251
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SyLevel Continued | 2.3
-----------------------
- Update for patch 11.0.0

SyLevel Continued | 2.2
-----------------------
- ToC update for 10.1.0
Expand Down
2 changes: 1 addition & 1 deletion SyLevel_Continued.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 100207
## Interface: 110000, 110002
## Version: @project-version@

## Title: SyLevel Continued
Expand Down
7 changes: 6 additions & 1 deletion ui/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,9 @@ function frame:CreateOptions()
end
end

InterfaceOptions_AddCategory(frame)
if InterfaceOptions_AddCategory then
InterfaceOptions_AddCategory(frame)
else
local category = Settings.RegisterCanvasLayoutSubcategory(ns.parentCategory, frame, frame.name)
Settings.RegisterAddOnCategory(category)
end
7 changes: 6 additions & 1 deletion ui/fonts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -425,4 +425,9 @@ function frame:CreateOptions()
end)
end

InterfaceOptions_AddCategory(frame)
if InterfaceOptions_AddCategory then
InterfaceOptions_AddCategory(frame)
else
local category = Settings.RegisterCanvasLayoutSubcategory(ns.parentCategory, frame, frame.name)
Settings.RegisterAddOnCategory(category)
end
7 changes: 6 additions & 1 deletion ui/ilevel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,9 @@ function frame:CreateOptions()
end
end

InterfaceOptions_AddCategory(frame)
if InterfaceOptions_AddCategory then
InterfaceOptions_AddCategory(frame)
else
local category = Settings.RegisterCanvasLayoutSubcategory(ns.parentCategory, frame, frame.name)
Settings.RegisterAddOnCategory(category)
end
8 changes: 7 additions & 1 deletion ui/pipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -296,4 +296,10 @@ do
end
end

InterfaceOptions_AddCategory(frame)
if InterfaceOptions_AddCategory then
InterfaceOptions_AddCategory(frame)
else
local category = Settings.RegisterCanvasLayoutCategory(frame, frame.name)
Settings.RegisterAddOnCategory(category)
ns.parentCategory = category
end

0 comments on commit 3e17251

Please sign in to comment.