Browse Source

#2682 fix missing slash for go-get meta

tags/v1.21.12.1
Unknwon 9 years ago
parent
commit
72ce06eab8
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      cmd/web.go
  3. +1
    -1
      gogs.go
  4. +1
    -1
      modules/middleware/repo.go
  5. +1
    -1
      templates/.VERSION

+ 1
- 1
README.md View File

@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra

![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)

##### Current version: 0.8.42
##### Current version: 0.8.43

| Web | UI | Preview |
|:-------------:|:-------:|:-------:|


+ 1
- 1
cmd/web.go View File

@@ -88,7 +88,7 @@ func checkVersion() {
{"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"},
{"gopkg.in/ini.v1", ini.Version, "1.8.4"},
{"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"},
}
for _, c := range checkers {


+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.8.42.0222"
const APP_VER = "0.8.43.0223"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())


+ 1
- 1
modules/middleware/repo.go View File

@@ -216,7 +216,7 @@ func RepoAssignment(args ...bool) macaron.Handler {

if ctx.Query("go-get") == "1" {
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["GoDocFile"] = prefix + "{/dir}/{file}#L{line}"
}


+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.8.42.0222
0.8.43.0223

Loading…
Cancel
Save