mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	#2682 fix missing slash for go-get meta
This commit is contained in:
		| @@ -3,7 +3,7 @@ Gogs - Go Git Service [ | ||||
|  | ||||
| ##### Current version: 0.8.42 | ||||
| ##### Current version: 0.8.43 | ||||
|  | ||||
| | Web | UI  | Preview  | | ||||
| |:-------------:|:-------:|:-------:| | ||||
|   | ||||
| @@ -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 { | ||||
|   | ||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							| @@ -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()) | ||||
|   | ||||
| @@ -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 @@ | ||||
| 0.8.42.0222 | ||||
| 0.8.43.0223 | ||||
		Reference in New Issue
	
	Block a user