You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,35 +4,46 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
7
+
## [0.0.9] - 2023-08-09
8
+
9
+
### Added
10
+
11
+
- Support for developer role IDs
12
+
- Ability to skip built-in validations by setting `skipBuiltInValidations` to true inside the `CommandKit` constructor
13
+
14
+
### Changed
15
+
16
+
- Change validations to run custom user validations first, then CommandKit's built-in validations.
17
+
7
18
## [0.0.8] - 2023-07-03
8
19
9
20
### Added
10
21
11
-
- Support for nested files inside of each event folder.
22
+
-Support for nested files inside of each event folder.
12
23
13
24
## [0.0.7] - 2023-07-02
14
25
15
26
### Changed
16
27
17
-
- Give validation functions access to the full command object (commandObj) excluding the run function (as that is handled by the command handler), as opposed to just the `data` and `options` properties.
28
+
-Give validation functions access to the full command object (commandObj) excluding the run function (as that is handled by the command handler), as opposed to just the `data` and `options` properties.
18
29
19
30
## [0.0.6] - 2023-07-02
20
31
21
32
### Fixed
22
33
23
-
- Fixed a bug where wrong event names were being registered on Windows.
34
+
-Fixed a bug where wrong event names were being registered on Windows.
24
35
25
36
## [0.0.5] - 2023-07-02
26
37
27
38
### Added
28
39
29
-
- Ability to automatically update application commands (guilds and global) when there's changes to the description or number of options (slash commands only).
40
+
-Ability to automatically update application commands (guilds and global) when there's changes to the description or number of options (slash commands only).
30
41
31
42
## [0.0.4] - 2023-07-01
32
43
33
44
### Updated
34
45
35
-
- Update package.json with new URLs, scripts, and version
46
+
-Update package.json with new URLs, scripts, and version
Copy file name to clipboardExpand all lines: README.md
+33-25Lines changed: 33 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
# CommandKit
2
2
3
-
CommandKit is a library that makes it easy to handle commands (+validations), and events in your Discord.js projects.
3
+
CommandKit is a library that makes it easy to handle commands (+validations), and events in your Discord.js projects.
4
4
5
-
_Tested with Discord.js version `v14.11.0`_
5
+
**Supports Discord.js version 14**
6
6
7
7
# Features
8
8
9
-
- Very beginner friendly 🚀
10
-
- Support for slash and context menu commands ✅
11
-
- Automatic command registration, edits, and deletion 🤖
12
-
- Supports multiple development servers 🤝
13
-
- Supports multiple users as bot developers 👥
14
-
- Object oriented 💻
9
+
-Very beginner friendly 🚀
10
+
-Support for slash and context menu commands ✅
11
+
-Automatic command registration, edits, and deletion 🤖
12
+
-Supports multiple development servers 🤝
13
+
-Supports multiple users as bot developers 👥
14
+
-Object oriented 💻
15
15
16
16
# Documentation
17
17
@@ -37,38 +37,46 @@ yarn add commandkit
37
37
38
38
# Usage
39
39
40
-
This is a simple overview of how to set up this library with all the options.
41
-
42
-
**It's highly recommended you check out the [documentation](https://commandkit.underctrl.io) to fully understand how to work with this library.**
40
+
This is a simple overview of how to set up this library with all the options. You can read more in the [full documentation](https://commandkit.underctrl.io)
0 commit comments