Skip to content

Commit

Permalink
Ready to release 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zicla committed May 30, 2019
1 parent bc7c720 commit 53d1ac1
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 23 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,18 @@
每次版本升级时需要修改以下内容。

1. build/pack/build.bat
set VERSION_NAME=tank-x.x.x
VERSION_NAME=tank-x.x.x

2. build/pack/build.sh
VERSION_NAME=tank-x.x.x

3. rest/config.go
3. core/config.go
VERSION = x.x.x

4. tank-front 修改 vuex/index.js
versionName: 'x.x.x'

5. docker-compose 修改 eyeblue/tank:x.x.x
eyeblue/tank:x.x.x

6. readme.md 修改 eyeblue/tank:x.x.x
5. readme.md 修改 eyeblue/tank:x.x.x
eyeblue/tank:x.x.x


Expand Down Expand Up @@ -51,6 +48,14 @@ a. 执行`src/tank/build/pack/build.bat`脚本
b. 上传 tank-x.x.x.windows-x86_64.zip 到蓝眼云盘
c. 在github上发布新版本。

3.更新tank-doc 下载内容

2019-05-31
tank-3.0.3
1. Add default utf8 charset when creating tables.
2. Fix some i18n bug
3. Add a document link in the preference page.


2019-05-27
tank-3.0.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[English Version](./README_EN.md)

# 蓝眼云盘(3.0.2
# 蓝眼云盘(3.0.3

[在线Demo](https://tank.eyeblue.cn) (体验账号: demo 密码:123456)

Expand Down
2 changes: 1 addition & 1 deletion build/html/index.html
Original file line number Diff line number Diff line change
@@ -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=/css/app.b8a22cc6.css rel=preload as=style><link href=/css/chunk-vendors.cb22afd2.css rel=preload as=style><link href=/js/app.5778b328.js rel=preload as=script><link href=/js/chunk-vendors.220ccae9.js rel=preload as=script><link href=/css/chunk-vendors.cb22afd2.css rel=stylesheet><link href=/css/app.b8a22cc6.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=/js/chunk-vendors.220ccae9.js></script><script src=/js/app.5778b328.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=/css/app.b8a22cc6.css rel=preload as=style><link href=/css/chunk-vendors.cb22afd2.css rel=preload as=style><link href=/js/app.ec9d36fc.js rel=preload as=script><link href=/js/chunk-vendors.220ccae9.js rel=preload as=script><link href=/css/chunk-vendors.cb22afd2.css rel=stylesheet><link href=/css/app.b8a22cc6.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=/js/chunk-vendors.220ccae9.js></script><script src=/js/app.ec9d36fc.js></script></body></html>
11 changes: 0 additions & 11 deletions build/html/js/app.5778b328.js

This file was deleted.

1 change: 0 additions & 1 deletion build/html/js/app.5778b328.js.map

This file was deleted.

11 changes: 11 additions & 0 deletions build/html/js/app.ec9d36fc.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/html/js/app.ec9d36fc.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/pack/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@REM prepare the variables.

@REM version name
SET VERSION_NAME=tank-3.0.2
SET VERSION_NAME=tank-3.0.3
ECHO VERSION_NAME: %VERSION_NAME%
@REM golang proxy
SET GOPROXY=https://athens.azurefd.net
Expand Down
2 changes: 1 addition & 1 deletion build/pack/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#prepare the variables.

# version name
VERSION_NAME=tank-3.0.2
VERSION_NAME=tank-3.0.3
echo "VERSION_NAME: ${VERSION_NAME}"
# golang proxy
GOPROXY=https://athens.azurefd.net
Expand Down
2 changes: 1 addition & 1 deletion code/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const (
//db table's prefix. tank30_ means current version is tank:3.0.x
TABLE_PREFIX = "tank30_"

VERSION = "3.0.2"
VERSION = "3.0.3"
)

type Config interface {
Expand Down

0 comments on commit 53d1ac1

Please sign in to comment.