diff options
author | Martin Schanzenbach <schanzen@gnunet.org> | 2023-01-07 17:09:30 +0900 |
---|---|---|
committer | Martin Schanzenbach <schanzen@gnunet.org> | 2023-01-07 17:09:30 +0900 |
commit | efc877495f5611a4ae5a1ab8d599bb3098d5931c (patch) | |
tree | 2e81409726c4132edd2a03c627578eaf98dcc64c | |
parent | 532f7c86a4313cc8af1ee51fb7302652830d18bf (diff) |
0.19.2 release
-rw-r--r-- | locale/messages.pot | 6 | ||||
-rw-r--r-- | template/news/2023-01-0.19.2.html.j2 | 23 | ||||
-rw-r--r-- | template/news/index.html.j2 | 4 | ||||
-rw-r--r-- | www.yml | 5 |
4 files changed, 32 insertions, 6 deletions
diff --git a/locale/messages.pot b/locale/messages.pot index 4da914b2..a92c90b0 100644 --- a/locale/messages.pot +++ b/locale/messages.pot @@ -1,14 +1,14 @@ # Translations template for PROJECT. -# Copyright (C) 2022 ORGANIZATION +# Copyright (C) 2023 ORGANIZATION # This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2022. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2023. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-12-09 10:52+0900\n" +"POT-Creation-Date: 2023-01-07 17:06+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/template/news/2023-01-0.19.2.html.j2 b/template/news/2023-01-0.19.2.html.j2 new file mode 100644 index 00000000..7aea9f3a --- /dev/null +++ b/template/news/2023-01-0.19.2.html.j2 @@ -0,0 +1,23 @@ +{% extends "common/news.j2" %} +{% block body_content %} +<h1>GNUnet 0.19.2</h1> +<p> +This is a bugfix release for gnunet 0.19.1. +</p> +<h4>Download links</h4> +<ul> + <li><a href="http://ftpmirror.gnu.org/gnunet/gnunet-0.19.2.tar.gz">gnunet-0.19.2.tar.gz</a> (<a href="http://ftpmirror.gnu.org/gnunet/gnunet-0.19.2.tar.gz.sig">signature</a>)</li> +</ul> +<p> +The GPG key used to sign is: <a href="https://gnunet.org/~schanzen/3D11063C10F98D14BD24D1470B0998EF86F59B6A">3D11063C10F98D14BD24D1470B0998EF86F59B6A</a> +</p> +<p> +Note that due to mirror synchronization, not all links may be functional +early after the release. For direct access try +<a href="http://ftp.gnu.org/gnu/gnunet/">http://ftp.gnu.org/gnu/gnunet/</a> +</p> +<p> +A detailed list of changes can be found in the <a href="https://git.gnunet.org/gnunet.git/tree/ChangeLog">ChangeLog</a> and +the <a href="https://bugs.gnunet.org/changelog_page.php?project_id=13">bug tracker</a>. +</p> +{% endblock body_content %} diff --git a/template/news/index.html.j2 b/template/news/index.html.j2 index c359d837..e3c3b3f1 100644 --- a/template/news/index.html.j2 +++ b/template/news/index.html.j2 @@ -19,7 +19,7 @@ </div> </div> <div class="row"> - {% for year, yitem in newsdata|selectattr('date.year', 'gt', 2021)|groupby('date.year')|reverse %} + {% for year, yitem in newsdata|selectattr('date.year', 'gt', 2022)|groupby('date.year')|reverse %} <b>{{ year }}</b> <ul class="timeline"> {% for item in yitem %} @@ -47,7 +47,7 @@ {% endtrans %} </h2> <ul> - {% for year, yitem in newsdata|selectattr('date.year', 'lt', 2022)|groupby('date.year')|reverse %} + {% for year, yitem in newsdata|selectattr('date.year', 'lt', 2023)|groupby('date.year')|reverse %} <li><a href="{{ 'oldnews-' + year|string + '.html' }}">{{ year }} ({{yitem|length}})</a></li> {% endfor %} </ul> @@ -29,7 +29,10 @@ meetingnotes: 2019: 2019-12-27 2020: 2020-12-30 newsposts: - - page : 2022-12-0.19.1.html + - page: 2023-01-0.19.2.html + date: 2023-01-07 + title: GNUnet 0.19.2 + - page: 2022-12-0.19.1.html date: 2022-12-29 title: GNUnet 0.19.1 - page: 2022-12-0.19.0.html |