├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ └── pr.yml ├── .gitignore ├── .luacheckrc ├── .luarc.json ├── .pkgmeta ├── AdvancedInterfaceOptions.toc ├── README.md ├── basicOptions.lua ├── browser.lua ├── cspell.json ├── cvars.dump ├── cvars.lua ├── embeds.xml ├── gui ├── CVarConfigPanel.lua ├── CameraConfigPanel.lua ├── ChatConfigPanel.lua ├── CombatConfigPanel.lua ├── FloatingCombatTextConfigPanel.lua ├── GeneralConfigPanel.lua ├── NameplateConfigPanel.lua └── StatusTextConfigPanel.lua ├── semlib ├── eve.lua ├── semlib.xml └── widgets.lua ├── stylua.toml └── utils.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cvars2.dump 2 | debug.lua 3 | .vscode/ 4 | .idea/ 5 | libs/ 6 | -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.luarc.json -------------------------------------------------------------------------------- /.pkgmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/.pkgmeta -------------------------------------------------------------------------------- /AdvancedInterfaceOptions.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/AdvancedInterfaceOptions.toc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/README.md -------------------------------------------------------------------------------- /basicOptions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/basicOptions.lua -------------------------------------------------------------------------------- /browser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/browser.lua -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/cspell.json -------------------------------------------------------------------------------- /cvars.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/cvars.dump -------------------------------------------------------------------------------- /cvars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/cvars.lua -------------------------------------------------------------------------------- /embeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/embeds.xml -------------------------------------------------------------------------------- /gui/CVarConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/CVarConfigPanel.lua -------------------------------------------------------------------------------- /gui/CameraConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/CameraConfigPanel.lua -------------------------------------------------------------------------------- /gui/ChatConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/ChatConfigPanel.lua -------------------------------------------------------------------------------- /gui/CombatConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/CombatConfigPanel.lua -------------------------------------------------------------------------------- /gui/FloatingCombatTextConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/FloatingCombatTextConfigPanel.lua -------------------------------------------------------------------------------- /gui/GeneralConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/GeneralConfigPanel.lua -------------------------------------------------------------------------------- /gui/NameplateConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/NameplateConfigPanel.lua -------------------------------------------------------------------------------- /gui/StatusTextConfigPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/gui/StatusTextConfigPanel.lua -------------------------------------------------------------------------------- /semlib/eve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/semlib/eve.lua -------------------------------------------------------------------------------- /semlib/semlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/semlib/semlib.xml -------------------------------------------------------------------------------- /semlib/widgets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/semlib/widgets.lua -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/stylua.toml -------------------------------------------------------------------------------- /utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanzilla/AdvancedInterfaceOptions/HEAD/utils.lua --------------------------------------------------------------------------------