mirror of
https://github.com/TeamNewPipe/website
synced 2025-10-06 00:22:38 +02:00
25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
{{
|
|
# 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>
|
|
{%- endcapture -%}
|
|
|
|
{%- capture releasePostUrl -%}
|
|
{{ site.baseurl }}/blog/pinned/announcement/newpipe-0.28.0-released/
|
|
{%- endcapture -%}
|