dev #2

Merged
WhatDidYouExpect merged 24 commits from dev into main 2025-07-22 00:26:21 +02:00
Showing only changes of commit 4a695a7bac - Show all commits

3
bot.py
View file

@ -7,8 +7,8 @@ import traceback
import subprocess import subprocess
import tempfile import tempfile
import shutil import shutil
import uuid
import asyncio import asyncio
import platform
import sys import sys
from typing import List, Dict, Set, Optional, Tuple, Any, Union, Callable, Coroutine, TypeVar, Type from typing import List, Dict, Set, Optional, Tuple, Any, Union, Callable, Coroutine, TypeVar, Type
import logging import logging
@ -480,6 +480,7 @@ async def about(ctx: commands.Context) -> None:
embed.add_field(name=f"{(_('command_about_embed_field1'))}", value=f"{NAME}", inline=False) embed.add_field(name=f"{(_('command_about_embed_field1'))}", value=f"{NAME}", inline=False)
embed.add_field(name=f"{(_('command_about_embed_field2name'))}", value=f"{(_('command_about_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False) embed.add_field(name=f"{(_('command_about_embed_field2name'))}", value=f"{(_('command_about_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False)
embed.add_field(name=f"Github", value=get_git_remote_url()) embed.add_field(name=f"Github", value=get_git_remote_url())
embed.add_field(name=f"OS", value=platform.platform)
await send_message(ctx, embed=embed) await send_message(ctx, embed=embed)