Adding I2P Browser to labs

This commit is contained in:
meeh
2019-03-05 22:16:50 +00:00
parent 63376dfe87
commit 0f0640c77d

View File

@ -59,4 +59,88 @@ The files are signed by {{ signer }},
<a href="{{ signingkey }}">whose key is here</a>.
{%- endtrans %}
-->
<div class = "labproject" >
<h5>{{ _('I2P Browser') }}</h5>
<p>
{% trans %}
This is an I2P Browser which is preconfigured to work with I2P and which has privacy focused patches and configuration. Currently we only provide binaries for 64bit systems.
{%- endtrans %}
</p>
{% trans %}
Status: Proof-Of-Concept
{%- endtrans %}
{%- set name = 'Windows' -%}
{%- set icon = 'images/download/windows.png' -%}
{%- set filename = 'i2pbrowser-install-win64-8.5a7_en-US.exe' -%}
{%- set hash = '672d099d6840b9eb6f9fdbb481a495ed3d936a6a658e18e8f5b4111bd1803f37' -%}
{% call package_outer('windows', name, icon) %}
<div class = "file">
<a class = "default" href="https://download.i2p2.de/experimental/i2pbrowser/windows64/i2pbrowser-install-win64-8.5a7_en-US.exe">
<span class = "name">{{ filename }}</span>
</a>
</div>
<div class = "meta">
<div class = "hash">
<code>{{ hash }}</code>
</div>
</div>
<p>{% trans -%}
The default is to download the english version, however it's also built for some other languages,
please check out the link below
if you want to see if we have the browser in your language.
{%- endtrans %}</p>
<a href="https://download.i2p2.de/experimental/i2pbrowser/windows64/">https://download.i2p2.de/experimental/i2pbrowser/windows64/</a>
{% endcall %}
{%- set name = 'Mac OS X' -%}
{%- set icon = 'images/download/mac-osx.png' -%}
{%- set filename = 'I2PBrowser-8.5a7-osx64_en-US.dmg' -%}
{%- set hash = '3703e5c4f6ec9abd804af27daee3613d316a86031ad4685d59b1df14b5454133' -%}
{% call package_outer('mac-osx', name, icon) %}
<div class = "file">
<a class = "default" href="https://download.i2p2.de/experimental/i2pbrowser/macosx/I2PBrowser-8.5a7-osx64_en-US.dmg">
<span class = "name">{{ filename }}</span>
</a>
</div>
<div class = "meta">
<div class = "hash">
<code>{{ hash }}</code>
</div>
</div>
<p>{% trans -%}
The default is to download the english version, however it's also built for some other languages,
please check out the link below
if you want to see if we have the browser in your language.
{%- endtrans %}</p>
<a href="https://download.i2p2.de/experimental/i2pbrowser/macosx/">https://download.i2p2.de/experimental/i2pbrowser/macosx/</a>
{% endcall %}
{%- set name = 'Linux' -%}
{%- set icon = 'images/download/freebsd-tux.png' -%}
{%- set filename = 'i2p-browser-linux64-8.5a7_en-US.tar.xz' -%}
{%- set hash = '1aa6ea8e32b27bae1f765f69fe79387ab41ebe7177a8c7ffa6306e3f1bc23ea7' -%}
{% call package_outer('freebsd-tux', name, icon) %}
<div class = "file">
<a class = "default" href="https://download.i2p2.de/experimental/i2pbrowser/linux64/i2p-browser-linux64-8.5a7_en-US.tar.xz">
<span class = "name">{{ filename }}</span>
</a>
</div>
<div class = "meta">
<div class = "hash">
<code>{{ hash }}</code>
</div>
</div>
<p>{% trans -%}
The default is to download the english version, however it's also built for some other languages,
please check out the link below
if you want to see if we have the browser in your language.
{%- endtrans %}</p>
<a href="https://download.i2p2.de/experimental/i2pbrowser/linux64">https://download.i2p2.de/experimental/i2pbrowser/linux64</a>
{% endcall %}
</div>
{% endblock %}