├── logs └── .placeholder ├── .travis.yml ├── README.md ├── .codeclimate.yml └── .gitignore /logs/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | 5 | - "iojs" 6 | 7 | - "7" 8 | \ No newline at end of file -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Project Lagertha - depreciated 2 | 3 | A former UI/UX redesign of the popular Twitch-bot PhantomBot. A new version is integrated into [the Ecosystem](https://mindfuldesign.ml/) and is no longer open-sourced. 4 | 5 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | csslint: 4 | enabled: true 5 | duplication: 6 | enabled: true 7 | config: 8 | languages: 9 | - javascript: 10 | eslint: 11 | enabled: true 12 | ratings: 13 | paths: 14 | - "web/" 15 | exclude_paths: 16 | - "web/panel/js/jquery" 17 | - "web/panel/js/jquery-ui" 18 | - "web/playlist/js/jquery-ui" 19 | - "web/ytplayer/js/jquery-ui" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Add any directories, files, or patterns you don't want to be tracked by version control 2 | 3 | # Unchanged 4 | travis.yml 5 | codeclimate.yml 6 | logs/** 7 | /addons/** 8 | /lib/** 9 | /scripts/** 10 | /web/alerts/** 11 | /web/common/** 12 | /web/panel/js/flot/** 13 | /web/panel/js/footable/** 14 | /web/panel/js/ion-sound/** 15 | /launch.bat 16 | /launch.osx.sh 17 | /launch.sh 18 | /launch-service.osx.sh 19 | /launch-service.sh 20 | /PhantomBot.jar 21 | /web/panel/js/panelConfig.js 22 | /botlogin.txt 23 | /phantombot.db 24 | /phantombot.db-journal 25 | /logs/core-error/ 26 | /logs/core-warnings/ 27 | /logs/event/ 28 | 29 | stacktrace\.txt 30 | 31 | logs/core/ 32 | 33 | logs/core-debug/ 34 | 35 | 36 | web/panel/images/* 37 | !web/panel/images/the-fog-448100_1920.jpg 38 | !web/panel/images/Logo1_05-m.png 39 | !web/panel/images/logo.png 40 | !web/panel/images/the-fog-448100_480.jpg 41 | 42 | 43 | 44 | logs/warning/ 45 | 46 | web/panel/js/mdkeys\.js 47 | 48 | /web/panel/js/dashboardPanel.js 49 | web/panel/js/commandsPanel.js 50 | web/panel/js/donationsPanel.js 51 | web/panel/js/pointsPanel.js 52 | web/panel/js/ranksPanel.js 53 | web/panel/js/timePanel.js 54 | web/panel/js/moderationPanel.js 55 | web/panel/js/viewersPanel.js 56 | web/panel/js/greetingsPanel.js 57 | web/panel/js/audioPanel.js 58 | web/panel/js/keywordsPanel.js 59 | web/panel/js/noticesPanel.js 60 | web/panel/js/quotesPanel.js 61 | web/panel/js/gamesPanel.js 62 | web/panel/js/gamblingPanel.js 63 | web/panel/js/hostraidPanel.js 64 | web/panel/js/pollPanel.js 65 | web/panel/js/queuePanel.js 66 | web/panel/js/discordPanel.js 67 | web/panel/js/twitterPanel.js 68 | web/panel/js/helpPanel.js 69 | logs/error/ 70 | 71 | web/panel/js/mdkeys\.min\.js 72 | 73 | web/panel/js/jquery-ui/images/ 74 | 75 | web/panel/js/jquery-ui/jquery-ui/images/ 76 | 77 | web/panel/js/panelConfig\.min\.js 78 | 79 | config/\.placeholder 80 | 81 | logs/chat/ 82 | 83 | logs/moderation/ 84 | 85 | logs/private-messages/ 86 | 87 | logs/pointSystem/ 88 | 89 | config/ 90 | 91 | web/Thumbs\.db 92 | 93 | web/playlist/js/playerConfig\.js 94 | 95 | web/ytplayer/js/playerConfig\.min\.js 96 | 97 | web/ytplayer/js/playerConfig\.js 98 | 99 | web/ytplayer/images/Thumbs\.db 100 | 101 | web/playlist/images/Thumbs\.db 102 | 103 | web/playlist/js/playerConfig\.min\.js 104 | 105 | web/ 106 | --------------------------------------------------------------------------------