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'