diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/repo/home.tmpl | 6 |
4 files changed, 6 insertions, 6 deletions
@@ -3,7 +3,7 @@ Gogs - Go Git Service [ -##### Current tip version: 0.9.115 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions ~~or submit a task on [alpha stage automated binary building system](https://build.gogs.io/)~~) +##### Current tip version: 0.9.116 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions ~~or submit a task on [alpha stage automated binary building system](https://build.gogs.io/)~~) | Web | UI | Preview | |:-------------:|:-------:|:-------:| @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.115.0103" +const APP_VER = "0.9.116.0124" func init() { setting.AppVer = APP_VER diff --git a/templates/.VERSION b/templates/.VERSION index 5014f536..d66ae3bf 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.115.0103
\ No newline at end of file +0.9.116.0124
\ No newline at end of file diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 88e74eb6..f059ea19 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -18,16 +18,16 @@ {{template "repo/branch_dropdown" .}} <div class="fitted item"> <div class="ui breadcrumb"> - <a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{EllipsisString .Repository.Name 25}}</a> + <a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{EllipsisString .Repository.Name 15}}</a> {{ $n := len .TreeNames}} {{ $l := Subtract $n 1}} {{range $i, $v := .TreeNames}} <div class="divider"> / </div> {{if eq $i $l}} - <span class="active section">{{EllipsisString $v 15}}</span> + <span class="active section">{{$v}}</span> {{else}} {{ $p := index $.Paths $i}} - <span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{EllipsisString $v 15}}</a></span> + <span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{$v}}</a></span> {{end}} {{end}} </div> |