Ready to release 3.1.0

This commit is contained in:
lishuang 2020-07-12 00:14:22 +08:00
parent c5111929a3
commit 988d2caced
5 changed files with 7 additions and 15 deletions

View File

@ -52,22 +52,14 @@ c. 在github上发布新版本。
TO RELEASE
tank-3.1.0.beta1
tank-3.1.0
1. Reconstruct frontend by typescript+react+antd.
1. Enhance the webdav ability.
2. Add charset in mysql config.
3. Add preview_config.
4. Add delete user feature.
5. Fix the move to root dir bug.
ALTER TABLE `tank`.`tank30_matter`
ADD COLUMN `prop` VARCHAR(1024) NULL DEFAULT '{}' AFTER `times`;
2. Remove Migrate 20To30
6. Add Scan config.
2019-10-13

View File

@ -2,7 +2,7 @@
[English Version](https://tank-doc.eyeblue.cn/en)
# 蓝眼云盘3.0.6
# 蓝眼云盘3.1.0
[在线Demo](https://tank.eyeblue.cn) (体验账号: demo 密码123456)

View File

@ -11,7 +11,7 @@
@REM prepare the variables.
@REM version name
SET VERSION_NAME=tank-3.1.0.beta1
SET VERSION_NAME=tank-3.1.0
ECHO VERSION_NAME: %VERSION_NAME%
@REM golang proxy
SET GOPROXY=https://athens.azurefd.net

View File

@ -9,7 +9,7 @@
#prepare the variables.
# version name
VERSION_NAME=tank-3.1.0.beta1
VERSION_NAME=tank-3.1.0
echo "VERSION_NAME: ${VERSION_NAME}"
# golang proxy
GOPROXY=https://athens.azurefd.net

View File

@ -12,7 +12,7 @@ const (
//db table's prefix. tank31_ means current version is tank:3.1.x
TABLE_PREFIX = "tank31_"
VERSION = "3.1.0.beta1"
VERSION = "3.1.0"
)
type Config interface {