From d87c4885e111f3e7dc3f000cf300bc04d88e53ef Mon Sep 17 00:00:00 2001 From: phachon Date: Sun, 16 Feb 2020 19:57:36 +0800 Subject: [PATCH] v0.1.6 version --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ README.md | 1 + README_eng.md | 1 + global/system.go | 4 ++-- 4 files changed, 33 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17cd3d86..db2b0a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # 更新日志: +## v0.1.6(2020-02) + +### Fix Bug & Add Feature +#### 修复bug +1. 修复新安装版本号不存在问题 + +#### 新增功能 +1. 完善 pack 打包脚本 +2. 修复 Windows 下 build 脚本编译问题 +3. 搜索支持全文搜索功能 + +### 升级(Upgrade) +1. 下载新版本到部署该项目的根目录 +2. 覆盖解压 (tar -zxvf mm-wiki-v0.1.5-mac-amd64.tar.gz) +3. 执行升级命令 +``` +./mm-wiki --conf conf/mm-wiki.conf --upgrade +``` +3. 重新启动 +``` +./mm-wiki --conf conf/mm-wiki.conf +``` +4. 配置文件新增搜索相关配置(增加到自己的配置文件中) +``` +# 搜索配置 +[search] +interval_time=30 +``` + ## v0.1.5(2019-12) ### Fix Bug & Add Feature diff --git a/README.md b/README.md index 7634f7c3..fd23eb82 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ MM-Wiki 是一个轻量级的企业知识分享与团队协同软件,可用于 - 集成统一登录,本系统支持通过外部系统认证用户, 比如与公司的 LDAP 登录融合。具体请看登录认证功能。 - 邮件通知功能,当开启邮件通知,文档更改会通知所有关注该文档的用户。 - 文档具有分享和下载功能,目前只支持下载 MarkDown 源文件。 +- 支持文档全文搜索 # 安装 ## 1. 自助安装 diff --git a/README_eng.md b/README_eng.md index e98eabd7..73771fcf 100644 --- a/README_eng.md +++ b/README_eng.md @@ -17,6 +17,7 @@ MM-Wiki is a light software that enables companies for internal knowledge sharin - This app allows users to log in through certified external system such as the company’s LDAP log in system. - Stay synced with your team. You’ll receive email notifications when the file you're following is updated. - Share and download the file. For now you can only download files in the form of Markdown plain text. +- Support full text search. # Installation ## Install by downloading it. diff --git a/global/system.go b/global/system.go index 9b205a33..abc1fa41 100644 --- a/global/system.go +++ b/global/system.go @@ -1,6 +1,6 @@ package global const ( - SYSTEM_VERSION = "v0.1.5" // system version code - SYSTEM_COPYRIGHT = "2018 - 2019 phachon" // system copyright + SYSTEM_VERSION = "v0.1.6" // system version code + SYSTEM_COPYRIGHT = "2018 - 2020 phachon" // system copyright )