-
-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v6.1.0 #337
v6.1.0 #337
Conversation
this wont require the entire directory just to use 1 driver
docgen interferes with this, since running only docgen doesnt load logger
according to the documentation, this should allow this job to run on tags as well as on new commits
* Update commands.md * typo
this command throws fatal typeerrors inside the imgflipper module, replacing this soon with something hopefully not terrible
docs didnt like it
* Small changes to make things more understandable * Update en-EN.json * Update en-EN.json
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some nitpicks here. I also need to make a small amend to the documentation to reflect the changes to the meme command.
src/commands/join-voice.js
Outdated
@@ -39,38 +39,38 @@ module.exports = { | |||
} | |||
} else { | |||
resolveTracks(suffix).then(tracks => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For improved code quality and readability, perhaps name the callback variable trackInfo
and cast trackInfo.tracks
to a constant. This is a nitpick, but tracks.tracks
is not very descriptive and more confusing than anything else.
src/commands/request.js
Outdated
@@ -36,40 +36,38 @@ module.exports = { | |||
} | |||
} else { | |||
resolveTracks(suffix).then(tracks => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My suggestion for join-voice
applies here as well.
src/commands/urbandictionary.js
Outdated
@@ -35,9 +35,10 @@ module.exports = { | |||
} | |||
}) | |||
} else { | |||
msg.channel.createMessage(`<@${msg.author.id}>, ${suffix}: This word is so screwed up, even Urban Dictionary doesn't have it in its database`) | |||
msg.channel.createMessage(`<@${msg.author.id}>, ${suffix}: This word is so screwed up, even UrbanDictionary doesn't have it in its database`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name mangling issue here. According to Wikipedia, the name is in fact Urban Dictionary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hah, accidentally changed this with my last commit, will fix.
src/internal/logger.js
Outdated
@@ -64,7 +64,8 @@ module.exports = { | |||
sendToES({ | |||
type: 'command', | |||
cmd: opts.cmd, | |||
full: opts.cmd + ' ' + opts.opts, | |||
// full: opts.cmd + ' ' + opts.opts, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented out code should not be left in the production build.
* Fixed the command documentation generator never going out of temp state * Improved documentation for certain commands
There was a lack of parity between the CI and development environment scripts for command docgen, causing a condition where the command documentation would fail to build properly in development.
superagent doesnt like unescaped characters at all
This commit fixes current code to work with Lavalink v3 as well as with FFmpeg.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR gets a 👍 from me, no problems that are obvious.
Please refer to the changelog for a full list of changes