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
+3 -11
View File
@@ -52,22 +52,14 @@ c. 在github上发布新版本。
TO RELEASE TO RELEASE
tank-3.1.0.beta1 tank-3.1.0
1. Reconstruct frontend by typescript+react+antd.
1. Enhance the webdav ability. 1. Enhance the webdav ability.
2. Add charset in mysql config. 2. Add charset in mysql config.
3. Add preview_config. 3. Add preview_config.
4. Add delete user feature. 4. Add delete user feature.
5. Fix the move to root dir bug. 5. Fix the move to root dir bug.
6. Add Scan config.
ALTER TABLE `tank`.`tank30_matter`
ADD COLUMN `prop` VARCHAR(1024) NULL DEFAULT '{}' AFTER `times`;
2. Remove Migrate 20To30
2019-10-13 2019-10-13
+1 -1
View File
@@ -2,7 +2,7 @@
[English Version](https://tank-doc.eyeblue.cn/en) [English Version](https://tank-doc.eyeblue.cn/en)
# 蓝眼云盘(3.0.6 # 蓝眼云盘(3.1.0
[在线Demo](https://tank.eyeblue.cn) (体验账号: demo 密码:123456) [在线Demo](https://tank.eyeblue.cn) (体验账号: demo 密码:123456)
+1 -1
View File
@@ -11,7 +11,7 @@
@REM prepare the variables. @REM prepare the variables.
@REM version name @REM version name
SET VERSION_NAME=tank-3.1.0.beta1 SET VERSION_NAME=tank-3.1.0
ECHO VERSION_NAME: %VERSION_NAME% ECHO VERSION_NAME: %VERSION_NAME%
@REM golang proxy @REM golang proxy
SET GOPROXY=https://athens.azurefd.net SET GOPROXY=https://athens.azurefd.net
+1 -1
View File
@@ -9,7 +9,7 @@
#prepare the variables. #prepare the variables.
# version name # version name
VERSION_NAME=tank-3.1.0.beta1 VERSION_NAME=tank-3.1.0
echo "VERSION_NAME: ${VERSION_NAME}" echo "VERSION_NAME: ${VERSION_NAME}"
# golang proxy # golang proxy
GOPROXY=https://athens.azurefd.net GOPROXY=https://athens.azurefd.net
+1 -1
View File
@@ -12,7 +12,7 @@ const (
//db table's prefix. tank31_ means current version is tank:3.1.x //db table's prefix. tank31_ means current version is tank:3.1.x
TABLE_PREFIX = "tank31_" TABLE_PREFIX = "tank31_"
VERSION = "3.1.0.beta1" VERSION = "3.1.0"
) )
type Config interface { type Config interface {