diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-25 20:11:25 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-25 20:11:25 -0400 |
commit | 688ec6ecbdf0e1c450aa93fdc4d760c4ae63a73f (patch) | |
tree | 8adb59c369d1fe1bd41ae7be38785dc613a29a91 /gogs.go | |
parent | 87854c95a90cf1bebe1bffb833389471fb35f234 (diff) | |
download | gitea-688ec6ecbdf0e1c450aa93fdc4d760c4ae63a73f.tar.gz gitea-688ec6ecbdf0e1c450aa93fdc4d760c4ae63a73f.zip |
Fixed #209
Diffstat (limited to 'gogs.go')
-rw-r--r-- | gogs.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,13 +14,13 @@ import ( "github.com/codegangsta/cli" "github.com/gogits/gogs/cmd" - "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.3.5.0524 Alpha" +const APP_VER = "0.3.5.0525 Alpha" func init() { - base.AppVer = APP_VER + setting.AppVer = APP_VER runtime.GOMAXPROCS(runtime.NumCPU()) } |