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