Skip to content

Releases: D3OXY/djs-commands

v1.4.10

25 Sep 11:56
e955ebc

Choose a tag to compare

Patch Changes

v1.4.9

25 Sep 05:48
3c82634

Choose a tag to compare

Patch Changes

  • d8d0dc1: Update Dependencies to latest version

v1.4.8

12 Sep 14:00
243d6ec

Choose a tag to compare

Patch Changes

v1.4.7

16 Aug 14:51
3989ef4

Choose a tag to compare

Patch Changes

  • b653f40: Fix Readme not showing up on npmjs page

v1.4.6

12 Aug 17:49
d2331a6

Choose a tag to compare

Patch Changes

v1.4.4

31 Jul 06:55
3bb6c32

Choose a tag to compare

Patch Changes

  • 389726a: Added a Initialization option defaultCommand which replaces disableAllDefaultCommands and disabledDefaultCommands options.
    Example:

    new CommandHandler({
      disableAllDefaultCommands: false, // Replaced by defaultCommand.disableAll
      disabledDefaultCommands: ["prefix"], // Replaced by defaultCommand.disabledCommands
      defaultCommand: {
        disableAll: false, // Option to disable all default commands
        testOnly: true, // Option to register the default commands as testOnly
        disabledCommands: ["prefix"], // Option to disable specific default commands
      },
    });
  • 9b02477: Added a new Initialization option antiCrash (disabled by default) which can be used to prevent the bot from crashing if a error is thrown and will instead log the error to the console. This option is not recommended and only there for some weird edge cases in which you don't want your production bot to crash.

  • 5bda30b: Added a new ownerOnly Default Command /slashcommand.
    Which can be used list/delete slash commands registered by the bot on a guild/global level.

  • f85c0cf: Fixed a bug where some Default commands were registered in both guild and global scope.

v1.4.3

30 Jul 16:25
0571c4e

Choose a tag to compare

Patch Changes

  • 98c45d1: Changed build:dev script to dev
  • 62fc4e0: Published new Documentation page, Updated README.md and package.json with documentation info.

v1.4.2

29 Jul 07:06
2b926a6

Choose a tag to compare

Patch Changes

  • 71d9175: - Added package-lock.json, Removed src from .npmignore
    • Refactored CommandType, DefaultCommands, CooldownTypes enum to use const object and added type alias for improved type safety.
    • Removed keepAlive option from mongoose.connect() call as it is deprecated and is now defaulted to true on Mongoose version 5.2.0 and above.

v1.4.1

27 Jul 10:34
41b1036

Choose a tag to compare

Patch Changes

  • 13e8c13: Reverted #c325c47 (CommandType, Cooldowntypes back to enum)

v1.4.0

27 Jul 08:12
1af77d7

Choose a tag to compare

Minor Changes

  • c325c47: Changed CommandType, CooldownTye Enum to a const type for better autocomplete.