2020-08-23 17:03:18 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2023-03-27 18:05:51 +02:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2020-08-23 17:03:18 +02:00
|
|
|
<title>{{.Subject}}</title>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
blockquote { padding-left: 1em; margin: 1em 0; border-left: 1px solid grey; color: #777}
|
|
|
|
.footer { font-size:small; color:#666;}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
2024-02-25 11:45:56 +01:00
|
|
|
{{$release_url := HTMLFormat "<a href='%s'>%s</a>" .Release.HTMLURL .Release.TagName}}
|
|
|
|
{{$repo_url := HTMLFormat "<a href='%s'>%s</a>" .Release.Repo.HTMLURL .Release.Repo.FullName}}
|
2020-08-23 17:03:18 +02:00
|
|
|
<body>
|
2021-03-12 22:47:52 +01:00
|
|
|
<p>
|
2024-02-25 11:45:56 +01:00
|
|
|
{{.locale.Tr "mail.release.new.text" .Release.Publisher.Name $release_url $repo_url}}
|
2021-03-12 22:47:52 +01:00
|
|
|
</p>
|
2022-06-27 22:58:46 +02:00
|
|
|
<h4>{{.locale.Tr "mail.release.title" .Release.Title}}</h4>
|
2020-08-23 17:03:18 +02:00
|
|
|
<p>
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "mail.release.note"}}<br>
|
2020-08-23 17:03:18 +02:00
|
|
|
{{- if eq .Release.RenderedNote ""}}
|
|
|
|
{{else}}
|
2024-03-01 08:11:51 +01:00
|
|
|
{{.Release.RenderedNote}}
|
2020-08-23 17:03:18 +02:00
|
|
|
{{end -}}
|
|
|
|
</p>
|
|
|
|
<br><br>
|
|
|
|
<p>
|
2021-04-11 05:46:37 +02:00
|
|
|
---
|
2020-08-23 17:03:18 +02:00
|
|
|
<br>
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "mail.release.downloads"}}
|
2020-08-23 17:03:18 +02:00
|
|
|
<ul>
|
2022-07-31 18:57:02 +02:00
|
|
|
{{if not .DisableDownloadSourceArchives}}
|
2020-08-23 17:03:18 +02:00
|
|
|
<li>
|
2022-06-27 22:58:46 +02:00
|
|
|
<a href="{{.Release.Repo.Link}}/archive/{{.Release.TagName | PathEscapeSegments}}.zip" rel="nofollow"><strong>{{.locale.Tr "mail.release.download.zip"}}</strong></a>
|
2020-08-23 17:03:18 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2022-06-27 22:58:46 +02:00
|
|
|
<a href="{{.Release.Repo.Link}}/archive/{{.Release.TagName | PathEscapeSegments}}.tar.gz" rel="nofollow"><strong>{{.locale.Tr "mail.release.download.targz"}}</strong></a>
|
2020-08-23 17:03:18 +02:00
|
|
|
</li>
|
2022-07-31 18:57:02 +02:00
|
|
|
{{end}}
|
2020-08-23 17:03:18 +02:00
|
|
|
{{if .Release.Attachments}}
|
|
|
|
{{range .Release.Attachments}}
|
|
|
|
<li>
|
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
|
|
|
<strong>{{.Name}} ({{.Size | FileSize}})</strong>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
<div class="footer">
|
|
|
|
<p>
|
|
|
|
---
|
|
|
|
<br>
|
2022-06-27 22:58:46 +02:00
|
|
|
<a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
|
2020-08-23 17:03:18 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|