Browse Source

Release 3.0.6

master
zicla 6 years ago
parent
commit
8686551e71
  1. 6
      CHANGELOG
  2. 2
      README.md
  3. 2
      build/html/index.html
  4. 2
      build/html/static/css/app.310dcbb8.css
  5. BIN
      build/html/static/img/upload.282eb308.png
  6. 11
      build/html/static/js/app.88391206.js
  7. 1
      build/html/static/js/app.88391206.js.map
  8. 11
      build/html/static/js/app.e7fcae17.js
  9. 1
      build/html/static/js/app.e7fcae17.js.map
  10. 14
      build/html/static/js/chunk-vendors.588116bf.js
  11. 2
      build/html/static/js/chunk-vendors.588116bf.js.map
  12. 2
      build/pack/build.bat
  13. 2
      build/pack/build.sh
  14. 2
      code/core/config.go

6
CHANGELOG

@ -51,6 +51,12 @@ c. 在github上发布新版本。
3.更新tank-doc 下载内容
2019-10-13
tank-3.0.6
1. Fix the Bug of limit size.
2. Add the drag feature for uploading files.
3. Fix the page bug of list.
2019-08-13
tank-3.0.5
1. Fix the Bug of sharing. [#56](https://github.com/eyebluecn/tank/issues/56)

2
README.md

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

2
build/html/index.html

@ -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.e7fcae17.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.e7fcae17.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.310dcbb8.css rel=preload as=style><link href=/static/css/chunk-vendors.fc2d671c.css rel=preload as=style><link href=/static/js/app.88391206.js rel=preload as=script><link href=/static/js/chunk-vendors.588116bf.js rel=preload as=script><link href=/static/css/chunk-vendors.fc2d671c.css rel=stylesheet><link href=/static/css/app.310dcbb8.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.588116bf.js></script><script src=/static/js/app.88391206.js></script></body></html>

2
build/html/static/css/app.a7719e8c.css → build/html/static/css/app.310dcbb8.css

File diff suppressed because one or more lines are too long

BIN
build/html/static/img/upload.282eb308.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

11
build/html/static/js/app.88391206.js

File diff suppressed because one or more lines are too long

1
build/html/static/js/app.88391206.js.map

File diff suppressed because one or more lines are too long

11
build/html/static/js/app.e7fcae17.js

File diff suppressed because one or more lines are too long

1
build/html/static/js/app.e7fcae17.js.map

File diff suppressed because one or more lines are too long

14
build/html/static/js/chunk-vendors.220ccae9.js → build/html/static/js/chunk-vendors.588116bf.js

File diff suppressed because one or more lines are too long

2
build/html/static/js/chunk-vendors.220ccae9.js.map → build/html/static/js/chunk-vendors.588116bf.js.map

File diff suppressed because one or more lines are too long

2
build/pack/build.bat

@ -11,7 +11,7 @@
@REM prepare the variables.
@REM version name
SET VERSION_NAME=tank-3.0.5
SET VERSION_NAME=tank-3.0.6
ECHO VERSION_NAME: %VERSION_NAME%
@REM golang proxy
SET GOPROXY=https://athens.azurefd.net

2
build/pack/build.sh

@ -9,7 +9,7 @@
#prepare the variables.
# version name
VERSION_NAME=tank-3.0.5
VERSION_NAME=tank-3.0.6
echo "VERSION_NAME: ${VERSION_NAME}"
# golang proxy
GOPROXY=https://athens.azurefd.net

2
code/core/config.go

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

Loading…
Cancel
Save