zicla 6 years ago
parent
commit
5cb7998f12
  1. 5
      CHANGELOG
  2. 2
      README.md
  3. 2
      build/html/static/js/app.e7fcae17.js
  4. 2
      build/html/static/js/app.e7fcae17.js.map
  5. 2
      build/pack/build.bat
  6. 2
      build/pack/build.sh
  7. 2
      code/core/config.go
  8. 2
      code/rest/matter_controller.go

5
CHANGELOG

@ -50,6 +50,11 @@ c. 在github上发布新版本。
3.更新tank-doc 下载内容
2019-08-13
tank-3.0.5
1. Fix the Bug of sharing. [#56](https://github.com/eyebluecn/tank/issues/56)
2019-06-11
tank-3.0.4
1. Use relative assets in tank-front.

2
README.md

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

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

File diff suppressed because one or more lines are too long

2
build/html/static/js/app.e7fcae17.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.4
SET VERSION_NAME=tank-3.0.5
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.4
VERSION_NAME=tank-3.0.5
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.4"
VERSION = "3.0.5"
)
type Config interface {

2
code/rest/matter_controller.go

@ -143,7 +143,7 @@ func (this *MatterController) Page(writer http.ResponseWriter, request *http.Req
user := this.findUser(request)
this.shareService.ValidateMatter(request, shareUuid, shareCode, user, shareRootUuid, dirMatter)
userUuid = dirMatter.Uuid
puuid = dirMatter.Uuid
} else {
//if cannot auth by share. Then login is required.

Loading…
Cancel
Save