Skip to content

Commit

Permalink
fix(core): 0.1.14
Browse files Browse the repository at this point in the history
1. refine configuration document
2. fix npm package import
3. fix ios icon
  • Loading branch information
imaegoo committed Sep 27, 2020
1 parent 6646552 commit 8cf4b5e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions docs/configuration.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# 配置

Twikoo 的配置保存在数据库中,目前修改配置需进入控制台
Twikoo 的配置保存在数据库中,目前修改配置需进入云开发控制台,不方便之处还请谅解,后续会和评论管理一起,上线配置管理页面

::: warning 注意
请确保 config 表的权限**不是**“所有用户可读”,以保证 SMTP 密码等信息不会泄露。<br>
* 配置是可选的,即使没有配置也可以使用。
* 请确保 config 表的权限**不是**“所有用户可读”,以保证 SMTP 密码等信息不会泄露。<br>
不过放心,默认权限是安全的,您不需要更改。
* 请将配置项放在一条数据记录中。
:::

## 通用
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": "0.1.13",
"version": "0.1.14",
"description": "A simple comment system based on Tencent CloudBase (tcb).",
"author": "imaegoo <hello@imaegoo.com> (https://github.com/imaegoo)",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions src/js/main.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ async function init (options = {}) {
render(data, options)
}

export default init
export {
init
}
1 change: 1 addition & 0 deletions src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ async function init (options = {}) {
render(data, options)
}

export default init
export {
init
}
3 changes: 2 additions & 1 deletion src/view/components/TkComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ import iconIe from '@fortawesome/fontawesome-free/svgs/brands/internet-explorer.
import iconEdge from '@fortawesome/fontawesome-free/svgs/brands/edge.svg'
import iconOther from '@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg'
const osList = {
win: iconWindows,
mac: iconApple,
ipad: iconApple,
iphone: iconApple,
ios: iconApple,
android: iconAndroid,
ubuntu: iconUbuntu,
linux: iconLinux
Expand Down Expand Up @@ -191,6 +191,7 @@ export default {
color: #999999;
font-size: 0.875em;
display: flex;
flex-wrap: wrap;
margin-top: 0.5rem;
}
.tk-extra {
Expand Down

0 comments on commit 8cf4b5e

Please sign in to comment.