chore: move addon into Chatter/ + add standard .gitignore

Matches the Exiles fork-layout convention (each addon in its own folder).
This commit is contained in:
2026-05-25 10:59:27 +02:00
parent 7462acab8c
commit 5eaec81f02
50 changed files with 7 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
local mod = Chatter:NewModule("Chat Autolog")
local L = LibStub("AceLocale-3.0"):GetLocale("Chatter")
mod.modName = L["Chat Autolog"]
function mod:OnEnable()
self.isLogging = LoggingChat()
LoggingChat(true)
end
function mod:OnDisable()
LoggingChat(self.isLogging)
end
function mod:Info()
return L["Automatically turns on chat logging."]
end