From 3b3795c946256dc81de3382c5ed74c4a18193ded Mon Sep 17 00:00:00 2001 From: idranme Date: Mon, 19 Aug 2024 17:38:42 +0800 Subject: [PATCH] chore: v3.29.5 --- manifest.json | 2 +- scripts/test/test_db.ts | 17 ----------------- src/version.ts | 2 +- 3 files changed, 2 insertions(+), 19 deletions(-) delete mode 100644 scripts/test/test_db.ts diff --git a/manifest.json b/manifest.json index 0330437..7609d6d 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "name": "LLOneBot", "slug": "LLOneBot", "description": "实现 OneBot 11 协议,用于 QQ 机器人开发", - "version": "3.29.4", + "version": "3.29.5", "icon": "./icon.webp", "authors": [ { diff --git a/scripts/test/test_db.ts b/scripts/test/test_db.ts deleted file mode 100644 index 5b7444c..0000000 --- a/scripts/test/test_db.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Level } from 'level' - -const db = new Level(process.env['level_db_path'] as string, { valueEncoding: 'json' }) - -async function getGroupNotify() { - let keys = await db.keys().all() - let result: string[] = [] - for (const key of keys) { - // console.log(key) - if (key.startsWith('group_notify_')) { - result.push(key) - } - } - return result -} - -getGroupNotify().then(console.log) diff --git a/src/version.ts b/src/version.ts index 8bf09f6..44fcdcd 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '3.29.4' +export const version = '3.29.5'