From fb1fe4e0337ca844507e3f6396ca99a62fb9a54e Mon Sep 17 00:00:00 2001 From: TomyJan Date: Fri, 28 Jul 2023 23:15:34 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 20 +++++++++++++++++++- README.md | 2 +- apps/gameCard.js | 2 +- data/system/yaml/help.yaml | 5 +++++ package.json | 2 +- 5 files changed, 27 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 031b05e..ffa2adc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,22 @@ -## [0.1.2-dev](https://github.com/TomyJan/Yunzai-Kuro-Plugin/compare/v0.1.1-rel...v0.1.2-dev) (2023-07-27) +## [0.1.2-rel](https://github.com/TomyJan/Yunzai-Kuro-Plugin/compare/v0.1.1-rel...v0.1.2-rel) (2023-07-28) + + +### Bug Fixes + +* 防止kuroApi方法重名 ([f1ea940](https://github.com/TomyJan/Yunzai-Kuro-Plugin/commit/f1ea94021bee07ea79b343a3817309c25a8662a2)) +* 移除失效的头像上传 ([c07d5c2](https://github.com/TomyJan/Yunzai-Kuro-Plugin/commit/c07d5c2c1c3fb57afedfbcf1dc5144e1aa92d323)) + + +### Features + +* 任务返回文本显示账号昵称 ([7b38188](https://github.com/TomyJan/Yunzai-Kuro-Plugin/commit/7b3818817dfe56ff3e1bd82bddd38e5bce8c5ceb)) +* 完成战双游戏卡片 ([886c3e8](https://github.com/TomyJan/Yunzai-Kuro-Plugin/commit/886c3e899dc5d25178e4dd708824ca0f326674f8)) +* 游戏卡片::网页模板 ([aa7af57](https://github.com/TomyJan/Yunzai-Kuro-Plugin/commit/aa7af57d655f54ada1a90164c993a098112620a8)) + + +### Performance Improvements + +* 改进游戏卡片模板 ([016737b](https://github.com/TomyJan/Yunzai-Kuro-Plugin/commit/016737bb0d97e375082bf6a3775609b5e4fc010a)) diff --git a/README.md b/README.md index d2ac3e4..d59d752 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ ### 查询相关 -- [ ] 库街区角色墙信息 +- [x] 库街区角色墙信息 `#战双卡片` ### 小工具 diff --git a/apps/gameCard.js b/apps/gameCard.js index e383a52..fdf0547 100644 --- a/apps/gameCard.js +++ b/apps/gameCard.js @@ -36,7 +36,7 @@ export class gameCard extends plugin { async cache(data) { let tmp = md5(JSON.stringify(data)) if (gameCard.pnsCardData.md5 === tmp) { - //return gameCard.pnsCardData.img + return gameCard.pnsCardData.img } gameCard.pnsCardData.img = await puppeteer.screenshot('gameCardPns', data) diff --git a/data/system/yaml/help.yaml b/data/system/yaml/help.yaml index 6d64d03..6bcb834 100644 --- a/data/system/yaml/help.yaml +++ b/data/system/yaml/help.yaml @@ -15,3 +15,8 @@ - icon: kurocorn title: "#库街区每日" desc: 完成库街区日常任务 +- group: 游戏查询 + list: + - icon: pns + title: "#战双卡片" + desc: 查询库街区战双游戏卡片信息 diff --git a/package.json b/package.json index 23e95bc..333f2ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Yunzai-Kuro-Plugin", - "version": "0.1.2-dev", + "version": "0.1.2-rel", "author": "TomyJan", "description": "Yunzai-Bot plugin for kuro games.", "type": "module",