This repository was archived by the owner on Nov 19, 2017. It is now read-only.
File tree 7 files changed +282
-332
lines changed
7 files changed +282
-332
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ before_install:
21
21
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
22
22
language : node_js
23
23
node_js :
24
- - ' 7 '
24
+ - ' 8 '
25
25
cache : yarn
26
26
install : yarn install
27
27
script :
Original file line number Diff line number Diff line change 1
- FROM node:7 -alpine
1
+ FROM node:8 -alpine
2
2
3
3
LABEL maintainer
"iCrawl <[email protected] >"
4
4
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ const humanLevels = {
6
6
0 : 'None' ,
7
7
1 : 'Low' ,
8
8
2 : 'Medium' ,
9
- 3 : '(╯°□°)╯︵ ┻━┻'
9
+ 3 : '(╯°□°)╯︵ ┻━┻' ,
10
+ 4 : '┻━┻ ミヽ(ಠ益ಠ)ノ彡┻━┻'
10
11
} ;
11
12
12
13
module . exports = class ServerInfoCommand extends Command {
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ module.exports = class PlaySongCommand extends Command {
48
48
}
49
49
50
50
const permissions = voiceChannel . permissionsFor ( msg . client . user ) ;
51
- if ( ! permissions . hasPermission ( 'CONNECT' ) ) {
51
+ if ( ! permissions . has ( 'CONNECT' ) ) {
52
52
return msg . reply ( 'I don\'t have permission to join your voice channel. No parties allowed there.' ) ;
53
53
}
54
- if ( ! permissions . hasPermission ( 'SPEAK' ) ) {
54
+ if ( ! permissions . has ( 'SPEAK' ) ) {
55
55
return msg . reply ( 'I don\'t have permission to speak in your voice channel. What a disappointment.' ) ;
56
56
}
57
57
} else if ( ! queue . voiceChannel . members . has ( msg . author . id ) ) {
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ services:
21
21
- MAX_LENGTH=MAXIMUM_LENGTH_PER_SONG
22
22
- MAX_SONGS=HOW_MANY_SONGS_A_USER_CAN_QUEUE_UP
23
23
- PASSES=UPD_PACKET_PASS
24
+ volumes:
25
+ - LOCALHOST_VOLUME_PATH/backgrounds:/assets/profile/backgrounds
24
26
depends_on:
25
27
- postgres
26
28
- redis
Original file line number Diff line number Diff line change 57
57
"homepage" : " https://github.com/WeebDev/Commando#readme" ,
58
58
"dependencies" : {
59
59
"Sherlock" : " neilgupta/Sherlock" ,
60
- "bufferutil" : " ^3.0.0 " ,
60
+ "bufferutil" : " ^3.0.1 " ,
61
61
"canvas" : " automattic/node-canvas" ,
62
62
"cheerio" : " ^0.22.0" ,
63
63
"discord.js" : " hydrabolt/discord.js" ,
66
66
"moment" : " ^2.18.1" ,
67
67
"moment-duration-format" : " ^1.3.0" ,
68
68
"node-opus" : " ^0.2.6" ,
69
- "pg" : " ^6.2.2 " ,
69
+ "pg" : " ^6.2.4 " ,
70
70
"pg-hstore" : " ^2.3.2" ,
71
71
"prism-media" : " hydrabolt/prism-media" ,
72
72
"redis" : " ^2.7.1" ,
73
73
"request" : " ^2.81.0" ,
74
74
"request-promise" : " ^4.2.1" ,
75
- "sequelize" : " ^3.30.4 " ,
75
+ "sequelize" : " ^4.1.0 " ,
76
76
"simple-youtube-api" : " ^2.1.0" ,
77
- "snekfetch" : " ^3.1.7 " ,
77
+ "snekfetch" : " ^3.1.8 " ,
78
78
"tsubaki" : " ^1.1.1" ,
79
79
"winston" : " ^2.3.1" ,
80
- "ytdl-core" : " ^0.14.1 "
80
+ "ytdl-core" : " ^0.14.4 "
81
81
},
82
82
"devDependencies" : {
83
- "eslint" : " ^3.19 .0" ,
83
+ "eslint" : " ^4.0 .0" ,
84
84
"eslint-config-aqua" : " ^1.2.1"
85
85
},
86
86
"eslintConfig" : {
You can’t perform that action at this time.
0 commit comments