From c3a1d241bc4e8ea023b66b8a5773f07376a260c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:22:45 +0530 Subject: [PATCH 01/10] Update admin.py --- bot/plugins/admin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/plugins/admin.py b/bot/plugins/admin.py index 7a6e42d..02a27be 100644 --- a/bot/plugins/admin.py +++ b/bot/plugins/admin.py @@ -13,7 +13,7 @@ from bot.core.handlers.broadcast import broadcast_handler -@Client.on_message(filters.command("status") & filters.user(Config.OWNER_ID) & ~filters.edited) +@Client.on_message(filters.command("status") & filters.user(Config.OWNER_ID)) async def status_handler(_, m: Message): total, used, free = shutil.disk_usage(".") total = humanbytes(total) @@ -35,6 +35,6 @@ async def status_handler(_, m: Message): ) -@Client.on_message(filters.command("broadcast") & filters.user(Config.OWNER_ID) & filters.reply & ~filters.edited) +@Client.on_message(filters.command("broadcast") & filters.user(Config.OWNER_ID) & filters.reply) async def broadcast_in(_, m: Message): await broadcast_handler(m) From 4dece79829cbba4cfe269aafcd7bf36a54ae2c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:24:24 +0530 Subject: [PATCH 02/10] Update on_media.py --- bot/plugins/on_media.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/plugins/on_media.py b/bot/plugins/on_media.py index 958a9be..95075cf 100644 --- a/bot/plugins/on_media.py +++ b/bot/plugins/on_media.py @@ -11,7 +11,7 @@ ) -@Client.on_message((filters.video | filters.audio | filters.document) & ~filters.channel & ~filters.edited) +@Client.on_message((filters.video | filters.audio | filters.document) & ~filters.channel) async def on_media_handler(c: Client, m: "types.Message"): if not m.from_user: return await m.reply_text("I don't know about you sar :(") From c6680b03f972f14f5d031a35001019e0b02d6ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:26:26 +0530 Subject: [PATCH 03/10] Update ping.py --- bot/plugins/ping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/plugins/ping.py b/bot/plugins/ping.py index f4deeb3..f1f4f2a 100644 --- a/bot/plugins/ping.py +++ b/bot/plugins/ping.py @@ -5,7 +5,7 @@ from bot.core.db.add import add_user_to_database -@Client.on_message(filters.command(["start", "ping"]) & filters.private & ~filters.edited) +@Client.on_message(filters.command(["start", "ping"]) & filters.private) async def ping_handler(c: Client, m: "types.Message"): if not m.from_user: return await m.reply_text("I don't know about you sir :(") @@ -23,7 +23,7 @@ async def ping_handler(c: Client, m: "types.Message"): ) -@Client.on_message(filters.command("help") & filters.private & ~filters.edited) +@Client.on_message(filters.command("help") & filters.private) async def help_handler(c: Client, m: "types.Message"): if not m.from_user: return await m.reply_text("I don't know about you sar :(") From f374d13df6a5ba0bc26fbedba994cf0cbfefac35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:27:13 +0530 Subject: [PATCH 04/10] Update rename.py --- bot/plugins/rename.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/plugins/rename.py b/bot/plugins/rename.py index d533749..9e11820 100644 --- a/bot/plugins/rename.py +++ b/bot/plugins/rename.py @@ -25,7 +25,7 @@ from bot.core.handlers.big_rename import handle_big_rename -@Client.on_message(filters.command(["rename", "r"]) & filters.private & ~filters.edited) +@Client.on_message(filters.command(["rename", "r"]) & filters.private) async def rename_handler(c: Client, m: Message): # Checks if not m.from_user: From 135d71d1a1c6aa2b128ac3945aa0c9b42e21504e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:27:50 +0530 Subject: [PATCH 05/10] Update thumbnail.py --- bot/plugins/thumbnail.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/plugins/thumbnail.py b/bot/plugins/thumbnail.py index ee12b67..7a53606 100644 --- a/bot/plugins/thumbnail.py +++ b/bot/plugins/thumbnail.py @@ -7,7 +7,7 @@ from bot.core.db.add import add_user_to_database -@Client.on_message(filters.command("show_thumbnail") & filters.private & ~filters.edited) +@Client.on_message(filters.command("show_thumbnail") & filters.private) async def show_thumbnail(c: Client, m: "types.Message"): if not m.from_user: return await m.reply_text("I don't know about you sir :(") @@ -22,7 +22,7 @@ async def show_thumbnail(c: Client, m: "types.Message"): )) -@Client.on_message(filters.command("set_thumbnail") & filters.private & ~filters.edited) +@Client.on_message(filters.command("set_thumbnail") & filters.private) async def set_thumbnail(c: Client, m: "types.Message"): if (not m.reply_to_message) or (not m.reply_to_message.photo): return await m.reply_text("ππ΄πΏπ»π ππΎ π°π½π πΈπΌπ°πΆπ΄ ππΎ ππ°π π΄ πΈπ½ π°π π²ππππΎπΌ ππ·ππΌπ±π½π°πΈπ»!!") @@ -38,7 +38,7 @@ async def set_thumbnail(c: Client, m: "types.Message"): )) -@Client.on_message(filters.command("delete_thumbnail") & filters.private & ~filters.edited) +@Client.on_message(filters.command("delete_thumbnail") & filters.private) async def delete_thumbnail(c: Client, m: "types.Message"): if not m.from_user: return await m.reply_text("I don't know about you sar :(") From 5beeabee70c6fdcb92087a6c5f91e696922bd68f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:28:21 +0530 Subject: [PATCH 06/10] Update video_info.py --- bot/plugins/video_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/plugins/video_info.py b/bot/plugins/video_info.py index d064f01..74504b3 100644 --- a/bot/plugins/video_info.py +++ b/bot/plugins/video_info.py @@ -27,7 +27,7 @@ def filesystem_free(path='.'): return free -@Client.on_message(filters.command("video_info") & filters.private & ~filters.edited) +@Client.on_message(filters.command("video_info") & filters.private) async def video_info_handler(c: Client, m: Message): await add_user_to_database(c, m) if filesystem_free() < 5000000000: From b6a1ef262dbfc69ed94141ce084d5f73fec17957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Sat, 28 May 2022 17:31:15 +0530 Subject: [PATCH 07/10] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3598e8f..35c2a03 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Pyrogram +git+https://github.com/subinps/pyrogram@inline-m TgCrypto pyromod python-dotenv From 7d24d465fa0c06aa023f0941514c42e5c500e68a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B1=CE=B1dh=C3=AD=20=7C=20=CE=B1rjun=20vr?= <87893573+Aadhi000@users.noreply.github.com> Date: Wed, 6 Jul 2022 15:16:19 +0530 Subject: [PATCH 08/10] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c344ceb..4931ce1 100644 --- a/README.md +++ b/README.md @@ -55,3 +55,7 @@ Press Below Button to Deploy!
+ + +α΄ α΄α΄ α΄Κα΄α΄α΄Κ βΊβΊ [α΄α΄α΄ ΚΙͺ](https://telegram.dog/AboutAadhi) | [ΙͺΙ΄sα΄α΄Ι’Κα΄α΄](https://www.instagram.com/_aadil_m__/) | [Ι’Ιͺα΄Κα΄Κ](GitHub.com/Aadhi000) +α΄Κα΄Ι΄Ι΄α΄Κ βΊβΊ [α΄α΄‘ α΄α΄α΄ α΄α΄α΄α΄’](https://t.me/MWUpdatez) From 8eaa62b67ba19072750d4b16aedca0f08fbdfefb Mon Sep 17 00:00:00 2001 From: Nani0778 <127319827+Nani0778@users.noreply.github.com> Date: Thu, 21 Sep 2023 22:59:13 +0530 Subject: [PATCH 09/10] Update app.json --- app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.json b/app.json index 0f72e47..0cd0301 100644 --- a/app.json +++ b/app.json @@ -7,7 +7,7 @@ "rename", "bot" ], - "repository": "https://github.com/AbirHasan2005/Rename-Bot", + "repository": "https://github.com/NANI7705/Rename-Bot", "website": "https://abirhasan.wtf", "success_url": "https://t.me/AH_RenameBot", "env": { From 7b168b12947a8a89d3fbe8f606623ebf7763eaac Mon Sep 17 00:00:00 2001 From: Nani0778 <127319827+Nani0778@users.noreply.github.com> Date: Thu, 21 Sep 2023 23:00:43 +0530 Subject: [PATCH 10/10] app.json --- app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.json b/app.json index 0cd0301..b03176a 100644 --- a/app.json +++ b/app.json @@ -7,7 +7,7 @@ "rename", "bot" ], - "repository": "https://github.com/NANI7705/Rename-Bot", + "repository": "https://github.com/Nani0778/Rename-Bot", "website": "https://abirhasan.wtf", "success_url": "https://t.me/AH_RenameBot", "env": {