From 988d2caced7bc173eb23b013c3a3fcfda26cf9bb Mon Sep 17 00:00:00 2001 From: lishuang Date: Sun, 12 Jul 2020 00:14:22 +0800 Subject: [PATCH] Ready to release 3.1.0 --- CHANGELOG | 14 +++----------- README.md | 2 +- build/pack/build.bat | 2 +- build/pack/build.sh | 2 +- code/core/config.go | 2 +- 5 files changed, 7 insertions(+), 15 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2f8b151..759a570 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/README.md b/README.md index be1ba6e..fb2467f 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/build/pack/build.bat b/build/pack/build.bat index 7c02d03..2199e1d 100644 --- a/build/pack/build.bat +++ b/build/pack/build.bat @@ -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 diff --git a/build/pack/build.sh b/build/pack/build.sh index af6e08c..180834a 100755 --- a/build/pack/build.sh +++ b/build/pack/build.sh @@ -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 diff --git a/code/core/config.go b/code/core/config.go index 219dff3..0dc56af 100644 --- a/code/core/config.go +++ b/code/core/config.go @@ -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 {