43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
{% extends "global/layout.html" %}
|
|
{% block title %}{{ _('Roadmap') }}{% endblock %}
|
|
{% block content %}
|
|
|
|
<h2 id="v0.9">0.9</h2>
|
|
<ul>
|
|
<li>{% trans -%}
|
|
Include some seed data in the distribution so a central reseed location isn't required?
|
|
{%- endtrans %}</li>
|
|
<li>{% trans todo=site_url('get-involved/todo') -%}
|
|
Reachability Mapping / handle peers partially reachable / enhanced <a href="{{ todo }}#fullRestrictedRoutes">restricted routes</a>
|
|
{%- endtrans %}</li>
|
|
<li>{% trans %}Improve help pages and website{% endtrans %}</li>
|
|
<li>{% trans %}More translations{% endtrans %}</li>
|
|
<li>{% trans %}SSU disconnect message{% endtrans %}</li>
|
|
<li>{% trans %}Iterative floodfill lookups{% endtrans %}</li>
|
|
</ul>
|
|
|
|
<h2 id="v1.0">1.0</h2>
|
|
<ul>
|
|
<li>{% trans %}Full review of anonymity issues and other vulnerabilities{% endtrans %}</li>
|
|
<li>{% trans -%}
|
|
Reduce memory usage, remove debugging overhead, make it run better on slow and embedded machines
|
|
{%- endtrans %}</li>
|
|
<li>{{ _('Docs') }}</li>
|
|
</ul>
|
|
|
|
<h2 id="v2.0">2.0</h2>
|
|
<ul>
|
|
<li>{% trans %}Full restricted routes{% endtrans %}</li>
|
|
</ul>
|
|
|
|
<h2 id="v3.0">3.0</h2>
|
|
<ul>
|
|
<li>{% trans %}Tunnel mixing and padding{% endtrans %}</li>
|
|
<li>{% trans %}User defined message delays{% endtrans %}</li>
|
|
</ul>
|
|
|
|
<p>{% trans todo=site_url('get-involved/todo') -%}
|
|
Please see the <a href="{{ todo }}">TODO</a> list for more detailed info about some of these tasks.
|
|
{%- endtrans %}</p>
|
|
{% endblock %}
|