🔖 Update to v1.1.9

some small fix
This commit is contained in:
xtaodada 2022-07-05 20:49:28 +08:00
parent b024004a94
commit 0dde5de2d1
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
4 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ import pyromod.listen
from pyrogram import Client from pyrogram import Client
import sys import sys
pgm_version = "1.1.8" pgm_version = "1.1.9"
CMD_LIST = {} CMD_LIST = {}
module_dir = __path__[0] module_dir = __path__[0]
working_dir = getcwd() working_dir = getcwd()

View File

@ -22,7 +22,7 @@ def strtobool(val):
try: try:
config = load(open(r"config.yml"), Loader=FullLoader) config = load(open(r"config.yml", encoding="utf-8"), Loader=FullLoader)
except FileNotFoundError: except FileNotFoundError:
print("The configuration file does not exist, and a new configuration file is being generated.") print("The configuration file does not exist, and a new configuration file is being generated.")
copyfile(f"{os.getcwd()}{os.sep}config.gen.yml", "config.yml") copyfile(f"{os.getcwd()}{os.sep}config.gen.yml", "config.yml")

View File

@ -40,7 +40,7 @@ def un_tar_gz(filename, dirs):
@listener(is_plugin=False, outgoing=True, command="backup", @listener(is_plugin=False, outgoing=True, command="backup",
description=lang('back_des')) description=lang('backup_des'))
async def backup(message: Message): async def backup(message: Message):
await message.edit(lang('backup_process')) await message.edit(lang('backup_process'))

View File

@ -105,7 +105,7 @@ async def lang_change(message: Message):
file = pathlib.Path('config.yml').read_text() file = pathlib.Path('config.yml').read_text()
if to_lang in dir__: if to_lang in dir__:
file = file.replace(f'application_language: "{from_lang}"', f'application_language: "{to_lang}"') file = file.replace(f'application_language: "{from_lang}"', f'application_language: "{to_lang}"')
with open('config.yml', 'w') as f: with open('config.yml', 'w', encoding="utf-8") as f:
f.write(file) f.write(file)
await message.edit(f"{lang('lang_change_to')} {to_lang}, {lang('lang_reboot')}") await message.edit(f"{lang('lang_change_to')} {to_lang}, {lang('lang_reboot')}")
reload_all() reload_all()
@ -143,7 +143,7 @@ async def alias_commands(message: Message):
source_command = message.parameter[1] source_command = message.parameter[1]
try: try:
del Config.alias_dict[source_command] del Config.alias_dict[source_command]
with open(f"data{sep}alias.json", 'w') as f: with open(f"data{sep}alias.json", 'w', encoding="utf-8") as f:
json_dump(Config.alias_dict, f) json_dump(Config.alias_dict, f)
await message.edit(lang('alias_success')) await message.edit(lang('alias_success'))
reload_all() reload_all()
@ -157,7 +157,7 @@ async def alias_commands(message: Message):
await message.edit(lang('alias_exist')) await message.edit(lang('alias_exist'))
return return
Config.alias_dict[source_command] = to_command Config.alias_dict[source_command] = to_command
with open(f"data{sep}alias.json", 'w') as f: with open(f"data{sep}alias.json", 'w', encoding="utf-8") as f:
json_dump(Config.alias_dict, f) json_dump(Config.alias_dict, f)
await message.edit(lang('alias_success')) await message.edit(lang('alias_success'))
reload_all() reload_all()