2015-11-16 05:52:46 +01:00
|
|
|
{{template "base/head" .}}
|
2023-04-25 18:29:00 +02:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository releases">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
2023-05-11 00:27:02 +02:00
|
|
|
{{template "repo/release_tag_header" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<ul id="release-list">
|
2020-04-01 00:39:54 +02:00
|
|
|
{{range $idx, $release := .Releases}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<li class="ui grid">
|
2023-05-03 23:58:59 +02:00
|
|
|
<div class="ui four wide column meta">
|
2023-08-26 01:35:10 +02:00
|
|
|
<a class="muted" href="{{if not .Sha1}}#{{else}}{{$.RepoLink}}/src/tag/{{.TagName | PathEscapeSegments}}{{end}}" rel="nofollow">{{svg "octicon-tag" 16 "gt-mr-2"}}{{.TagName}}</a>
|
2022-10-03 14:05:53 +02:00
|
|
|
{{if .Sha1}}
|
2023-08-26 01:35:10 +02:00
|
|
|
<a class="muted gt-mono" href="{{$.RepoLink}}/src/commit/{{.Sha1}}" rel="nofollow">{{svg "octicon-git-commit" 16 "gt-mr-2"}}{{ShortSha .Sha1}}</a>
|
|
|
|
{{template "repo/branch_dropdown" dict "root" $ "release" .}}
|
2021-08-06 03:13:16 +02:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
<div class="ui twelve wide column detail">
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="gt-df gt-ac gt-sb gt-fw gt-mb-3">
|
2023-11-07 11:53:04 +01:00
|
|
|
<h4 class="release-list-title gt-word-break">
|
2022-12-06 14:15:46 +01:00
|
|
|
<a href="{{$.RepoLink}}/releases/tag/{{.TagName | PathEscapeSegments}}">{{.Title}}</a>
|
|
|
|
{{if .IsDraft}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="ui yellow label">{{ctx.Locale.Tr "repo.release.draft"}}</span>
|
2022-12-06 14:15:46 +01:00
|
|
|
{{else if .IsPrerelease}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="ui orange label">{{ctx.Locale.Tr "repo.release.prerelease"}}</span>
|
2022-12-06 14:15:46 +01:00
|
|
|
{{else if not .IsTag}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="ui green label">{{ctx.Locale.Tr "repo.release.stable"}}</span>
|
2022-12-06 14:15:46 +01:00
|
|
|
{{end}}
|
|
|
|
</h4>
|
2023-09-18 06:25:36 +02:00
|
|
|
<div>
|
2023-04-03 23:08:29 +02:00
|
|
|
{{if and $.CanCreateRelease (not .IsTag)}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<a class="muted" data-tooltip-content="{{ctx.Locale.Tr "repo.release.edit"}}" href="{{$.RepoLink}}/releases/edit/{{.TagName | PathEscapeSegments}}" rel="nofollow">
|
2022-12-06 14:15:46 +01:00
|
|
|
{{svg "octicon-pencil"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-27 15:41:33 +02:00
|
|
|
{{if .IsTag}}
|
|
|
|
<p class="text grey">
|
|
|
|
{{if gt .Publisher.ID 0}}
|
|
|
|
<span class="author">
|
2023-09-18 06:25:36 +02:00
|
|
|
{{ctx.AvatarUtils.Avatar .Publisher 20 "gt-mr-2"}}
|
2023-03-27 15:41:33 +02:00
|
|
|
<a href="{{.Publisher.HomeLink}}">{{.Publisher.Name}}</a>
|
|
|
|
</span>
|
|
|
|
<span class="released">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.tagged_this"}}
|
2023-03-27 15:41:33 +02:00
|
|
|
</span>
|
|
|
|
{{if .CreatedUnix}}
|
2023-09-25 14:42:40 +02:00
|
|
|
<span class="time">{{TimeSinceUnix .CreatedUnix ctx.Locale}}</span>
|
2023-03-27 15:41:33 +02:00
|
|
|
{{end}}
|
|
|
|
|
|
|
|
|
{{end}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="ahead"><a href="{{$.RepoLink}}/compare/{{.TagName | PathEscapeSegments}}...{{.TargetBehind | PathEscapeSegments}}">{{ctx.Locale.Tr "repo.release.ahead.commits" .NumCommitsBehind | Str2html}}</a> {{ctx.Locale.Tr "repo.tag.ahead.target" .TargetBehind}}</span>
|
2023-03-27 15:41:33 +02:00
|
|
|
</p>
|
|
|
|
{{else}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<p class="text grey">
|
|
|
|
<span class="author">
|
2019-10-05 13:09:27 +02:00
|
|
|
{{if .OriginalAuthor}}
|
2023-09-18 06:25:36 +02:00
|
|
|
{{svg "octicon-mark-github" 20 "gt-mr-2"}}{{.OriginalAuthor}}
|
2019-10-05 13:09:27 +02:00
|
|
|
{{else if .Publisher}}
|
2023-09-18 06:25:36 +02:00
|
|
|
{{ctx.AvatarUtils.Avatar .Publisher 20 "gt-mr-2"}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<a href="{{.Publisher.HomeLink}}">{{.Publisher.GetDisplayName}}</a>
|
2019-10-05 13:09:27 +02:00
|
|
|
{{else}}
|
|
|
|
Ghost
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</span>
|
2020-11-03 00:10:22 +01:00
|
|
|
<span class="released">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.released_this"}}
|
2020-11-03 00:10:22 +01:00
|
|
|
</span>
|
|
|
|
{{if .CreatedUnix}}
|
2023-09-25 14:42:40 +02:00
|
|
|
<span class="time">{{TimeSinceUnix .CreatedUnix ctx.Locale}}</span>
|
2021-05-06 05:12:50 +02:00
|
|
|
{{end}}
|
|
|
|
{{if not .IsDraft}}
|
2023-09-25 10:56:50 +02:00
|
|
|
| <span class="ahead"><a href="{{$.RepoLink}}/compare/{{.TagName | PathEscapeSegments}}...{{.TargetBehind | PathEscapeSegments}}">{{ctx.Locale.Tr "repo.release.ahead.commits" .NumCommitsBehind | Str2html}}</a> {{ctx.Locale.Tr "repo.release.ahead.target" .TargetBehind}}</span>
|
2020-11-03 00:10:22 +01:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</p>
|
2023-03-27 15:41:33 +02:00
|
|
|
{{end}}
|
2021-05-07 10:43:41 +02:00
|
|
|
<div class="markup desc">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{Str2html .Note}}
|
|
|
|
</div>
|
2023-09-18 06:25:36 +02:00
|
|
|
<div class="divider"></div>
|
|
|
|
<details class="download" {{if eq $idx 0}}open{{end}}>
|
|
|
|
<summary class="gt-my-4">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.release.downloads"}}
|
2021-05-23 02:45:39 +02:00
|
|
|
</summary>
|
|
|
|
<ul class="list">
|
2022-07-31 18:57:02 +02:00
|
|
|
{{if and (not $.DisableDownloadSourceArchives) (not .IsDraft) ($.Permission.CanRead $.UnitTypeCode)}}
|
2021-05-23 02:45:39 +02:00
|
|
|
<li>
|
2023-09-25 10:56:50 +02:00
|
|
|
<a class="archive-link" href="{{$.RepoLink}}/archive/{{.TagName | PathEscapeSegments}}.zip" rel="nofollow"><strong>{{svg "octicon-file-zip" 16 "gt-mr-2"}}{{ctx.Locale.Tr "repo.release.source_code"}} (ZIP)</strong></a>
|
2021-05-23 02:45:39 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2023-09-25 10:56:50 +02:00
|
|
|
<a class="archive-link" href="{{$.RepoLink}}/archive/{{.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow"><strong>{{svg "octicon-file-zip" 16 "gt-mr-2"}}{{ctx.Locale.Tr "repo.release.source_code"}} (TAR.GZ)</strong></a>
|
2021-05-23 02:45:39 +02:00
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{if .Attachments}}
|
|
|
|
{{range .Attachments}}
|
2020-11-03 00:10:22 +01:00
|
|
|
<li>
|
2023-09-18 06:25:36 +02:00
|
|
|
<a target="_blank" rel="nofollow" href="{{.DownloadURL}}">
|
|
|
|
<strong>{{svg "octicon-package" 16 "gt-mr-2"}}{{.Name}}</strong>
|
|
|
|
</a>
|
|
|
|
<div>
|
|
|
|
<span class="text grey">{{.Size | FileSize}}</span>
|
2023-09-25 14:42:40 +02:00
|
|
|
<span data-tooltip-content="{{ctx.Locale.Tr "repo.release.download_count" (ctx.Locale.PrettyNumber .DownloadCount)}}">
|
2021-05-23 02:45:39 +02:00
|
|
|
{{svg "octicon-info"}}
|
2023-04-17 05:37:23 +02:00
|
|
|
</span>
|
2023-09-18 06:25:36 +02:00
|
|
|
</div>
|
2021-05-23 02:45:39 +02:00
|
|
|
</li>
|
2020-11-03 00:10:22 +01:00
|
|
|
{{end}}
|
2021-05-23 02:45:39 +02:00
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</details>
|
2023-09-18 06:25:36 +02:00
|
|
|
<div class="dot"></div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
2023-04-25 18:29:00 +02:00
|
|
|
|
2016-11-10 11:53:29 +01:00
|
|
|
{{template "base/paginate" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2014-04-02 18:43:31 +02:00
|
|
|
</div>
|
2020-11-03 00:10:22 +01:00
|
|
|
|
|
|
|
{{if (and ($.Permission.CanWrite $.UnitTypeCode) .PageIsTagList)}}
|
2023-04-24 13:08:59 +02:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.release.delete_tag"}}
|
2020-11-03 00:10:22 +01:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "repo.release.deletion_tag_desc"}}</p>
|
2020-11-03 00:10:22 +01:00
|
|
|
</div>
|
2023-04-23 11:24:19 +02:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2020-11-03 00:10:22 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|