Skip to content

Commit d87c488

Browse files
committed
v0.1.6 version
1 parent 15d1340 commit d87c488

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# 更新日志:
22

3+
## v0.1.6(2020-02)
4+
5+
### Fix Bug & Add Feature
6+
#### 修复bug
7+
1. 修复新安装版本号不存在问题
8+
9+
#### 新增功能
10+
1. 完善 pack 打包脚本
11+
2. 修复 Windows 下 build 脚本编译问题
12+
3. 搜索支持全文搜索功能
13+
14+
### 升级(Upgrade)
15+
1. 下载新版本到部署该项目的根目录
16+
2. 覆盖解压 (tar -zxvf mm-wiki-v0.1.5-mac-amd64.tar.gz)
17+
3. 执行升级命令
18+
```
19+
./mm-wiki --conf conf/mm-wiki.conf --upgrade
20+
```
21+
3. 重新启动
22+
```
23+
./mm-wiki --conf conf/mm-wiki.conf
24+
```
25+
4. 配置文件新增搜索相关配置(增加到自己的配置文件中)
26+
```
27+
# 搜索配置
28+
[search]
29+
interval_time=30
30+
```
31+
332
## v0.1.5(2019-12)
433

534
### Fix Bug & Add Feature

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ MM-Wiki 是一个轻量级的企业知识分享与团队协同软件,可用于
1818
- 集成统一登录,本系统支持通过外部系统认证用户, 比如与公司的 LDAP 登录融合。具体请看登录认证功能。
1919
- 邮件通知功能,当开启邮件通知,文档更改会通知所有关注该文档的用户。
2020
- 文档具有分享和下载功能,目前只支持下载 MarkDown 源文件。
21+
- 支持文档全文搜索
2122

2223
# 安装
2324
## 1. 自助安装

README_eng.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ MM-Wiki is a light software that enables companies for internal knowledge sharin
1717
- This app allows users to log in through certified external system such as the company’s LDAP log in system.
1818
- Stay synced with your team. You’ll receive email notifications when the file you're following is updated.
1919
- Share and download the file. For now you can only download files in the form of Markdown plain text.
20+
- Support full text search.
2021

2122
# Installation
2223
## Install by downloading it.

global/system.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package global
22

33
const (
4-
SYSTEM_VERSION = "v0.1.5" // system version code
5-
SYSTEM_COPYRIGHT = "2018 - 2019 phachon" // system copyright
4+
SYSTEM_VERSION = "v0.1.6" // system version code
5+
SYSTEM_COPYRIGHT = "2018 - 2020 phachon" // system copyright
66
)

0 commit comments

Comments
 (0)