Releases: lntel/Quickcord
v10.0.0
v9.0.1
What's Changed
- Bump pathval from 1.1.0 to 1.1.1 by @dependabot in #47
Full Changelog: v9.0.0...v9.0.1
v9.0.1-beta.0
This contains a prototype for slash command loading
v9.0.0
v8.0.1
v8.0.0
Within this API breaking change, the loadCommands
method no longer takes a callback parameter but rather uses a promise based return callback (as documented in README).
Old:
bot.loadCommands('./commands', (files) => {
});
New:
await bot.loadCommands('./commands');
or
bot.loadCommands('./commands')
.then(() => {
console.log('Commands loaded');
});
v7.2.0
Fixed DM reaction issue
The issue fixed in this patch is when using the awaitReactions
method within a DM, it would attempt to delete the reaction without checking if it was removable.
Reaction callback utility
This beta release contains the new reaction callback utility. It's buggy at the moment however, it should improve drastically within a couple of versions.
Typescript automatic environment detection
As of version 7.0.0, if you are using typescript, it will no longer be necessary to define ./src
or ./dist
, these will be extracted automatically from the tsconfig.json
file. An example of this is below:
bot.loadCommands('commands', files => {
console.log(files);
});