From dd3f160b085f1420be0a83a3420e58ec516469ee Mon Sep 17 00:00:00 2001 From: xjh22222228 Date: Fri, 22 Jan 2021 23:20:24 +0800 Subject: [PATCH] v5.0.6 --- CHANGELOG.md | 10 +++++++++- package-lock.json | 2 +- package.json | 2 +- src/components/card/index.component.html | 2 +- src/constants/index.ts | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b3b1c2..3b375a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 5.0.6 +- 💄 修改网站布局。 +- 💄 添加首屏 Loading。 +- 💄 采用下拉菜单选择多站点使其可容纳多个。 +- 💄 其他优化。 + + + ## 5.0.5 `2021-01-20` @@ -6,7 +14,7 @@ - 💄 不再通过文件进行验证Token - 💄 配置文件增加路由Hash模式设置 - 💄 查看信息增加当前版本和最新版本 -- 🌐 终于支持 SEO 了!!! +- 💄 终于支持 SEO 了!!! diff --git a/package-lock.json b/package-lock.json index 74b5706..2a31208 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nav", - "version": "5.0.5", + "version": "5.0.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index cf34b84..f484fc9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nav", - "version": "5.0.5", + "version": "5.0.6", "author": "xiejiahe", "bugs": { "url": "https://github.com/xjh22222228/nav/issues" diff --git a/src/components/card/index.component.html b/src/components/card/index.component.html index e0e2143..0e5b3c7 100644 --- a/src/components/card/index.component.html +++ b/src/components/card/index.component.html @@ -87,7 +87,7 @@ class="container" nz-dropdown [nzDropdownMenu]="menu" - [nzDisabled]="(!isEditing.value || hasKeyword()) && !isLogin" + [nzDisabled]="!isEditing.value || hasKeyword() || !isLogin" [nzClickHide]="false" > diff --git a/src/constants/index.ts b/src/constants/index.ts index 16bc56f..71683a3 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -7,7 +7,7 @@ function isMac() { export const DB_PATH = 'data/db.json' -export const VERSION = '5.0.5' +export const VERSION = '5.0.6' // keyboard event const prefix = isMac() ? 'command' : 'ctrl' -- GitLab