diff --git a/config/default.yml b/config/default.yml index 7a291f9e..ed78f4b8 100644 --- a/config/default.yml +++ b/config/default.yml @@ -2,7 +2,7 @@ nonebot: host: 127.0.0.1 port: 20216 command_start: ["", "/"] - nickname: [ "liteyuki-dev" ] + nickname: [ "liteyuki" ] default_language: zh driver: ~fastapi+~httpx+~websockets alconna_use_command_start: true \ No newline at end of file diff --git a/liteyuki/bot/__init__.py b/liteyuki/bot/__init__.py index 2c0a0f97..d7a2ce35 100644 --- a/liteyuki/bot/__init__.py +++ b/liteyuki/bot/__init__.py @@ -261,7 +261,7 @@ def get_config_with_compat(key: str, compat_keys: tuple[str], default: Any = Non return get_bot().config[key] for compat_key in compat_keys: if compat_key in get_bot().config: - logger.warning(f"Config key {compat_key} will be deprecated, use {key} instead.") + logger.warning(f"Config key \"{compat_key}\" will be deprecated, use \"{key}\" instead.") return get_bot().config[compat_key] return default diff --git a/liteyuki/dev/observer.py b/liteyuki/dev/observer.py index 844c4498..fb31f6d0 100644 --- a/liteyuki/dev/observer.py +++ b/liteyuki/dev/observer.py @@ -37,7 +37,7 @@ def debounce(wait): return decorator -if get_config_with_compat("liteyuki.dev_mode", ("dev_mode",), False): +if get_config_with_compat("liteyuki.reload", ("dev_mode",), False): logger.debug("Liteyuki Reload enabled, watching for file changes...") observer.start() diff --git a/src/nonebot_plugins/ts_ly_comm.py b/src/nonebot_plugins/ts_ly_comm.py deleted file mode 100644 index e01da08f..00000000 --- a/src/nonebot_plugins/ts_ly_comm.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -""" -Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved - -@Time : 2024/8/16 下午8:30 -@Author : snowykami -@Email : snowykami@outlook.com -@File : ts_ly_comm.py -@Software: PyCharm -""" -from nonebot.plugin import PluginMetadata -from liteyuki.comm.storage import shared_memory - -__plugin_meta__ = PluginMetadata( - name="轻雪通信测试", - description="用于测试轻雪插件通信", - usage="不面向用户", -) - -print("共享内存数据:", shared_memory.get("startup_timestamp", default=None)) \ No newline at end of file