feat: Add Personal Auras module for tracking debuffs on the player

- Introduced a new module for Personal Auras that allows players to track selected debuffs on themselves in a movable frame.
- Implemented functionality to manage tracked debuffs, including adding and removing spells.
- Added options for configuring the appearance and behavior of the Personal Auras frame.
- Updated the readme to include information about the new Personal Auras feature.
This commit is contained in:
Torsten Brendgen
2026-04-12 00:04:34 +02:00
parent 01eeae9603
commit 391e581d32
11 changed files with 1034 additions and 5 deletions

View File

@@ -1982,6 +1982,15 @@ function HMGT_Config:Initialize()
modulesGroup.args.buffEnding = buffEndingGroup
end
local personalAurasGroup = BuildNamedModuleGroup(
"personalAuras",
L["OPT_MODULE_PERSONAL_AURAS"] or "Personal Auras",
25
)
if personalAurasGroup then
modulesGroup.args.personalAuras = personalAurasGroup
end
local mapOverlayGroup = BuildNamedModuleGroup(
"map.overlay",
L["OPT_MODULE_MAP_OVERLAY"] or "Map Overlay",