1
0
mirror of https://github.com/TeamNewPipe/website synced 2025-10-06 00:22:38 +02:00
Files
website/_includes/release_data.html

25 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2020-08-13 01:21:58 +02:00
{{
# We cannot use a data file for two reasons:
# 1. We'd need to escape every single '>' in the changelog
# 2. We cannot use Liquid tags to generate the post URL and therefore would be required to put in an absolute URL
#
# releaseChangelog should contain the release highlights of the latest NewPipe release
# releasePostUrl should contain the URL to the corresponding blog post. If there is no blog post for this release,
# leave the inner of the capture group empty. When accessing this field, ensure to check if
# releasePostUrl is empty: releasePostUrl != empty
}}
{%- capture releaseChangelog -%}
<ul>
<li>Support for Android Auto</li>
<li>Channel groups as main page</li>
<li>[YouTube] All trending pages</li>
<li>[SoundCloud] New "Likes" tab</li>
<li>Support for per-app language setting on Android 13+</li>
<li>Tons of bug fixes and improvements</li>
</ul>
2021-07-22 18:20:07 +02:00
{%- endcapture -%}
2020-08-13 01:21:58 +02:00
{%- capture releasePostUrl -%}
{{ site.baseurl }}/blog/pinned/announcement/newpipe-0.28.0-released/
2020-08-13 01:21:58 +02:00
{%- endcapture -%}