Skip to content

Commit b15db60

Browse files
committed
Update version to 1.10.4
- Incremented application version from 1.10.3 to 1.10.4. - Changed project URL to point to the GitHub repository. - Updated bot version in `main.py` to reflect the new release. - Modified `botinfo` function to update repository and invite links.
1 parent ddddedd commit b15db60

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

WebhookCreator/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ RUN apk add --no-cache --virtual .build-deps gcc musl-dev python3-dev libc-dev l
2828
LABEL maintainer="Discord: pika.pika.no.mi (970119359840284743)" \
2929
description="Discord bot for creating Webhooks." \
3030
release=$BUILD_DATE \
31-
version="1.10.3"
31+
version="1.10.4" \
32+
url="https://github.com/Serpensin/DiscordBots-WebhookCreator"
3233

3334
CMD ["python3", "main.py"]

WebhookCreator/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
if not os.path.exists(APP_FOLDER_NAME):
2929
os.makedirs(APP_FOLDER_NAME)
3030
ACTIVITY_FILE = os.path.join(APP_FOLDER_NAME, 'activity.json')
31-
BOT_VERSION = "1.10.3"
31+
BOT_VERSION = "1.10.4"
3232
TOKEN = os.getenv('TOKEN')
3333
OWNERID = os.getenv('OWNER_ID')
3434
SUPPORTID = os.getenv('SUPPORT_SERVER')
@@ -577,8 +577,8 @@ async def botinfo(interaction: discord.Interaction):
577577
embed.add_field(name="discord.py-Version", value=f"{discord.__version__}", inline=True)
578578
embed.add_field(name="Sentry-Version", value=f"{sentry_sdk.consts.VERSION}", inline=True)
579579

580-
embed.add_field(name="Repo", value=f"[GitLab](https://gitlab.bloodygang.com/Serpensin/Discord-Webhook-Creator)", inline=True)
581-
embed.add_field(name="Invite", value=f"[Invite me](https://discord.com/api/oauth2/authorize?client_id={bot.user.id}&permissions=536871936&scope=bot%20applications.commands)", inline=True)
580+
embed.add_field(name="Repo", value=f"[GitHub](https://github.com/Serpensin/DiscordBots-WebhookCreator)", inline=True)
581+
embed.add_field(name="Invite", value=f"[Invite me](https://discord.com/api/oauth2/authorize?client_id={bot.user.id})", inline=True)
582582
embed.add_field(name="\u200b", value="\u200b", inline=True)
583583

584584
if interaction.user.id == int(OWNERID):

0 commit comments

Comments
 (0)