From d34e577a8662e7d8250ddce4ab725ac88de85aff Mon Sep 17 00:00:00 2001 From: Hatdragon Date: Sat, 7 Feb 2026 17:10:43 -0700 Subject: [PATCH] Midnight and Midnight Beta support (12.0 and 12.1) --- DevForge/DevForge.toc | 2 +- DevForge/Modules/SnippetEditor/AddonScaffold.lua | 2 +- DevForge/Modules/WAImporter/WACodeGen.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DevForge/DevForge.toc b/DevForge/DevForge.toc index 536757d..b590459 100644 --- a/DevForge/DevForge.toc +++ b/DevForge/DevForge.toc @@ -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 diff --git a/DevForge/Modules/SnippetEditor/AddonScaffold.lua b/DevForge/Modules/SnippetEditor/AddonScaffold.lua index 3caf396..b8aa883 100644 --- a/DevForge/Modules/SnippetEditor/AddonScaffold.lua +++ b/DevForge/Modules/SnippetEditor/AddonScaffold.lua @@ -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")) diff --git a/DevForge/Modules/WAImporter/WACodeGen.lua b/DevForge/Modules/WAImporter/WACodeGen.lua index 40cc012..bd3f0ee 100644 --- a/DevForge/Modules/WAImporter/WACodeGen.lua +++ b/DevForge/Modules/WAImporter/WACodeGen.lua @@ -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")