Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DevForge/DevForge.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 120000
## Interface: 120000, 120001
## Title: DevForge
## Notes: In-game dev toolkit: inspector, editor, console, events, errors, APIs, textures, performance
## Author: hatdragon
Expand Down
2 changes: 1 addition & 1 deletion DevForge/Modules/SnippetEditor/AddonScaffold.lua
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ local function GenerateTOC(state)
local function add(s) lines[#lines + 1] = s end

local name = state.addonName ~= "" and state.addonName or "MyAddon"
add("## Interface: 120000")
add("## Interface: 120000, 120001")
add("## Title: " .. name)
add("## Notes: " .. (state.description ~= "" and state.description or name))
add("## Author: " .. (state.author ~= "" and state.author or "Unknown"))
Expand Down
2 changes: 1 addition & 1 deletion DevForge/Modules/WAImporter/WACodeGen.lua
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ local function GenerateTOC(projectName)
local lines = {}
local function add(s) lines[#lines + 1] = s end

add("## Interface: 120000")
add("## Interface: 120000, 120001")
add("## Title: " .. projectName)
add("## Notes: Generated from WeakAuras import")
add("## Author: DevForge WAImporter")
Expand Down