Browse Source

Minor fix for #3194

- Update locale bindata
Unknwon 8 years ago
parent
commit
4bbb878d20
4 changed files with 7 additions and 3 deletions
  1. 1 1
      gogs.go
  2. 0 0
      modules/bindata/bindata.go
  3. 5 1
      routers/repo/view.go
  4. 1 1
      templates/.VERSION

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.9.30.0601"
+const APP_VER = "0.9.31.0627"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())

File diff suppressed because it is too large
+ 0 - 0
modules/bindata/bindata.go


+ 5 - 1
routers/repo/view.go

@@ -30,7 +30,11 @@ const (
 )
 
 func Home(ctx *context.Context) {
-	ctx.Data["Title"] = ctx.Repo.Repository.Owner.Name + "/" + ctx.Repo.Repository.Name + ": " + ctx.Repo.Repository.Description
+	title := ctx.Repo.Repository.Owner.Name + "/" + ctx.Repo.Repository.Name
+	if len(ctx.Repo.Repository.Description) > 0 {
+		title += ": " + ctx.Repo.Repository.Description
+	}
+	ctx.Data["Title"] = title
 	ctx.Data["PageIsViewCode"] = true
 	ctx.Data["RequireHighlightJS"] = true
 

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.9.30.0601
+0.9.31.0627

Some files were not shown because too many files changed in this diff