├── .gitignore ├── tex ├── circle.tga ├── spark.tga ├── white.tga ├── ncbc_bg5.tga ├── selectBG.tga ├── statusbar.tga ├── AuraRune_A.tga ├── SwipeCircle2.tga ├── ncbc_vbarbg.tga ├── redflame_tex.tga ├── vstatusbar.tga ├── SwipeCircleFat.tga ├── greyflame2_tex.tga ├── greyflame_tex.tga ├── purpleflame_tex.tga └── paladin_blessingofspellwarding_runeplane.tga ├── Options ├── loader │ ├── NugComboBarGUI.toc │ ├── NugComboBarGUI-Cata.toc │ ├── NugComboBarGUI-Mists.toc │ ├── NugComboBarGUI-TBC.toc │ ├── NugComboBarGUI-Wrath.toc │ ├── NugComboBarGUI-Classic.toc │ └── NugComboBarGUI-Mainline.toc ├── includes.xml └── NugComboBarGUI.lua ├── NugComboBar-TBC.toc ├── NugComboBar.toc ├── NugComboBar-Classic.toc ├── NugComboBar-Wrath.toc ├── NugComboBar-Mainline.toc ├── NugComboBar-Cata.toc ├── NugComboBar-Mists.toc ├── .pkgmeta ├── .github └── workflows │ └── build.yml ├── Locale ├── zhCN.lua ├── zhTW.lua └── ruRU.lua ├── .luacheckrc ├── config.cata.lua ├── config.mists.lua ├── config.lua └── skin.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | gui/Libs/ 3 | Libs/ 4 | -------------------------------------------------------------------------------- /tex/circle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/circle.tga -------------------------------------------------------------------------------- /tex/spark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/spark.tga -------------------------------------------------------------------------------- /tex/white.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/white.tga -------------------------------------------------------------------------------- /tex/ncbc_bg5.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/ncbc_bg5.tga -------------------------------------------------------------------------------- /tex/selectBG.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/selectBG.tga -------------------------------------------------------------------------------- /tex/statusbar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/statusbar.tga -------------------------------------------------------------------------------- /tex/AuraRune_A.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/AuraRune_A.tga -------------------------------------------------------------------------------- /tex/SwipeCircle2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/SwipeCircle2.tga -------------------------------------------------------------------------------- /tex/ncbc_vbarbg.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/ncbc_vbarbg.tga -------------------------------------------------------------------------------- /tex/redflame_tex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/redflame_tex.tga -------------------------------------------------------------------------------- /tex/vstatusbar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/vstatusbar.tga -------------------------------------------------------------------------------- /tex/SwipeCircleFat.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/SwipeCircleFat.tga -------------------------------------------------------------------------------- /tex/greyflame2_tex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/greyflame2_tex.tga -------------------------------------------------------------------------------- /tex/greyflame_tex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/greyflame_tex.tga -------------------------------------------------------------------------------- /tex/purpleflame_tex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/purpleflame_tex.tga -------------------------------------------------------------------------------- /tex/paladin_blessingofspellwarding_runeplane.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rgd87/NugComboBar/HEAD/tex/paladin_blessingofspellwarding_runeplane.tga -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 110000 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI-Cata.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 40400 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI-Mists.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 50500 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI-TBC.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 20503 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI-Wrath.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 30402 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI-Classic.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 11500 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /Options/loader/NugComboBarGUI-Mainline.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 110000 2 | ## Title: NugComboBarGUI 3 | ## Notes: NugComboBar Configuration Panel 4 | ## Version: @project-version@ 5 | ## Dependencies: NugComboBar 6 | ## Author: d87 7 | ## LoadOnDemand: 1 8 | ..\NugComboBar\Options\includes.xml 9 | 10 | -------------------------------------------------------------------------------- /NugComboBar-TBC.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 20504 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | -------------------------------------------------------------------------------- /NugComboBar.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 110000 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | -------------------------------------------------------------------------------- /NugComboBar-Classic.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 11500 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | -------------------------------------------------------------------------------- /NugComboBar-Wrath.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 30402 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | -------------------------------------------------------------------------------- /NugComboBar-Mainline.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 110000 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | -------------------------------------------------------------------------------- /NugComboBar-Cata.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 40400 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | config.cata.lua 20 | -------------------------------------------------------------------------------- /NugComboBar-Mists.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 50500 2 | ## Title: NugComboBar 3 | ## Notes: Combopoints counter 4 | ## Author: d87 5 | ## SavedVariablesPerCharacter: NugComboBarDB_Character 6 | ## SavedVariables: NugComboBarDB_Global 7 | ## Version: @project-version@ 8 | 9 | ## X-WoWI-ID: 6308 10 | ## X-Curse-Project-ID: 2538 11 | ## X-Wago-ID: 9rN4yy6D 12 | 13 | Libs\LibStub\LibStub.lua 14 | Libs\CallbackHandler-1.0\CallbackHandler-1.0.lua 15 | Libs\AceDB-3.0\AceDB-3.0.xml 16 | NugComboBar.lua 17 | skin.lua 18 | config.lua 19 | config.mists.lua 20 | -------------------------------------------------------------------------------- /.pkgmeta: -------------------------------------------------------------------------------- 1 | package-as: NugComboBar 2 | 3 | enable-nolib-creation: no 4 | 5 | externals: 6 | Libs/LibStub: https://repos.curseforge.com/wow/libstub/trunk 7 | Libs/CallbackHandler-1.0: https://repos.curseforge.com/wow/callbackhandler/trunk/CallbackHandler-1.0 8 | Libs/AceDB-3.0: https://repos.curseforge.com/wow/ace3/trunk/AceDB-3.0 9 | Libs/AceGUI-3.0: https://repos.curseforge.com/wow/ace3/trunk/AceGUI-3.0 10 | Libs/AceConfig-3.0: https://repos.curseforge.com/wow/ace3/trunk/AceConfig-3.0 11 | 12 | move-folders: 13 | NugComboBar/Options/loader: NugComboBarGUI 14 | -------------------------------------------------------------------------------- /Options/includes.xml: -------------------------------------------------------------------------------- 1 | 3 |