From 5a580c30339a94c75a3cf105fec8e1995d7e27ba Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Wed, 11 Jan 2023 11:58:55 +0100 Subject: [PATCH 1/6] Update README.md -- 2.47.2 From 505431835d5ed1067f2b16c98aca2cdf050982c1 Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Wed, 11 Jan 2023 11:59:50 +0100 Subject: [PATCH 2/6] Create SECURITY.md --- SECURITY.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..475df59 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,10 @@ +# Security Policy + +## Supported Versions +| Version | Supported | +| ------- | ------------------ | +| 1.9.4 | :white_check_mark: | +| < 1.9.4 | :x: | + +## Reporting a Vulnerability +Please report vulnerabilitys in [our discord](https://discord.gg/JVyyDukQqV) by opening a ticket. -- 2.47.2 From 28d5821592e72c5bd1bac6c51075fdd6d229b0fd Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Wed, 11 Jan 2023 12:22:40 +0100 Subject: [PATCH 3/6] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5fc7f0..3766063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ There may be issues/added features that aren't listed here. Some fixed issues/ad - Bugfixes - Removed replit port, due to it being outdated ([#19](https://github.com/ElBe-Development/discord.py-bot-template/issues/19)) - Added `/clear` command ([#20](https://github.com/ElBe-Development/discord.py-bot-template/issues/20)) +- Added cog system ([#24](https://github.com/ElBe-Development/discord.py-bot-template/issues/24), WIP) + More in progress ## v1.9.3 -- 2.47.2 From d7c47a19505cf45e383c3562749d9b6689c186bf Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Wed, 11 Jan 2023 12:23:38 +0100 Subject: [PATCH 4/6] Update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3766063..8f8465a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,3 +22,6 @@ More in progress ## v1.9.1 - Added feature manager ([#4](https://github.com/ElBe-Development/discord.py-bot-template/issues/4)) - Added stop command to command creator + +## Before +Created the bot and added help, info, ping, stop, kick, ban and unban commands. -- 2.47.2 From c44d9a2ceffe99d9ffd0740eef3d23ed137bf0a7 Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Thu, 12 Jan 2023 10:18:24 +0100 Subject: [PATCH 5/6] Create run.bat --- run.bat | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 run.bat diff --git a/run.bat b/run.bat new file mode 100644 index 0000000..1f2756d --- /dev/null +++ b/run.bat @@ -0,0 +1,5 @@ +@echo off +pip install -r requirements.txt +cls +cd Bot +python bot.py -- 2.47.2 From 7d6c62516e3b396aa1495b712387c127cbd4c5ec Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Thu, 12 Jan 2023 10:18:48 +0100 Subject: [PATCH 6/6] Create run.bash --- run.bash | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 run.bash diff --git a/run.bash b/run.bash new file mode 100644 index 0000000..a041aa4 --- /dev/null +++ b/run.bash @@ -0,0 +1,4 @@ +pip3 install -r requirements.txt || echo "PIP is required to install requirements.txt" +clear +cd Bot +python3 bot.py -- 2.47.2