diff --git a/package.json b/package.json index 27a24e72fcc9..9e17d0115456 100644 --- a/package.json +++ b/package.json @@ -13,23 +13,23 @@ }, "devDependencies": { "@cordisjs/vitepress": "^3.2.7", - "@intlify/unplugin-vue-i18n": "^1.5.0", - "@koishijs/components": "^1.5.10", - "@koishijs/core": "^4.17.2", + "@intlify/unplugin-vue-i18n": "^1.6.0", + "@koishijs/components": "^1.5.13", + "@koishijs/core": "^4.17.8", "@koishijs/dns": "^1.0.1", "@koishijs/market": "^4.2.5", "@koishijs/registry": "^7.0.3", - "@types/node": "^20.10.2", + "@types/node": "^20.11.30", "@types/spark-md5": "^3.0.4", - "@vueuse/core": "^10.6.1", + "@vueuse/core": "^10.9.0", "cross-env": "^7.0.3", - "element-plus": "2.4.0", + "element-plus": "2.7.3", "esbuild-register": "^3.5.0", - "koishi": "^4.17.2", + "koishi": "^4.17.8", "markdown-it-mathjax3": "^4.3.2", "marked-vue": "^1.3.0", - "typescript": "^5.3.2", - "vitepress": "1.0.0-rc.40", - "vue-i18n": "^9.8.0" + "typescript": "^5.4.3", + "vitepress": "1.2.2", + "vue-i18n": "^9.10.2" } } diff --git a/zh-CN/cookbook/practice/online.md b/zh-CN/cookbook/practice/online.md index 46c280795607..0cff785bf73c 100644 --- a/zh-CN/cookbook/practice/online.md +++ b/zh-CN/cookbook/practice/online.md @@ -169,16 +169,16 @@ ctx.console.addEntry(process.env.KOISHI_BASE ? [ 如果你想在本地测试插件是否能在 k-on! 中运行,可以参考以下流程: -1. 克隆 koishijs/webui 和 koishijs/ponyfills 仓库。 +1. 克隆 koishijs/webui 和 cordiverse/ponyfills 仓库。 ::: tabs code ```npm npm run clone koishijs/webui -npm run clone koishijs/ponyfills +npm run clone cordiverse/ponyfills ``` ```yarn yarn clone koishijs/webui -yarn clone koishijs/ponyfills +yarn clone cordiverse/ponyfills ``` ::: diff --git a/zh-CN/guide/basic/command.md b/zh-CN/guide/basic/command.md index e6c9a26ad3ec..3c9047fe03f9 100644 --- a/zh-CN/guide/basic/command.md +++ b/zh-CN/guide/basic/command.md @@ -96,6 +96,7 @@ ctx.command('test [arg:number]') - channel: `string` 频道,格式为 `{platform}:{id}` - integer: `number` 整数 - posint: `number` 正整数 +- natural: `number` 正整数 - date: `Date` 日期 - image: `Dict` 图片 diff --git a/zh-CN/guide/console/client.md b/zh-CN/guide/console/client.md index dea08395a16a..f283808062e1 100644 --- a/zh-CN/guide/console/client.md +++ b/zh-CN/guide/console/client.md @@ -91,7 +91,7 @@ ctx.settings({ schema: Schema.object({ wallpaper: Schema.object({ image: Schema.string().description('要使用的背景图片。'), - opacity: Schema.number().description('前景的透明度。'), + opacity: Schema.number().description('前景的不透明度。'), }).description('壁纸设置'), }), })