Release 3.0.4

This commit is contained in:
zicla 2019-06-11 01:03:40 +08:00
parent a070df069b
commit e8ba2326aa
8 changed files with 14 additions and 8 deletions

View File

@ -50,6 +50,12 @@ c. 在github上发布新版本。
3.更新tank-doc 下载内容
2019-06-11
tank-3.0.4
1. Use relative assets in tank-front.
2. Fix the total size check bug.
3. Add feature. Creating user.
2019-05-31
tank-3.0.3
1. Add default utf8 charset when creating tables.

View File

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

View File

@ -1 +1 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=favicon.ico><title>EyeblueTank</title><link href=static/css/app.a7719e8c.css rel=preload as=style><link href=static/css/chunk-vendors.fc2d671c.css rel=preload as=style><link href=static/js/app.0806466c.js rel=preload as=script><link href=static/js/chunk-vendors.220ccae9.js rel=preload as=script><link href=static/css/chunk-vendors.fc2d671c.css rel=stylesheet><link href=static/css/app.a7719e8c.css rel=stylesheet></head><body><noscript><strong>We're sorry but tank-front-tmp doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=static/js/chunk-vendors.220ccae9.js></script><script src=static/js/app.0806466c.js></script></body></html>
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=favicon.ico><title>EyeblueTank</title><link href=static/css/app.a7719e8c.css rel=preload as=style><link href=static/css/chunk-vendors.fc2d671c.css rel=preload as=style><link href=static/js/app.285c03fe.js rel=preload as=script><link href=static/js/chunk-vendors.220ccae9.js rel=preload as=script><link href=static/css/chunk-vendors.fc2d671c.css rel=stylesheet><link href=static/css/app.a7719e8c.css rel=stylesheet></head><body><noscript><strong>We're sorry but tank-front-tmp doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=static/js/chunk-vendors.220ccae9.js></script><script src=static/js/app.285c03fe.js></script></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@
@REM prepare the variables.
@REM version name
SET VERSION_NAME=tank-3.0.3
SET VERSION_NAME=tank-3.0.4
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.0.3
VERSION_NAME=tank-3.0.4
echo "VERSION_NAME: ${VERSION_NAME}"
# golang proxy
GOPROXY=https://athens.azurefd.net

View File

@ -12,7 +12,7 @@ const (
//db table's prefix. tank30_ means current version is tank:3.0.x
TABLE_PREFIX = "tank30_"
VERSION = "3.0.3"
VERSION = "3.0.4"
)
type Config interface {