Skip to content

Commit

Permalink
fix: update mongodb, add smtp error log (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
imaegoo authored Jan 15, 2024
1 parent a729a4f commit 4f6194e
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/Twikoo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ onMounted(() => {

<!-- Twikoo -->
<div id="twikoo"></div>
<component :is="'script'" src="https://cdn.jsdelivr.net/npm/[email protected].29/dist/twikoo.min.js" ref="twikooJs"></component>
<component :is="'script'" src="https://cdn.jsdelivr.net/npm/[email protected].30/dist/twikoo.min.js" ref="twikooJs"></component>
</div>
</template>
2 changes: 1 addition & 1 deletion docs/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ exports.main = require('twikoo-func').main
8. 创建完成后,点击“twikoo"进入云函数详情页,进入“函数代码”标签,点击“文件 - 新建文件”,输入 `package.json`,回车
9. 复制以下代码、粘贴到代码框中,点击“保存并安装依赖”
``` json
{ "dependencies": { "twikoo-func": "1.6.29" } }
{ "dependencies": { "twikoo-func": "1.6.30" } }
```

## 腾讯云命令行部署
Expand Down
10 changes: 5 additions & 5 deletions docs/frontend.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ twikoo:

``` html
<div id="tcomment"></div>
<script src="https://cdn.staticfile.org/twikoo/1.6.29/twikoo.all.min.js"></script>
<script src="https://cdn.staticfile.org/twikoo/1.6.30/twikoo.all.min.js"></script>
<script>
twikoo.init({
envId: '您的环境id', // 腾讯云环境填 envId;Vercel 环境填地址(https://xxx.vercel.app)
Expand All @@ -103,10 +103,10 @@ twikoo.init({

如果遇到默认 CDN 加载速度缓慢,可更换其他 CDN 镜像。以下为可供选择的公共 CDN,其中一些 CDN 可能需要数天时间同步最新版本:

* `https://cdn.staticfile.org/twikoo/1.6.29/twikoo.all.min.js`
* `https://lib.baomitu.com/twikoo/1.6.29/twikoo.all.min.js`
* `https://cdn.bootcdn.net/ajax/libs/twikoo/1.6.29/twikoo.all.min.js`
* `https://cdn.jsdelivr.net/npm/[email protected].29/dist/twikoo.all.min.js`
* `https://cdn.staticfile.org/twikoo/1.6.30/twikoo.all.min.js`
* `https://lib.baomitu.com/twikoo/1.6.30/twikoo.all.min.js`
* `https://cdn.bootcdn.net/ajax/libs/twikoo/1.6.30/twikoo.all.min.js`
* `https://cdn.jsdelivr.net/npm/[email protected].30/dist/twikoo.all.min.js`

## 开启管理面板(腾讯云环境)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twikoo",
"version": "1.6.29",
"version": "1.6.30",
"description": "A simple comment system.",
"keywords": [
"twikoojs",
Expand Down
2 changes: 1 addition & 1 deletion src/client/version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const version = '1.6.29'
const version = '1.6.30'

export { version }
2 changes: 1 addition & 1 deletion src/server/function/twikoo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twikoo-func",
"version": "1.6.29",
"version": "1.6.30",
"description": "A simple comment system.",
"author": "imaegoo <[email protected]> (https://github.com/imaegoo)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/server/function/twikoo/utils/notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const fn = {
const success = await transporter.verify()
if (success) logger.info('SMTP 邮箱配置正常')
} catch (error) {
throw new Error('SMTP 邮箱配置异常:', error)
throw new Error('SMTP 邮箱配置异常:' + error.message)
}
return true
} catch (e) {
Expand Down
2 changes: 1 addition & 1 deletion src/server/netlify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twikoo-netlify",
"version": "1.6.29",
"version": "1.6.30",
"description": "A simple comment system.",
"author": "imaegoo <[email protected]> (https://github.com/imaegoo)",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions src/server/self-hosted/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tkserver",
"version": "1.6.29",
"version": "1.6.30",
"description": "A simple comment system.",
"keywords": [
"twikoo",
Expand Down Expand Up @@ -30,8 +30,8 @@
"dependencies": {
"get-user-ip": "^1.0.1",
"lokijs": "^1.5.12",
"mongodb": "^3.6.3",
"twikoo-func": "1.6.29",
"mongodb": "^6.3.0",
"twikoo-func": "1.6.30",
"uuid": "^8.3.2"
}
}
6 changes: 3 additions & 3 deletions src/server/vercel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twikoo-vercel",
"version": "1.6.29",
"version": "1.6.30",
"description": "A simple comment system.",
"author": "imaegoo <[email protected]> (https://github.com/imaegoo)",
"license": "MIT",
Expand All @@ -12,8 +12,8 @@
"homepage": "https://twikoo.js.org",
"dependencies": {
"get-user-ip": "^1.0.1",
"mongodb": "^3.6.3",
"twikoo-func": "1.6.29",
"mongodb": "^6.3.0",
"twikoo-func": "1.6.30",
"uuid": "^8.3.2"
}
}

0 comments on commit 4f6194e

Please sign in to comment.