Skip to content

Releases: kkrypt0nn/Python-Discord-Bot-Template

Version 5.3

17 Oct 18:26
Compare
Choose a tag to compare
  • Using aiosqlite instead of sqlite3 for asynchronous database operations.

Version 5.2.1

04 Oct 05:22
Compare
Choose a tag to compare
  • 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

30 Sep 10:50
2d0f342
Compare
Choose a tag to compare
  • Added load, reload and unload commands.
  • Added sync and unsync commands.
  • Code refactoring and cleanup.

Version 5.1

12 Sep 17:15
Compare
Choose a tag to compare
  • Added the help command once again
  • Created a group for the warning command, has following sub-commands:
    • add - Adds a warning to the user
    • remove - Removes a warning from the user
    • list - Lists all the warnings of the user

Version 5.0

22 Aug 19:43
7c2dfb2
Compare
Choose a tag to compare

⚠️ 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 new sqlite3 database

Version 4.1.1

18 Jul 17:48
Compare
Choose a tag to compare
  • Fixed the custom checks not being sent in the channels correctly.

Version 4.1

09 Jan 17:50
Compare
Choose a tag to compare
  • Added the hackban command
  • Separated slash commands and normal commands so that you remove one of them more easily

Version 4.0.1

28 Nov 20:14
Compare
Choose a tag to compare
  • Fixed some weird code

Version 4.0

27 Nov 12:26
Compare
Choose a tag to compare
  • 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

16 Nov 14:48
Compare
Choose a tag to compare
  • Fixed TypeError: 'NoneType' object is not iterable for prefix -> Python 3.10