├── .gitignore ├── Textures ├── Overlay.tga └── Square_FullWhite.tga ├── Controller.xml ├── .github └── workflows │ └── release.yml ├── embeds.xml ├── Overlay.xml ├── pkgmeta.yaml ├── fetchlocale.sh ├── LiteButtonAuras.toc ├── UI ├── AceGUIWidgets-LBAInputFocus.lua ├── AceGUIWidgets-LBAAnchorButtons.lua ├── AceGUIWidgets-LBAInputValidSpell.lua ├── AceGUIWidgets-LBAInputSpellID.lua └── Options.lua ├── get-libs.sh ├── .luacheckrc ├── ColorGradient.lua ├── ClassicCompat.lua ├── SpellData.lua ├── README.md ├── SlashCommand.lua ├── Options.lua ├── UnitState.lua ├── BarIntegrations.lua ├── Controller.lua ├── Localization.lua ├── Overlay.lua └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .release 2 | Libs/* 3 | -------------------------------------------------------------------------------- /Textures/Overlay.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xod-wow/LiteButtonAuras/HEAD/Textures/Overlay.tga -------------------------------------------------------------------------------- /Textures/Square_FullWhite.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xod-wow/LiteButtonAuras/HEAD/Textures/Square_FullWhite.tga -------------------------------------------------------------------------------- /Controller.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |