From bf9926dd6ab767d1e85de5a99904222e276e0466 Mon Sep 17 00:00:00 2001 From: chenziyu05 Date: Sun, 16 Jul 2023 20:21:50 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E4=BE=A7=E6=A0=8F=E7=94=9F=E6=88=90?= =?UTF-8?q?=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vitepress/scripts/generateSideBar.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/.vitepress/scripts/generateSideBar.ts b/docs/.vitepress/scripts/generateSideBar.ts index 9f1ff6dd..5d7082ce 100644 --- a/docs/.vitepress/scripts/generateSideBar.ts +++ b/docs/.vitepress/scripts/generateSideBar.ts @@ -4,11 +4,8 @@ import path from 'path' export default function generateSideBar() { const articles = fs.readdirSync(path.resolve(__dirname, '../../article')) - // 排除掉资源文件夹 - const folders = ['assets'] - const sidebar = articles - .filter((article) => !folders.includes(article)) + .filter((article) => article.endsWith('.md')) .map((article) => { // 移除后缀 `.md` const title = article.replace(/\.md$/, '') From 19542955c6296b157974b65adec9de1226822e4a Mon Sep 17 00:00:00 2001 From: ZiuChen Date: Mon, 25 Sep 2023 00:43:05 +0800 Subject: [PATCH 2/2] docs: CM log update --- docs/project/ClipboardManager/log/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/project/ClipboardManager/log/index.md b/docs/project/ClipboardManager/log/index.md index ac1df7d2..fd454f86 100644 --- a/docs/project/ClipboardManager/log/index.md +++ b/docs/project/ClipboardManager/log/index.md @@ -6,6 +6,16 @@ aside: false # 更新日志 +## v2.2.2 + +`2023-09-25` + +- feat: 新增快捷键 Ctrl+上下左右 快速切换分类与跳转首个/最末条目 +- feat: 分类支持左右快速跳转首个/最末分类 +- feat: 支持设置不记录文件内容 +- fix: 修正底部提示展示规则 +- fix: 执行完自定义操作按钮后自动退出预览抽屉 + ## v2.2.1 `2023-06-26`