Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
全新代码重构,更新至1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ayakasuki committed Jun 24, 2023
1 parent 88631b0 commit 76f5752
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 1,136 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
</a>
</div>

<<<<<<< HEAD
**版本 - v1.0.0**
```
📣 更新:更新到v1.0.0
Expand All @@ -38,10 +37,6 @@
- 修复商品图片生成完才发出后台正在生成提示的问题
- 异常捕获更加准确
- 改进了一些文本
=======
**版本 - v0.2.9**
```
>>>>>>> origin/stable
📣 更新:更新到v0.2.9
📣 更新:
- 每日签到、米游币任务执行时间在用户配置的基础上增加随机延迟
Expand Down Expand Up @@ -102,4 +97,4 @@
米游社小助手帮助
```

> ⚠️ 注意 此处没有使用 [🔗 插件命令头](https://github.com/Ljzd-PRO/nonebot-plugin-mystool/wiki/Configuration-Config#command_start)
> ⚠️ 注意 此处没有使用 [🔗 插件命令头](https://github.com/Ljzd-PRO/nonebot-plugin-mystool/wiki/Configuration-Config#command_start)
87 changes: 0 additions & 87 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<<<<<<< HEAD
import pkgutil
from pathlib import Path

Expand Down Expand Up @@ -52,89 +51,3 @@

for _, file, _ in pkgutil.iter_modules([str(FILE_PATH)]):
__import__(file, globals(), level=1)
=======
"""
# mysTool - 米游社辅助工具插件

**版本 - v0.2.9**

## 使用说明

### 🛠️ NoneBot2 机器人部署和插件安装

请查看 -> [🔗Installation](https://github.com/Ljzd-PRO/nonebot-plugin-mystool/wiki/Installation)

### 📖 插件具体使用说明

请查看 -> [🔗Wiki 文档](https://github.com/Ljzd-PRO/nonebot-plugin-mystool/wiki)

### ❓ 获取插件帮助信息

#### 插件命令

```
/帮助
```

> ⚠️ 注意 此处没有使用 [🔗 插件命令头](https://github.com/Ljzd-PRO/nonebot-plugin-mystool/wiki/Configuration-Config#command_start)

## 其他

### [📃源码说明](https://github.com/Ljzd-PRO/nonebot-plugin-mystool/wiki/Source-Structure)
### 适配 [绪山真寻Bot](https://github.com/HibiKier/zhenxun_bot) 的分支
- https://github.com/MWTJC/zhenxun-plugin-mystool
- https://github.com/ayakasuki/nonebot-plugin-mystool

"""
import pkgutil
from pathlib import Path
from nonebot.plugin import PluginMetadata
from configs.config import Config
from .data import create_files
VERSION = "v0.2.9"
#'''插件版本号'''
__zx_plugin_name__ = '米游社小助手'
__plugin_cmd__ = ["米游社小助手"]
__plugin_type__ = ("原神相关",)
__plugin_settings__ = {
"level": 5,
"default_status": True,
"limit_superuser": False,
"cmd": ["米游社小助手"],
}
__plugin_meta__ = PluginMetadata(
name=f"❖米游社小助手插件❖\n版本 - {VERSION}\n",
description="米游社工具-每日米游币任务、游戏签到、商品兑换、免抓包登录\n",
usage="""
\n🔐 {HEAD}登录登录绑定米游社账户\
\n📦 {HEAD}地址设置收货地址ID\
\n🗓️ {HEAD}签到手动进行游戏签到\
\n📅 {HEAD}任务手动执行米游币任务\
\n🛒 {HEAD}兑换米游币商品兑换相关\
\n🎁 {HEAD}商品查看米游币商品信息(商品ID)\
\n📊 {HEAD}便笺查看原神实时便笺(原神树脂洞天财瓮等)\
\n⚙️ {HEAD}设置设置是否开启通知每日任务等相关选项\
\n🔑 {HEAD}账号设置设置设备平台是否开启每日计划任务频道任务\
\n🔔 {HEAD}通知设置设置是否开启每日米游币任务游戏签到的结果通知\
\n🖨️ {HEAD}导出Cookies导出绑定的米游社账号的Cookies数据\
\n📖 {HEAD}帮助查看帮助信息\
\n🔍 {HEAD}帮助 <功能名>查看目标功能详细说明\
\n⚠️你的数据将经过机器人服务器请确定你信任服务器所有者再使用。\
""".strip(),
extra={"version": VERSION}
)


# 需要最先执行的函数
create_files()

# 加载其它代码

FILE_PATH = Path(__file__).parent.absolute()

for _, file, _ in pkgutil.iter_modules([str(FILE_PATH)]):
__import__(file, globals(), level=1)
>>>>>>> origin/stable
Loading

0 comments on commit 76f5752

Please sign in to comment.