Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zicla committed Jan 12, 2018
1 parent a25c9d7 commit c8b945a
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
# tank
# 蓝眼云盘

## 注意事项
每次版本升级时需要修改以下内容。

1. build/pack/build.bat
set VERSION_NAME=tank-x.x.x

2. build/pack/build.sh
VERSION_NAME=tank-x.x.x

3. rest/config.go
VERSION = x.x.x

4. tank-front 修改 vuex/index.js
versionName: 'x.x.x'


2018-01-12
tank-1.0.1
1. 修复面包屑回退的bug [#1](https://github.com/eyebluecn/tank/issues/1)
2. 修复移动文件时,可能移到其他人的文件夹下的bug
3. 新增404页面
4. 移除掉一些没用的代码


2018-01-01
tank-1.0.0
Expand Down
2 changes: 1 addition & 1 deletion build/pack/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if "%GOPATH%"=="" (
set PRE_DIR=%cd%

@rem version name
set VERSION_NAME=tank-1.0.0
set VERSION_NAME=tank-1.0.1

cd %GOPATH%

Expand Down
2 changes: 1 addition & 1 deletion build/pack/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi

PRE_DIR=$(pwd)

VERSION_NAME=tank-1.0.0
VERSION_NAME=tank-1.0.1
FINAL_NAME=$VERSION_NAME.linux-amd64.tar.gz

cd $GOPATH
Expand Down
2 changes: 1 addition & 1 deletion rest/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (
TABLE_PREFIX = "tank10_"

//当前版本
VERSION = "1.0.0"
VERSION = "1.0.1"
)

/*
Expand Down

0 comments on commit c8b945a

Please sign in to comment.