Skip to content

Releases: lntel/Quickcord

v10.0.0

19 Aug 23:08
5c24d93
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.1...v10.0.0

v9.0.1

22 Mar 19:49
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.0...v9.0.1

v9.0.1-beta.0

25 Sep 01:01
Compare
Choose a tag to compare
v9.0.1-beta.0 Pre-release
Pre-release

This contains a prototype for slash command loading

v9.0.0

24 Sep 22:19
Compare
Choose a tag to compare

In this release, Discord.JS has made a whole lot of API breaking changes that may affect your projects.

v8.0.1

07 Sep 14:01
Compare
Choose a tag to compare

Within this patch, the question utility no longer processes inputs as commands.

v8.0.0

04 Sep 14:04
Compare
Choose a tag to compare

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

03 Sep 16:50
Compare
Choose a tag to compare

This release fixes #40 and also implements a new command option which is defined in the readme.

Fixed DM reaction issue

13 Aug 19:43
Compare
Choose a tag to compare

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

06 Apr 14:00
Compare
Choose a tag to compare
Pre-release

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

22 Mar 19:09
Compare
Choose a tag to compare

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);
});