@@ -3,7 +3,7 @@ Gogs - Go Git Service [ |  | ||||
##### Current version: 0.8.42 | |||||
##### Current version: 0.8.43 | |||||
| Web | UI | Preview | | | Web | UI | Preview | | ||||
|:-------------:|:-------:|:-------:| | |:-------------:|:-------:|:-------:| | ||||
@@ -88,7 +88,7 @@ func checkVersion() { | |||||
{"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, | {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, | ||||
{"gopkg.in/ini.v1", ini.Version, "1.8.4"}, | {"gopkg.in/ini.v1", ini.Version, "1.8.4"}, | ||||
{"gopkg.in/macaron.v1", macaron.Version, "0.8.0"}, | {"gopkg.in/macaron.v1", macaron.Version, "0.8.0"}, | ||||
{"github.com/gogits/git-module", git.Version, "0.2.6"}, | |||||
{"github.com/gogits/git-module", git.Version, "0.2.7"}, | |||||
{"github.com/gogits/go-gogs-client", gogs.Version, "0.7.3"}, | {"github.com/gogits/go-gogs-client", gogs.Version, "0.7.3"}, | ||||
} | } | ||||
for _, c := range checkers { | for _, c := range checkers { | ||||
@@ -17,7 +17,7 @@ import ( | |||||
"github.com/gogits/gogs/modules/setting" | "github.com/gogits/gogs/modules/setting" | ||||
) | ) | ||||
const APP_VER = "0.8.42.0222" | |||||
const APP_VER = "0.8.43.0223" | |||||
func init() { | func init() { | ||||
runtime.GOMAXPROCS(runtime.NumCPU()) | runtime.GOMAXPROCS(runtime.NumCPU()) | ||||
@@ -216,7 +216,7 @@ func RepoAssignment(args ...bool) macaron.Handler { | |||||
if ctx.Query("go-get") == "1" { | if ctx.Query("go-get") == "1" { | ||||
ctx.Data["GoGetImport"] = path.Join(setting.Domain, setting.AppSubUrl, owner.Name, repo.Name) | ctx.Data["GoGetImport"] = path.Join(setting.Domain, setting.AppSubUrl, owner.Name, repo.Name) | ||||
prefix := path.Join(setting.AppUrl, owner.Name, repo.Name, "src", ctx.Repo.BranchName) | |||||
prefix := setting.AppUrl + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName) | |||||
ctx.Data["GoDocDirectory"] = prefix + "{/dir}" | ctx.Data["GoDocDirectory"] = prefix + "{/dir}" | ||||
ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}" | ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}" | ||||
} | } | ||||
@@ -1 +1 @@ | |||||
0.8.42.0222 | |||||
0.8.43.0223 |