Files
I2P_Website/i2p2www/pages/site/browser/download.html
2020-04-07 13:56:27 +00:00

130 lines
5.5 KiB
HTML

{% extends "global/layout.html" %}
{%- from "downloads/macros" import package_outer with context -%}
{% block title %}{% trans bname=browser_name() %}{{ bname }} Downloads {% endtrans %}{% endblock %}
{% block content_nav %}
<ol>
<li style="list-style: none; display: inline">
<h4>{{ _('Navigation') }}</h4>
</li>
<li style="list-style: none;">{% trans browser_main=get_url('browser_frontpage') %}<a href="{{ browser_main }}">Back to browser front page</a>{% endtrans %}</li>
<li style="list-style: none; display: inline">
<h4>{{ _('Platforms') }}</h4>
</li>
<li style="list-style: none;"><a href="#windows">{% trans %}Windows{% endtrans %}</a></li>
<li style="list-style: none;"><a href="#macosx">{% trans %}Mac OS X{% endtrans %}</a></li>
<li style="list-style: none;"><a href="#linux">{% trans %}Linux{% endtrans %}</a></li>
</ol>
{% endblock %}
{% block content %}
<section id="download">
<h1>{% trans bname=browser_name() %}{{ bname }} Downloads {% endtrans %}</h1>
<p>{% trans bname=browser_name(), bsuff=browser_postname(), bvers=browser_version() -%}
<strong> The {{ bname }} {{ bsuff }} is on hiatus for the next six months while the resources
required to maintain it are re-evaluated.</strong> Downloads are still available for
archival and testing purposes.
{%- endtrans %}</p>
<p>{% trans bname=browser_name(), bsuff=browser_postname(), bvers=browser_version() -%}
The {{ bname }} {{ bsuff }} is a fork of TorBrowser/Mozilla Firefox ESR
that comes preconfigured to use I2P securely.
{%- endtrans %}</p>
<p>{% trans -%}
Builds for Linux, Windows and Mac OS X are available. We provide
binaries for 64bit systems.
{%- endtrans %}</p>
{% trans bname=browser_name(), bsuff=browser_postname(), bvers=browser_version() %}
Status: {{ bvers }} {% endtrans %}
<ul>
<li><a href="https://github.com/i2p/i2p-browser">Firefox Branch</a></li>
<li><a href="https://github.com/mikalv/i2p-browser-build-scripts">Build Scripts</a></li>
<li><a href="https://github.com/i2p/i2pbutton">Browser Extension</a></li>
</ul>
{%- set version = browser_version() -%}
{%- set name = 'Windows' -%}
{%- set icon = 'images/download/windows.png' -%}
{%- set filename = 'i2pbrowser-install-win64-2.0-{{ version }}_en-US.exe' -%}
{%- set filename = browser_filename('win64','2.0',version,'en-US','.exe') -%}
{%- set hash = '71f2baad93c1309ee744951e5296b2eb17f0fcc92d45a3149cae5393527ebea3' -%}
{% call package_outer('windows', name, icon) %}
<div class="file">
<h3 id="windows">Windows</h3>
<a class="default"
href="https://download.i2p2.de/experimental/i2pbrowser-{{ version }}/windows64/i2pbrowser-install-win64-2.0-{{ version }}_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-{{ version }}/windows64/">https://download.i2p2.de/experimental/i2pbrowser-{{ version }}/windows64/</a>
{% endcall %}
{%- set version = browser_version() -%}
{%- set name = 'Mac OS X' -%}
{%- set icon = 'images/download/mac-osx.png' -%}
{%- set filename = browser_filename('osx64','2.0',version,'en-US','.dmg') -%}
{%- set hash = '99b2a9b917fb8f66e192b4950116f63f6b386fe76f68d78b014ade2f05d18e7f' -%}
{% call package_outer('mac-osx', name, icon) %}
<div class="file">
<h3 id="macosx">Mac OS X</h3>
<a class="default"
href="https://download.i2p2.de/experimental/i2pbrowser-{{ version }}/macosx64/I2PBrowser-2.0-{{ version }}-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-{{ version }}/macosx64/">https://download.i2p2.de/experimental/i2pbrowser-{{ version }}/macosx64/</a>
{% endcall %}
{%- set version = browser_version() -%}
{%- set name = 'Linux' -%}
{%- set icon = 'images/download/freebsd-tux.png' -%}
{%- set filename = browser_filename('linux64','2.0',version,'en-US','.tar.gz') -%}
{%- set hash = '67664d298216450921c5c9638d2c6b9ce0c69aaeb2d177be23440d33e98fdbcf' -%}
{% call package_outer('freebsd-tux', name, icon) %}
<div class="file">
<h3 id="linux">Linux</h3>
<a class="default"
href="https://download.i2p2.de/experimental/i2pbrowser-{{ version }}/linux64/i2p-browser-linux64-2.0-{{ version }}_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-{{ version }}/linux64">https://download.i2p2.de/experimental/i2pbrowser-{{ version }}/linux64</a>
{% endcall %}
</section>
{% endblock %}