2015-11-16 10:22:46 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository release">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h2 class="ui header">
|
|
|
|
{{.i18n.Tr "repo.release.releases"}}
|
2018-11-28 16:56:14 +05:30
|
|
|
{{if .CanCreateRelease}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<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">
|
2020-04-01 04:09:54 +05:30
|
|
|
{{range $idx, $release := .Releases}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<li class="ui grid">
|
|
|
|
<div class="ui four wide column meta">
|
2017-09-20 10:56:49 +05:30
|
|
|
{{if .IsTag}}
|
2017-12-11 10:07:04 +05:30
|
|
|
{{if .CreatedUnix}}<span class="time">{{TimeSinceUnix .CreatedUnix $.Lang}}</span>{{end}}
|
2017-09-20 10:56:49 +05:30
|
|
|
{{else}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{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-17 03:58:23 +05:30
|
|
|
<a href="{{$.RepoLink}}/src/tag/{{.TagName | EscapePound}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a>
|
2015-12-08 04:00:52 +05:30
|
|
|
</span>
|
2017-09-20 10:56:49 +05:30
|
|
|
<span class="commit">
|
2017-10-30 07:34:25 +05:30
|
|
|
<a href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow"><i class="code icon"></i> {{ShortSha .Sha1}}</a>
|
2017-09-20 10:56:49 +05:30
|
|
|
</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="ui twelve wide column detail">
|
2017-09-20 10:56:49 +05:30
|
|
|
{{if .IsTag}}
|
|
|
|
<h4>
|
2018-09-17 03:58:23 +05:30
|
|
|
<a href="{{$.RepoLink}}/src/tag/{{.TagName | EscapePound}}" rel="nofollow"><i class="tag icon"></i> {{.TagName}}</a>
|
2017-09-20 10:56:49 +05:30
|
|
|
</h4>
|
2020-10-22 06:25:25 +05:30
|
|
|
<p class="text grey">
|
|
|
|
{{ if gt .Publisher.ID 0 }}
|
|
|
|
<span class="author">
|
|
|
|
<img class="img-10" src="{{.Publisher.RelAvatarLink}}">
|
|
|
|
<a href="{{AppSubUrl}}/{{.Publisher.Name}}">{{.Publisher.Name}}</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
<span class="ahead"><a href="{{$.RepoLink}}/compare/{{.TagName | EscapePound}}...{{.Target}}">{{$.i18n.Tr "repo.release.ahead.commits" .NumCommitsBehind | Str2html}}</a> {{$.i18n.Tr "repo.release.ahead.target" $.DefaultBranch}}</span>
|
|
|
|
</p>
|
2017-09-20 10:56:49 +05:30
|
|
|
<div class="download">
|
2018-11-28 16:56:14 +05:30
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
2017-10-30 07:34:25 +05:30
|
|
|
<a href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow"><i class="code icon"></i> {{ShortSha .Sha1}}</a>
|
2020-09-12 01:49:00 +05:30
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.zip" rel="nofollow">{{svg "octicon-file-zip"}} ZIP</a>
|
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.tar.gz">{{svg "octicon-file-zip"}} TAR.GZ</a>
|
2017-12-12 12:15:02 +05:30
|
|
|
{{end}}
|
2017-09-20 10:56:49 +05:30
|
|
|
</div>
|
|
|
|
{{else}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<h3>
|
2020-04-18 20:17:15 +05:30
|
|
|
<a href="{{$.RepoLink}}/releases/tag/{{.TagName | EscapePound}}">{{.Title}}</a>
|
2018-11-28 16:56:14 +05:30
|
|
|
{{if $.CanCreateRelease}}<small>(<a href="{{$.RepoLink}}/releases/edit/{{.TagName | EscapePound}}" rel="nofollow">{{$.i18n.Tr "repo.release.edit"}}</a>)</small>{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</h3>
|
|
|
|
<p class="text grey">
|
|
|
|
<span class="author">
|
2019-10-05 16:39:27 +05:30
|
|
|
{{if .OriginalAuthor}}
|
|
|
|
<i class="fa fa-github" aria-hidden="true"></i>
|
|
|
|
{{.OriginalAuthor}}
|
|
|
|
{{else if .Publisher}}
|
2016-08-06 00:42:54 +05:30
|
|
|
<img class="img-10" src="{{.Publisher.RelAvatarLink}}">
|
2015-12-08 04:00:52 +05:30
|
|
|
<a href="{{AppSubUrl}}/{{.Publisher.Name}}">{{.Publisher.Name}}</a>
|
2019-10-05 16:39:27 +05:30
|
|
|
{{else}}
|
|
|
|
Ghost
|
|
|
|
{{end}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</span>
|
2020-06-06 00:14:54 +05:30
|
|
|
{{if .CreatedUnix}}<span class="time">{{TimeSinceUnix .CreatedUnix $.Lang}}</span> | {{end}}
|
|
|
|
<span class="ahead"><a href="{{$.RepoLink}}/compare/{{.TagName | EscapePound}}...{{.Target}}">{{$.i18n.Tr "repo.release.ahead.commits" .NumCommitsBehind | Str2html}}</a> {{$.i18n.Tr "repo.release.ahead.target" .Target}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
</p>
|
|
|
|
<div class="markdown desc">
|
|
|
|
{{Str2html .Note}}
|
|
|
|
</div>
|
|
|
|
<div class="download">
|
2020-04-01 04:09:54 +05:30
|
|
|
<div class="ui accordion">
|
|
|
|
<h2 class="title {{if eq $idx 0}}active{{end}}">
|
|
|
|
<i class="dropdown icon"></i>
|
|
|
|
{{$.i18n.Tr "repo.release.downloads"}}
|
|
|
|
</h2>
|
|
|
|
<div class="content {{if eq $idx 0}}active{{end}}">
|
|
|
|
<ul class="list">
|
|
|
|
{{if $.Permission.CanRead $.UnitTypeCode}}
|
|
|
|
<li>
|
2020-09-12 01:49:00 +05:30
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.zip" rel="nofollow"><strong>{{svg "octicon-file-zip"}} {{$.i18n.Tr "repo.release.source_code"}} (ZIP)</strong></a>
|
2020-04-01 04:09:54 +05:30
|
|
|
</li>
|
|
|
|
<li>
|
2020-09-12 01:49:00 +05:30
|
|
|
<a href="{{$.RepoLink}}/archive/{{.TagName | EscapePound}}.tar.gz"><strong>{{svg "octicon-file-zip"}} {{$.i18n.Tr "repo.release.source_code"}} (TAR.GZ)</strong></a>
|
2020-04-01 04:09:54 +05:30
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{if .Attachments}}
|
|
|
|
{{range .Attachments}}
|
|
|
|
<li>
|
2020-09-12 01:49:00 +05:30
|
|
|
<span class="ui text right" data-tooltip="{{$.i18n.Tr "repo.release.download_count" (.DownloadCount | PrettyNumber)}}" data-position="bottom right">{{svg "octicon-info"}}</span>
|
2020-04-01 04:09:54 +05:30
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
2020-09-12 01:49:00 +05:30
|
|
|
<strong><span class="ui image" title='{{.Name}}'>{{svg "octicon-package"}}</span> {{.Name}}</strong>
|
2020-04-01 04:09:54 +05:30
|
|
|
<span class="ui text grey right">{{.Size | FileSize}}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<span class="dot"> </span>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
2016-11-10 16:23:29 +05:30
|
|
|
{{template "base/paginate" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2014-04-02 22:13:31 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|