2015-11-15 21:52:46 -07:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository release">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h2 class="ui header">
|
|
|
|
{{.i18n.Tr "repo.release.releases"}}
|
2018-11-28 04:26:14 -07:00
|
|
|
{{if .CanCreateRelease}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<div class="ui right">
|
|
|
|
<a class="ui small green button" href="{{$.RepoLink}}/releases/new">
|
|
|
|
{{.i18n.Tr "repo.release.new_release"}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</h2>
|
|
|
|
<ul id="release-list">
|
2019-01-06 15:37:30 -07:00
|
|
|
{{range $release := .Releases}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<li class="ui grid">
|
|
|
|
<div class="ui four wide column meta">
|
2017-09-19 23:26:49 -06:00
|
|
|
{{if .IsTag}}
|
2017-12-10 21:37:04 -07:00
|
|
|
{{if .CreatedUnix}}<span class="time">{{TimeSinceUnix .CreatedUnix $.Lang}}</span>{{end}}
|
2017-09-19 23:26:49 -06:00
|
|
|
{{else}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{if .IsDraft}}
|
|
|
|
<span class="ui yellow label">{{$.i18n.Tr "repo.release.draft"}}</span>
|
|
|
|
{{else if .IsPrerelease}}
|
|
|
|
<span class="ui orange label">{{$.i18n.Tr "repo.release.prerelease"}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="ui green label">{{$.i18n.Tr "repo.release.stable"}}</span>
|
|
|
|
{{end}}
|
|
|
|
<span class="tag text blue">
|
2018-09-16 16:28:23 -06:00
|
|
|
<a href="{{$.RepoLink}}/src/tag/{{.TagName | EscapePound}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
</span>
|
2017-09-19 23:26:49 -06:00
|
|
|
<span class="commit">
|
2017-10-29 20:04:25 -06:00
|
|
|
<a href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow"><i class="code icon"></i> {{ShortSha .Sha1}}</a>
|
2017-09-19 23:26:49 -06:00
|
|
|
</span>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="ui twelve wide column detail">
|
2017-09-19 23:26:49 -06:00
|
|
|
{{if .IsTag}}
|
|
|
|
<h4>
|
2018-09-16 16:28:23 -06:00
|
|
|
<a href="{{$.RepoLink}}/src/tag/{{.TagName | EscapePound}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a>
|
2017-09-19 23:26:49 -06:00
|
|
|
</h4>
|
|
|
|
<div class="download">
|
2018-11-28 04:26:14 -07:00
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
2017-10-29 20:04:25 -06:00
|
|
|
<a href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow"><i class="code icon"></i> {{ShortSha .Sha1}}</a>
|
2018-09-16 16:28:23 -06:00
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.zip" rel="nofollow"><i class="octicon octicon-file-zip"></i> ZIP</a>
|
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.tar.gz"><i class="octicon octicon-file-zip"></i> TAR.GZ</a>
|
2017-12-11 23:45:02 -07:00
|
|
|
{{end}}
|
2017-09-19 23:26:49 -06:00
|
|
|
</div>
|
|
|
|
{{else}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<h3>
|
2018-09-16 16:28:23 -06:00
|
|
|
<a href="{{$.RepoLink}}/src/tag/{{.TagName | EscapePound}}">{{.Title}}</a>
|
2018-11-28 04:26:14 -07:00
|
|
|
{{if $.CanCreateRelease}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName | EscapePound}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</h3>
|
|
|
|
<p class="text grey">
|
|
|
|
<span class="author">
|
2019-10-05 05:09:27 -06:00
|
|
|
{{if .OriginalAuthor}}
|
|
|
|
<i class="fa fa-github" aria-hidden="true"></i>
|
|
|
|
{{.OriginalAuthor}}
|
|
|
|
{{else if .Publisher}}
|
2016-08-05 13:12:54 -06:00
|
|
|
<img class="img-10" src="{{.Publisher.RelAvatarLink}}">
|
2015-12-07 15:30:52 -07:00
|
|
|
<a href="{{AppSubUrl}}/{{.Publisher.Name}}">{{.Publisher.Name}}</a>
|
2019-10-05 05:09:27 -06:00
|
|
|
{{else}}
|
|
|
|
Ghost
|
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</span>
|
2017-12-10 21:37:04 -07:00
|
|
|
{{if .CreatedUnix}}<span class="time">{{TimeSinceUnix .CreatedUnix $.Lang}}</span>{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<span class="ahead">{{$.i18n.Tr "repo.release.ahead" .NumCommitsBehind .Target | Str2html}}</span>
|
|
|
|
</p>
|
|
|
|
<div class="markdown desc">
|
|
|
|
{{Str2html .Note}}
|
|
|
|
</div>
|
|
|
|
<div class="download">
|
|
|
|
<h2>{{$.i18n.Tr "repo.release.downloads"}}</h2>
|
|
|
|
<ul class="list">
|
2018-11-28 04:26:14 -07:00
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
2015-12-07 15:30:52 -07:00
|
|
|
<li>
|
2018-09-16 16:28:23 -06:00
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.zip" rel="nofollow"><strong><i class="octicon octicon-file-zip"></i> {{$.i18n.Tr "repo.release.source_code"}} (ZIP)</strong></a>
|
2015-12-07 15:30:52 -07:00
|
|
|
</li>
|
|
|
|
<li>
|
2018-09-16 16:28:23 -06:00
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.tar.gz"><strong><i class="octicon octicon-file-zip"></i> {{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</strong></a>
|
2015-12-07 15:30:52 -07:00
|
|
|
</li>
|
2017-12-11 23:45:02 -07:00
|
|
|
{{end}}
|
2017-01-15 07:57:00 -07:00
|
|
|
{{if .Attachments}}
|
2019-12-28 16:33:13 -07:00
|
|
|
{{range .Attachments}}
|
2019-01-06 15:37:30 -07:00
|
|
|
<li>
|
2019-12-28 16:33:13 -07:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
|
|
|
<strong><span class="ui image octicon octicon-package" title='{{.Name}}'></span> {{.Name}}</strong>
|
|
|
|
<span class="ui text grey right">{{.Size | FileSize}}</span>
|
2019-01-06 15:37:30 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2017-01-15 07:57:00 -07:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<span class="dot"> </span>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
2016-11-10 03:53:29 -07:00
|
|
|
{{template "base/paginate" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2014-04-02 10:43:31 -06:00
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "base/footer" .}}
|