From b9e2f2cf481709d419f27dae349dd3086d883e2a Mon Sep 17 00:00:00 2001 From: lishuang Date: Sat, 9 Sep 2023 11:56:05 +0800 Subject: [PATCH] feat: upgrade t tank-4.0.1 --- CHANGELOG | 21 +++++++++++++++++++++ README.md | 2 +- build/pack/build.bat | 2 +- build/pack/build.sh | 2 +- code/core/config.go | 2 +- 5 files changed, 25 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3538436..9eafbaa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -52,6 +52,27 @@ go get xxx/xxx go mod tidy + +tank-4.0.1 2023-09-09 +1.修复一些文件扫描的bug https://github.com/eyebluecn/tank/issues/221 https://github.com/eyebluecn/tank/issues/220 + +1.Fix scan bug. https://github.com/eyebluecn/tank/issues/221 https://github.com/eyebluecn/tank/issues/220 + + +tank-4.0.0 2023-08-13 +1.增加空间概念,可以多人共同维护一个共享空间中的文件 #201 +2.新增粘贴上传文件功能 #188 +3.文件大小单位选择体验优化 #179 +4.支持使用url的方式抓取文件 +5.一些UI优化 + +1.Add space, supports multi users maintaining a shared space. #201 +2.Add the feature of uploading by pasting files. #188 +3.Human readable file size unit. #179 +4.Add the feature of uploading by url. +6.Some user experience enhancement. + + tank-4.0.0.beta1 2023-07-22 1. Shared space 2. Copy and paste upload diff --git a/README.md b/README.md index de57f91..b3ee62c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [English Version](https://tank-doc.eyeblue.cn/en) -# 蓝眼云盘(4.0.0) +# 蓝眼云盘(4.0.1) [在线Demo](https://tanker.eyeblue.cn) (体验账号: demo 密码:123456) 蓝眼云盘是蓝眼开源系列代表作品之一,致力于打造精致,优雅,简约的云盘。核心功能如下: diff --git a/build/pack/build.bat b/build/pack/build.bat index 72b5bea..dba7193 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-4.0.0 +SET VERSION_NAME=tank-4.0.1 ECHO VERSION_NAME: %VERSION_NAME% @REM golang proxy SET GOPROXY=https://goproxy.cn diff --git a/build/pack/build.sh b/build/pack/build.sh index 36af359..27331b7 100755 --- a/build/pack/build.sh +++ b/build/pack/build.sh @@ -10,7 +10,7 @@ set -e #prepare the variables. # version name -VERSION_NAME=tank-4.0.0 +VERSION_NAME=tank-4.0.1 echo "VERSION_NAME: ${VERSION_NAME}" # golang proxy GOPROXY=https://goproxy.cn diff --git a/code/core/config.go b/code/core/config.go index 244a52e..f5b5c22 100644 --- a/code/core/config.go +++ b/code/core/config.go @@ -14,7 +14,7 @@ const ( //db table's prefix. tank40_ means current version is tank:4.0.x TABLE_PREFIX = "tank40_" - VERSION = "4.0.0" + VERSION = "4.0.1" ) type Config interface {