├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── renovate.json └── workflows │ ├── dependency-review.yml │ └── lint.yml ├── .gitignore ├── Commands.js ├── LICENSE ├── Player.js ├── README.md ├── SECURITY.md ├── commands ├── clear.js ├── debug.js ├── eval.js ├── forceleave.js ├── join.js ├── leave.js ├── list.js ├── login.js ├── loop.js ├── lyrics.js ├── np.js ├── pause.js ├── play.js ├── player.js ├── playnext.js ├── radio.js ├── reload.js ├── remove.js ├── resume.js ├── search.js ├── servers.js ├── settings.js ├── shuffle.js ├── skip.js ├── stats.js ├── support.js ├── test.js ├── thumbnail.js └── volume.js ├── config.example.json ├── dashboard ├── README.md ├── index.js ├── static │ ├── assets │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-font-face.css │ │ │ │ ├── v4-font-face.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ ├── v4-shims.min.css │ │ │ │ ├── v5-font-face.css │ │ │ │ └── v5-font-face.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── icon.png │ │ └── loading.gif │ ├── commands │ │ ├── index-old.html │ │ └── style.css │ ├── css │ │ └── style.css │ ├── dashboard │ │ ├── index-old.html │ │ ├── index.js │ │ └── style.css │ ├── index-old.html │ └── login │ │ ├── index-old.html │ │ └── style.css └── views │ ├── commands │ ├── command.ejs │ ├── help.ejs │ ├── index.ejs │ └── row.ejs │ ├── components │ ├── footer.ejs │ ├── loginwidget.ejs │ ├── navbar.ejs │ ├── notifications.ejs │ └── player.ejs │ ├── dashboard │ └── index.ejs │ ├── index.ejs │ ├── login │ └── index.ejs │ ├── search │ ├── content-tile.ejs │ ├── content.ejs │ └── index.ejs │ └── styles │ └── style.css ├── index.js ├── package.json ├── rbl.js ├── settings ├── README.md ├── Settings.js ├── migrate.js └── runnables.js ├── src ├── audio │ ├── StreamMerger.js │ └── Tuna.js └── probe.js ├── storage ├── defaults.json ├── locales │ ├── bot │ │ ├── ar-SA.json │ │ ├── ckb.json │ │ ├── de-DE.json │ │ ├── en.json │ │ └── pt-BR.json │ └── dashboard │ │ ├── ar-SA.json │ │ ├── ckb.json │ │ ├── de-DE.json │ │ └── en.json ├── modules.json └── stats.json └── worker.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://github.com/sponsors/remix-bot 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/.gitignore -------------------------------------------------------------------------------- /Commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/Commands.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/LICENSE -------------------------------------------------------------------------------- /Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/Player.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commands/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/clear.js -------------------------------------------------------------------------------- /commands/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/debug.js -------------------------------------------------------------------------------- /commands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/eval.js -------------------------------------------------------------------------------- /commands/forceleave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/forceleave.js -------------------------------------------------------------------------------- /commands/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/join.js -------------------------------------------------------------------------------- /commands/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/leave.js -------------------------------------------------------------------------------- /commands/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/list.js -------------------------------------------------------------------------------- /commands/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/login.js -------------------------------------------------------------------------------- /commands/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/loop.js -------------------------------------------------------------------------------- /commands/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/lyrics.js -------------------------------------------------------------------------------- /commands/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/np.js -------------------------------------------------------------------------------- /commands/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/pause.js -------------------------------------------------------------------------------- /commands/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/play.js -------------------------------------------------------------------------------- /commands/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/player.js -------------------------------------------------------------------------------- /commands/playnext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/playnext.js -------------------------------------------------------------------------------- /commands/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/radio.js -------------------------------------------------------------------------------- /commands/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/reload.js -------------------------------------------------------------------------------- /commands/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/remove.js -------------------------------------------------------------------------------- /commands/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/resume.js -------------------------------------------------------------------------------- /commands/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/search.js -------------------------------------------------------------------------------- /commands/servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/servers.js -------------------------------------------------------------------------------- /commands/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/settings.js -------------------------------------------------------------------------------- /commands/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/shuffle.js -------------------------------------------------------------------------------- /commands/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/skip.js -------------------------------------------------------------------------------- /commands/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/stats.js -------------------------------------------------------------------------------- /commands/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/support.js -------------------------------------------------------------------------------- /commands/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/test.js -------------------------------------------------------------------------------- /commands/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/thumbnail.js -------------------------------------------------------------------------------- /commands/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/commands/volume.js -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/config.example.json -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/index.js -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/all.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/brands.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/brands.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/fontawesome.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/regular.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/regular.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/solid.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/solid.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/svg-with-js.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/svg-with-js.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/v4-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/v4-font-face.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/v4-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/v4-font-face.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/v5-font-face.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/v5-font-face.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/css/v5-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/css/v5-font-face.min.css -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /dashboard/static/assets/fontawesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/fontawesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /dashboard/static/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/icon.png -------------------------------------------------------------------------------- /dashboard/static/assets/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/assets/loading.gif -------------------------------------------------------------------------------- /dashboard/static/commands/index-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/commands/index-old.html -------------------------------------------------------------------------------- /dashboard/static/commands/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/commands/style.css -------------------------------------------------------------------------------- /dashboard/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/css/style.css -------------------------------------------------------------------------------- /dashboard/static/dashboard/index-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/dashboard/index-old.html -------------------------------------------------------------------------------- /dashboard/static/dashboard/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/static/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/dashboard/style.css -------------------------------------------------------------------------------- /dashboard/static/index-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/index-old.html -------------------------------------------------------------------------------- /dashboard/static/login/index-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/login/index-old.html -------------------------------------------------------------------------------- /dashboard/static/login/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/static/login/style.css -------------------------------------------------------------------------------- /dashboard/views/commands/command.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/commands/command.ejs -------------------------------------------------------------------------------- /dashboard/views/commands/help.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/commands/help.ejs -------------------------------------------------------------------------------- /dashboard/views/commands/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/commands/index.ejs -------------------------------------------------------------------------------- /dashboard/views/commands/row.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/commands/row.ejs -------------------------------------------------------------------------------- /dashboard/views/components/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/components/footer.ejs -------------------------------------------------------------------------------- /dashboard/views/components/loginwidget.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/components/loginwidget.ejs -------------------------------------------------------------------------------- /dashboard/views/components/navbar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/components/navbar.ejs -------------------------------------------------------------------------------- /dashboard/views/components/notifications.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/components/notifications.ejs -------------------------------------------------------------------------------- /dashboard/views/components/player.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/components/player.ejs -------------------------------------------------------------------------------- /dashboard/views/dashboard/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/dashboard/index.ejs -------------------------------------------------------------------------------- /dashboard/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/index.ejs -------------------------------------------------------------------------------- /dashboard/views/login/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/login/index.ejs -------------------------------------------------------------------------------- /dashboard/views/search/content-tile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/search/content-tile.ejs -------------------------------------------------------------------------------- /dashboard/views/search/content.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/search/content.ejs -------------------------------------------------------------------------------- /dashboard/views/search/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/search/index.ejs -------------------------------------------------------------------------------- /dashboard/views/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/dashboard/views/styles/style.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/package.json -------------------------------------------------------------------------------- /rbl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/rbl.js -------------------------------------------------------------------------------- /settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/settings/README.md -------------------------------------------------------------------------------- /settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/settings/Settings.js -------------------------------------------------------------------------------- /settings/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/settings/migrate.js -------------------------------------------------------------------------------- /settings/runnables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/settings/runnables.js -------------------------------------------------------------------------------- /src/audio/StreamMerger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/src/audio/StreamMerger.js -------------------------------------------------------------------------------- /src/audio/Tuna.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/src/audio/Tuna.js -------------------------------------------------------------------------------- /src/probe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/src/probe.js -------------------------------------------------------------------------------- /storage/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/defaults.json -------------------------------------------------------------------------------- /storage/locales/bot/ar-SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/bot/ar-SA.json -------------------------------------------------------------------------------- /storage/locales/bot/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/bot/ckb.json -------------------------------------------------------------------------------- /storage/locales/bot/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/bot/de-DE.json -------------------------------------------------------------------------------- /storage/locales/bot/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/bot/en.json -------------------------------------------------------------------------------- /storage/locales/bot/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/bot/pt-BR.json -------------------------------------------------------------------------------- /storage/locales/dashboard/ar-SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/dashboard/ar-SA.json -------------------------------------------------------------------------------- /storage/locales/dashboard/ckb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/dashboard/ckb.json -------------------------------------------------------------------------------- /storage/locales/dashboard/de-DE.json: -------------------------------------------------------------------------------- 1 | { 2 | "placeholder" : "Hier könnte ihre Werbung stehen!" 3 | } -------------------------------------------------------------------------------- /storage/locales/dashboard/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/locales/dashboard/en.json -------------------------------------------------------------------------------- /storage/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/modules.json -------------------------------------------------------------------------------- /storage/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/storage/stats.json -------------------------------------------------------------------------------- /worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-bot/stoat/HEAD/worker.js --------------------------------------------------------------------------------