{% extends "global/layout.html" %} {% block title %}{% trans bname=browser_name(), bsuff=browser_postname()%}{{ bname }} {{ bsuff }} {% endtrans %}{% endblock %} {% block content_nav %}
  1. {{ _('Navigation') }}

  2. {% trans intro=get_url('browser_intro') %}About{% endtrans %}
  3. {% trans download=get_url('browser_download') %}Download{% endtrans %}
  4. {% trans releasenotes=get_url('browser_releasenotes') %}Release Notes{% endtrans %}
  5. {% trans roadmap=get_url('browser_roadmap') %}Road Map{% endtrans %}
  6. {% trans develop=get_url('browser_develop') %}Get Involved{% endtrans %}
  7. {% trans donate=site_url('get-involved/donate') %}Donate{% endtrans %}
{% endblock %} {% macro browser_download(name, icon, dlink) -%}
{{ caller() }} {% trans download=get_url('browser_download'), bname=browser_name() %}Click here to download {{ bname }} in another language or platform{% endtrans %}
{%- endmacro %} {% block content %}

{% trans bname=browser_name(), bsuff=browser_postname()%}{{ bname }} {{ bsuff }}{% endtrans %}

{% trans bname=browser_name() %} {{ bname }} {% endtrans %}

{% trans bname=browser_name(), bsuff=browser_postname() %}{{ bname }} {{ bsuff }} is on hiatus for the next six months. I2P Browser was originally a 6 month project, which we have brought as far as we can without reevaluating the resources required to take it further. The project roadmap goals for the next 6 months will focus on modernizing the applications that were highlighted in the I2P Browser once the router was bundled. Browser development will potentially resume mid year. This page will be left up for informational purposes.{% endtrans %}

{% trans %}Thank you to everyone who tested the Beta releases - it is obvious that there is a need for this product. We encourage everyone to continue with feedback for the I2P Browser.{% endtrans %}

{% trans %}You may want to consider one of the following alternatives:{% endtrans %}

{% trans bname=browser_name(), bsuff=browser_postname() %}Old versions of {{ bname }} {{ bsuff }} are still available from the link below. They should be regarded as unsafe to use, and are only here for historical and experimental purposes. {% endtrans %}

{%- if detected_os == 'windows' -%} {%- set version = browser_version() -%} {%- set bname = browser_name()-%} {%- set name = 'Windows' -%} {%- set icon = 'images/browser/garlic.svg' -%} {%- set link = 'https://download.i2p2.de/experimental/i2pbrowser-'+version+'/windows64/i2pbrowser-install-win64-2.0-'+''+version+''+'_en-US.exe' -%} {% call browser_download(name, icon, link) %} Get {{ bname }} for Windows {% endcall %} {%- elif detected_os == 'macosx' -%} {%- set version = browser_version() -%} {%- set bname = browser_name()-%} {%- set name = 'Mac OS X' -%} {%- set icon = 'images/browser/garlic.svg' -%} {%- set link = 'https://download.i2p2.de/experimental/i2pbrowser-'+version+'/macosx64/I2PBrowser-2.0-'+version+'-osx64_en-US.dmg' -%} {% call browser_download(name, icon, link) %} Get {{ bname }} for Mac OS X {% endcall %} {%- elif detected_os == 'linux' -%} {%- set version = browser_version() -%} {%- set bname = browser_name()-%} {%- set name = 'Linux' -%} {%- set icon = 'images/browser/garlic.svg' -%} {%- set link = 'https://download.i2p2.de/experimental/i2pbrowser-'+version+'/linux64/i2p-browser-linux64-2.0-'+version+'_en-US.tar.xz' -%} {% call browser_download(name, icon, link) %} Get {{ bname }} for Linux x64 {% endcall %} {%- endif -%}
{% endblock %}