Skip to content

Commit 3e17251

Browse files
committed
Update for patch 11.0.0
1 parent 16b39e2 commit 3e17251

6 files changed

+30
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
SyLevel Continued | 2.3
2+
-----------------------
3+
- Update for patch 11.0.0
4+
15
SyLevel Continued | 2.2
26
-----------------------
37
- ToC update for 10.1.0

SyLevel_Continued.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 100207
1+
## Interface: 110000, 110002
22
## Version: @project-version@
33

44
## Title: SyLevel Continued

ui/colors.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,9 @@ function frame:CreateOptions()
7373
end
7474
end
7575

76-
InterfaceOptions_AddCategory(frame)
76+
if InterfaceOptions_AddCategory then
77+
InterfaceOptions_AddCategory(frame)
78+
else
79+
local category = Settings.RegisterCanvasLayoutSubcategory(ns.parentCategory, frame, frame.name)
80+
Settings.RegisterAddOnCategory(category)
81+
end

ui/fonts.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -425,4 +425,9 @@ function frame:CreateOptions()
425425
end)
426426
end
427427

428-
InterfaceOptions_AddCategory(frame)
428+
if InterfaceOptions_AddCategory then
429+
InterfaceOptions_AddCategory(frame)
430+
else
431+
local category = Settings.RegisterCanvasLayoutSubcategory(ns.parentCategory, frame, frame.name)
432+
Settings.RegisterAddOnCategory(category)
433+
end

ui/ilevel.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,9 @@ function frame:CreateOptions()
117117
end
118118
end
119119

120-
InterfaceOptions_AddCategory(frame)
120+
if InterfaceOptions_AddCategory then
121+
InterfaceOptions_AddCategory(frame)
122+
else
123+
local category = Settings.RegisterCanvasLayoutSubcategory(ns.parentCategory, frame, frame.name)
124+
Settings.RegisterAddOnCategory(category)
125+
end

ui/pipes.lua

+7-1
Original file line numberDiff line numberDiff line change
@@ -296,4 +296,10 @@ do
296296
end
297297
end
298298

299-
InterfaceOptions_AddCategory(frame)
299+
if InterfaceOptions_AddCategory then
300+
InterfaceOptions_AddCategory(frame)
301+
else
302+
local category = Settings.RegisterCanvasLayoutCategory(frame, frame.name)
303+
Settings.RegisterAddOnCategory(category)
304+
ns.parentCategory = category
305+
end

0 commit comments

Comments
 (0)