feat: Questie-X v1.1.4 - plugin architecture, monorepo, rebranding

- Repoint remote to Xurkon/Questie-X
- Add QuestiePluginAPI, QuestieServer, QuestieLearnerComms modules
- Add Questie-X.toc, Questie-X-Classic.toc, Questie-X-TBC.toc, Questie-X-Turtle.toc
- Remove embedded Database/Ascension and Database/Ebonhold (migrated to plugins)
- Add Plugins/ directory with NTFS junctions for Questie-X-AscensionDB and Questie-X-EbonholdDB
- Add LibDeflate, XXH_Lua_Lib, LibDBIcon-1.0, LibDataBroker-1.1
- Update README: Questie-X branding, logo, plugin install guide, plugin API docs
- Update CHANGELOG: v1.1.4 entry documenting all architectural changes
- Update .gitignore: exclude plugin junctions, __pycache__, .agents, debug files
- Various module updates: corrections, map, tracker, tooltips, quest, options
This commit is contained in:
Xurkon
2026-03-14 06:10:17 -05:00
parent 89c3b3173d
commit c4d003e58f
77 changed files with 10883 additions and 8264 deletions
+3 -3
View File
@@ -223,10 +223,10 @@ function QuestieFramePool:CreateLine(iconFrame, startX, startY, endX, endY, line
lineFrame.frameId = lineFrameCount;
end
local canvas = WorldMapFrame:GetCanvas()
local canvas = WorldMapFrame:GetCanvas() or WorldMapDetailFrame or WorldMapFrame
local width = canvas:GetWidth();
local height = canvas:GetHeight();
local width = canvas and canvas.GetWidth and canvas:GetWidth() or 1002;
local height = canvas and canvas.GetHeight and canvas:GetHeight() or 668;
--Setting the parent is required to get the correct frame levels.