Releases: kkrypt0nn/Python-Discord-Bot-Template
Releases · kkrypt0nn/Python-Discord-Bot-Template
Version 5.3
- Using
aiosqlite
instead ofsqlite3
for asynchronous database operations.
Version 5.2.1
- Added error message when subcommands are not given
- Fixed
warning remove
command - Now using keyword arguments (
async def command(self, context, *, message):
) for kick/ban reason, message to sent, etc.
Version 5.2
- Added
load
,reload
andunload
commands. - Added
sync
andunsync
commands. - Code refactoring and cleanup.
Version 5.1
- Added the
help
command once again - Created a group for the
warning
command, has following sub-commands:add
- Adds a warning to the userremove
- Removes a warning from the userlist
- Lists all the warnings of the user
Version 5.0
⚠️ Moved to discord.py 2.0 as it is now officially released
- Added
warnings
command that will show you all the warnings a user has - Moved the blacklist to
sqlite3
database - Now using Hybrid Commands, both prefix and slash commands will get created
- When using the
warn
command, the warning will also be added in a newsqlite3
database
Version 4.1.1
- Fixed the custom checks not being sent in the channels correctly.
Version 4.1
- Added the
hackban
command - Separated slash commands and normal commands so that you remove one of them more easily
- Moved normal commands in
cogs/normal
- Moved slash commands in
cogs/slash
- Moved normal commands in
Version 4.0.1
- Fixed some weird code
Version 4.0
- Now using
disnake
- Added a command that uses buttons (coinflip)
- Added a command that uses selection dropdown (rps)
- Every command is now in slash command and normal command (old way with prefix)
- Make sure to enable the message intents for normal commands as it's now a privileged intent.
- The slash command is above, the normal command is below
Version 3.1.1
- Fixed
TypeError: 'NoneType' object is not iterable
for prefix -> Python 3.10