Skip to content

Commit

Permalink
v0.1.6 version
Browse files Browse the repository at this point in the history
  • Loading branch information
phachon committed Feb 16, 2020
1 parent 15d1340 commit d87c488
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ MM-Wiki 是一个轻量级的企业知识分享与团队协同软件,可用于
- 集成统一登录,本系统支持通过外部系统认证用户, 比如与公司的 LDAP 登录融合。具体请看登录认证功能。
- 邮件通知功能,当开启邮件通知,文档更改会通知所有关注该文档的用户。
- 文档具有分享和下载功能,目前只支持下载 MarkDown 源文件。
- 支持文档全文搜索

# 安装
## 1. 自助安装
Expand Down
1 change: 1 addition & 0 deletions README_eng.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions global/system.go
Original file line number Diff line number Diff line change
@@ -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
)

0 comments on commit d87c488

Please sign in to comment.