├── .github ├── FUNDING.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── js │ ├── action.js │ ├── objects.js │ ├── transformer.js │ ├── utils.js │ └── websocket.js └── scss │ ├── colors.scss │ ├── controller.scss │ ├── dashboard-style.scss │ ├── header.scss │ ├── menu.scss │ └── queue.scss ├── babel.cfg ├── main.py ├── objects.py ├── requirements.txt ├── settings Example.json ├── static └── img │ ├── default-banner.svg │ ├── error.png │ ├── favicon.ico │ ├── info.png │ ├── no-history.svg │ ├── no-servers.svg │ ├── noMessage.svg │ ├── not-found.svg │ ├── notFound.png │ ├── rate-limited.svg │ └── success.png ├── templates ├── controller.html ├── footer.html ├── header.html ├── index.html ├── menu.html └── queue.html ├── translations ├── es_ES │ └── LC_MESSAGES │ │ └── messages.po ├── es_LATAM │ └── LC_MESSAGES │ │ └── messages.po ├── fr │ └── LC_MESSAGES │ │ └── messages.po ├── pl │ └── LC_MESSAGES │ │ └── messages.po ├── ru │ └── LC_MESSAGES │ │ └── messages.po └── zh_Hant │ └── LC_MESSAGES │ └── messages.po ├── update.py └── utils.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: chocoo 2 | -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /assets/js/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/js/action.js -------------------------------------------------------------------------------- /assets/js/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/js/objects.js -------------------------------------------------------------------------------- /assets/js/transformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/js/transformer.js -------------------------------------------------------------------------------- /assets/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/js/utils.js -------------------------------------------------------------------------------- /assets/js/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/js/websocket.js -------------------------------------------------------------------------------- /assets/scss/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/scss/colors.scss -------------------------------------------------------------------------------- /assets/scss/controller.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/scss/controller.scss -------------------------------------------------------------------------------- /assets/scss/dashboard-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/scss/dashboard-style.scss -------------------------------------------------------------------------------- /assets/scss/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/scss/header.scss -------------------------------------------------------------------------------- /assets/scss/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/scss/menu.scss -------------------------------------------------------------------------------- /assets/scss/queue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/assets/scss/queue.scss -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/babel.cfg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/main.py -------------------------------------------------------------------------------- /objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/objects.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/settings Example.json -------------------------------------------------------------------------------- /static/img/default-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/default-banner.svg -------------------------------------------------------------------------------- /static/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/error.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/info.png -------------------------------------------------------------------------------- /static/img/no-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/no-history.svg -------------------------------------------------------------------------------- /static/img/no-servers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/no-servers.svg -------------------------------------------------------------------------------- /static/img/noMessage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/noMessage.svg -------------------------------------------------------------------------------- /static/img/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/not-found.svg -------------------------------------------------------------------------------- /static/img/notFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/notFound.png -------------------------------------------------------------------------------- /static/img/rate-limited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/rate-limited.svg -------------------------------------------------------------------------------- /static/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/static/img/success.png -------------------------------------------------------------------------------- /templates/controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/templates/controller.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/templates/header.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/templates/menu.html -------------------------------------------------------------------------------- /templates/queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/templates/queue.html -------------------------------------------------------------------------------- /translations/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/translations/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/es_LATAM/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/translations/es_LATAM/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/pl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/translations/pl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/translations/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /translations/zh_Hant/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/translations/zh_Hant/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/update.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChocoMeow/Vocard-Dashboard/HEAD/utils.py --------------------------------------------------------------------------------