Skip to content

Commit 97ce566

Browse files
committed
Fixes from the Ace fork plus a few other fixes from Ketho
1 parent 1bed146 commit 97ce566

23 files changed

Lines changed: 94 additions & 95 deletions

WoW-API/COMMIT_HASHES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This API documentation was generated using the following commit hashes:
44

5-
- **vscode-wow-api**: `master` @ `a2e82582ac3f38c096ecc192fe701c3ba901d95d`
6-
- **WoWUI**: `vanilla` @ `b6262ddd722e41b0757e7c6ae2e2a83563044152`
5+
- **vscode-wow-api**: `ace-fixes` @ `05342d12aeb25ddd6e0aa2ce226cc57893d99203`
6+
- **WoWUI**: `vanilla` @ `b6c8bf010d423d02a4075f8b0f941464412017e6`
77

8-
Generated on: 2025-12-18 14:28:48
8+
Generated on: 2026-01-11 07:47:20

WoW-API/FrameXML/Blizzard_SharedXML/TableUtil.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ end
1212
-- ```
1313
-- for i, v in ripairs(tbl) do body end
1414
-- ```
15-
---@param table table
15+
---@param tbl table
1616
---@return function iter
1717
---@return table invariant
1818
---@return number init
19-
function ripairs(table)
20-
return ripairsiter, table, #table + 1;
19+
function ripairs(tbl)
20+
return ripairsiter, tbl, #tbl + 1;
2121
end
2222

2323
---[FrameXML](https://www.townlong-yak.com/framexml/go/AccumulateIf)

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-BlizOptionsGroup.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ function AceGUIBlizOptionsGroup:SetGroup(key) end
2020
function AceGUIBlizOptionsGroup:SetDropdownWidth(width) end
2121

2222
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-1-1)
23-
---@param table table
24-
function AceGUIBlizOptionsGroup:SetStatusTable(table) end
23+
---@param statusTable table
24+
function AceGUIBlizOptionsGroup:SetStatusTable(statusTable) end
2525

2626
---@protected
2727
---@param width integer

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-DropDownGroup.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ local AceGUIDropdownGroup = {}
1313
function AceGUIDropdownGroup:SetTitle(text) end
1414

1515
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-1-1)
16-
---@param table table<unknown, string>
16+
---@param groupList table<unknown, string>
1717
---@param order? unknown[]
18-
function AceGUIDropdownGroup:SetGroupList(table, order) end
18+
function AceGUIDropdownGroup:SetGroupList(groupList, order) end
1919

2020
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-1-1)
2121
---@param key unknown
@@ -26,8 +26,8 @@ function AceGUIDropdownGroup:SetGroup(key) end
2626
function AceGUIDropdownGroup:SetDropdownWidth(width) end
2727

2828
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-1-1)
29-
---@param table table
30-
function AceGUIDropdownGroup:SetStatusTable(table) end
29+
---@param statusTable table
30+
function AceGUIDropdownGroup:SetStatusTable(statusTable) end
3131

3232
---@protected
3333
---@param width integer

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-Frame.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ function AceGUIFrame:SetTitle(text) end
2121
function AceGUIFrame:SetStatusText(text) end
2222

2323
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-2-1)
24-
---@param table table
25-
function AceGUIFrame:SetStatusTable(table) end
24+
---@param statusTable table
25+
function AceGUIFrame:SetStatusTable(statusTable) end
2626

2727
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-2-1)
2828
function AceGUIFrame:ApplyStatus() end

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-ScrollFrame.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ local AceGUIScrollFrame = {}
1212
function AceGUIScrollFrame:SetScroll(value) end
1313

1414
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-4-1)
15-
---@param table table
16-
function AceGUIScrollFrame:SetStatusTable(table) end
15+
---@param statusTable table
16+
function AceGUIScrollFrame:SetStatusTable(statusTable) end
1717

1818
---@param value number
1919
function AceGUIScrollFrame:MoveScroll(value) end
@@ -36,4 +36,4 @@ function AceGUIScrollFrame:LayoutFinished(width, height) end
3636

3737
---@class AceGUIScrollFrameStatus
3838
---@field scrollvalue number
39-
---@field offset? integer
39+
---@field offset integer?

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-TabGroup.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ local AceGUITabGroup = {}
2222
function AceGUITabGroup:SetTitle(text) end
2323

2424
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-6-1)
25-
---@param table AceGUITabGroupTab[]
26-
function AceGUITabGroup:SetTabs(table) end
25+
---@param tabsTable AceGUITabGroupTab[]
26+
function AceGUITabGroup:SetTabs(tabsTable) end
2727

2828
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-6-1)
2929
---@param key string
3030
function AceGUITabGroup:SelectTab(key) end
3131

3232
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-6-1)
33-
---@param table table
34-
function AceGUITabGroup:SetStatusTable(table) end
33+
---@param statusTable table
34+
function AceGUITabGroup:SetStatusTable(statusTable) end
3535

3636
---@protected
3737
function AceGUITabGroup:BuildTabs() end

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-TreeGroup.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ function AceGUITreeGroup:SelectByValue(uniquevalue) end
4242
function AceGUITreeGroup:EnableButtonTooltips(flag) end
4343

4444
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-4-7-1)
45-
---@param table table
46-
function AceGUITreeGroup:SetStatusTable(table) end
45+
---@param statusTable table
46+
function AceGUITreeGroup:SetStatusTable(statusTable) end
4747

4848
---@param show boolean
4949
function AceGUITreeGroup:ShowScroll(show) end

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIWidget-Button.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ local AceGUIButton = {}
88
---@param text string
99
function AceGUIButton:SetText(text) end
1010

11+
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-2-1-1)
1112
---@param autoWidth boolean
1213
function AceGUIButton:SetAutoWidth(autoWidth) end
1314

WoW-API/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIWidget-CheckBox.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ function AceGUICheckBox:SetValue(flag) end
1717
function AceGUICheckBox:GetValue() end
1818

1919
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-2-2-1)
20-
---@param type "radio"|"checkbox"
21-
function AceGUICheckBox:SetType(type) end
20+
---@param checkType "radio"|"checkbox"
21+
function AceGUICheckBox:SetType(checkType) end
2222

2323
---[Documentation](https://www.wowace.com/projects/ace3/pages/ace-gui-3-0-widgets#title-2-2-1)
2424
function AceGUICheckBox:ToggleChecked() end

0 commit comments

Comments
 (0)