├── .editorconfig ├── .github └── workflows │ ├── packager.yml │ └── pull_request.yml ├── .gitignore ├── .luacheckrc ├── .pkgmeta ├── ShadowedUnitFrames.lua ├── ShadowedUnitFrames.toc ├── ShadowedUnitFrames.xml ├── locale-import.lua ├── localization ├── deDE.lua ├── enUS.lua ├── esES.lua ├── esMX.lua ├── frFR.lua ├── koKR.lua ├── ptBR.lua ├── ruRU.lua ├── zhCN.lua └── zhTW.lua ├── media ├── fonts │ └── Myriad Condensed Web.ttf └── textures │ ├── ABFBorder.tga │ ├── AceBarFrames.tga │ ├── Aluminium.tga │ ├── Charcoal.tga │ ├── LiteStep.tga │ ├── Minimalist.tga │ ├── Smoothv2.tga │ ├── backdrop.tga │ ├── banto.tga │ ├── border-dark.tga │ ├── border-light.tga │ ├── combo.tga │ ├── glaze.tga │ ├── highlight.tga │ ├── otravi.tga │ ├── perl.tga │ ├── shard.tga │ ├── smooth.tga │ ├── smoother.tga │ └── striped.tga ├── modules ├── altpower.lua ├── arcanecharges.lua ├── auraindicators.lua ├── aurapoints.lua ├── auras.lua ├── basecombopoints.lua ├── cast.lua ├── chi.lua ├── combattext.lua ├── combopoints.lua ├── defaultlayout.lua ├── druid.lua ├── empty.lua ├── essence.lua ├── fader.lua ├── healabsorb.lua ├── health.lua ├── helpers.lua ├── highlight.lua ├── holypower.lua ├── incabsorb.lua ├── incheal.lua ├── indicators.lua ├── layout.lua ├── monkstagger.lua ├── movers.lua ├── portrait.lua ├── power.lua ├── priest.lua ├── range.lua ├── runes.lua ├── shaman.lua ├── soulshards.lua ├── tags.lua ├── totems.lua ├── units.lua └── xp.lua └── options ├── ShadowedUF_Options.toc └── config.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/packager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/.github/workflows/packager.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | suf.tmproj 2 | .DS_Store -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.pkgmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/.pkgmeta -------------------------------------------------------------------------------- /ShadowedUnitFrames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/ShadowedUnitFrames.lua -------------------------------------------------------------------------------- /ShadowedUnitFrames.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/ShadowedUnitFrames.toc -------------------------------------------------------------------------------- /ShadowedUnitFrames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/ShadowedUnitFrames.xml -------------------------------------------------------------------------------- /locale-import.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/locale-import.lua -------------------------------------------------------------------------------- /localization/deDE.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/deDE.lua -------------------------------------------------------------------------------- /localization/enUS.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/enUS.lua -------------------------------------------------------------------------------- /localization/esES.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/esES.lua -------------------------------------------------------------------------------- /localization/esMX.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/esMX.lua -------------------------------------------------------------------------------- /localization/frFR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/frFR.lua -------------------------------------------------------------------------------- /localization/koKR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/koKR.lua -------------------------------------------------------------------------------- /localization/ptBR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/ptBR.lua -------------------------------------------------------------------------------- /localization/ruRU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/ruRU.lua -------------------------------------------------------------------------------- /localization/zhCN.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/zhCN.lua -------------------------------------------------------------------------------- /localization/zhTW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/localization/zhTW.lua -------------------------------------------------------------------------------- /media/fonts/Myriad Condensed Web.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/fonts/Myriad Condensed Web.ttf -------------------------------------------------------------------------------- /media/textures/ABFBorder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/ABFBorder.tga -------------------------------------------------------------------------------- /media/textures/AceBarFrames.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/AceBarFrames.tga -------------------------------------------------------------------------------- /media/textures/Aluminium.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/Aluminium.tga -------------------------------------------------------------------------------- /media/textures/Charcoal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/Charcoal.tga -------------------------------------------------------------------------------- /media/textures/LiteStep.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/LiteStep.tga -------------------------------------------------------------------------------- /media/textures/Minimalist.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/Minimalist.tga -------------------------------------------------------------------------------- /media/textures/Smoothv2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/Smoothv2.tga -------------------------------------------------------------------------------- /media/textures/backdrop.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/backdrop.tga -------------------------------------------------------------------------------- /media/textures/banto.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/banto.tga -------------------------------------------------------------------------------- /media/textures/border-dark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/border-dark.tga -------------------------------------------------------------------------------- /media/textures/border-light.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/border-light.tga -------------------------------------------------------------------------------- /media/textures/combo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/combo.tga -------------------------------------------------------------------------------- /media/textures/glaze.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/glaze.tga -------------------------------------------------------------------------------- /media/textures/highlight.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/highlight.tga -------------------------------------------------------------------------------- /media/textures/otravi.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/otravi.tga -------------------------------------------------------------------------------- /media/textures/perl.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/perl.tga -------------------------------------------------------------------------------- /media/textures/shard.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/shard.tga -------------------------------------------------------------------------------- /media/textures/smooth.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/smooth.tga -------------------------------------------------------------------------------- /media/textures/smoother.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/smoother.tga -------------------------------------------------------------------------------- /media/textures/striped.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/media/textures/striped.tga -------------------------------------------------------------------------------- /modules/altpower.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/altpower.lua -------------------------------------------------------------------------------- /modules/arcanecharges.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/arcanecharges.lua -------------------------------------------------------------------------------- /modules/auraindicators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/auraindicators.lua -------------------------------------------------------------------------------- /modules/aurapoints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/aurapoints.lua -------------------------------------------------------------------------------- /modules/auras.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/auras.lua -------------------------------------------------------------------------------- /modules/basecombopoints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/basecombopoints.lua -------------------------------------------------------------------------------- /modules/cast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/cast.lua -------------------------------------------------------------------------------- /modules/chi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/chi.lua -------------------------------------------------------------------------------- /modules/combattext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/combattext.lua -------------------------------------------------------------------------------- /modules/combopoints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/combopoints.lua -------------------------------------------------------------------------------- /modules/defaultlayout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/defaultlayout.lua -------------------------------------------------------------------------------- /modules/druid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/druid.lua -------------------------------------------------------------------------------- /modules/empty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/empty.lua -------------------------------------------------------------------------------- /modules/essence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/essence.lua -------------------------------------------------------------------------------- /modules/fader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/fader.lua -------------------------------------------------------------------------------- /modules/healabsorb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/healabsorb.lua -------------------------------------------------------------------------------- /modules/health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/health.lua -------------------------------------------------------------------------------- /modules/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/helpers.lua -------------------------------------------------------------------------------- /modules/highlight.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/highlight.lua -------------------------------------------------------------------------------- /modules/holypower.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/holypower.lua -------------------------------------------------------------------------------- /modules/incabsorb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/incabsorb.lua -------------------------------------------------------------------------------- /modules/incheal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/incheal.lua -------------------------------------------------------------------------------- /modules/indicators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/indicators.lua -------------------------------------------------------------------------------- /modules/layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/layout.lua -------------------------------------------------------------------------------- /modules/monkstagger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/monkstagger.lua -------------------------------------------------------------------------------- /modules/movers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/movers.lua -------------------------------------------------------------------------------- /modules/portrait.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/portrait.lua -------------------------------------------------------------------------------- /modules/power.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/power.lua -------------------------------------------------------------------------------- /modules/priest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/priest.lua -------------------------------------------------------------------------------- /modules/range.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/range.lua -------------------------------------------------------------------------------- /modules/runes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/runes.lua -------------------------------------------------------------------------------- /modules/shaman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/shaman.lua -------------------------------------------------------------------------------- /modules/soulshards.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/soulshards.lua -------------------------------------------------------------------------------- /modules/tags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/tags.lua -------------------------------------------------------------------------------- /modules/totems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/totems.lua -------------------------------------------------------------------------------- /modules/units.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/units.lua -------------------------------------------------------------------------------- /modules/xp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/modules/xp.lua -------------------------------------------------------------------------------- /options/ShadowedUF_Options.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/options/ShadowedUF_Options.toc -------------------------------------------------------------------------------- /options/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nevcairiel/ShadowedUnitFrames/HEAD/options/config.lua --------------------------------------------------------------------------------