diff --git a/i2p2www/browser.py b/i2p2www/browser.py index e26dfeb1..37596482 100644 --- a/i2p2www/browser.py +++ b/i2p2www/browser.py @@ -21,6 +21,9 @@ def browser_download(): def browser_releasenotes(): return render_template('site/browser/releasenotes.html') +def browser_roadmap(): + return render_template('site/browser/roadmap.html') + #def browser_known_issues(): # return render_template('site/browser/known_issues.html') diff --git a/i2p2www/pages/site/browser/_front.html b/i2p2www/pages/site/browser/_front.html index 43695b31..8d8c5825 100644 --- a/i2p2www/pages/site/browser/_front.html +++ b/i2p2www/pages/site/browser/_front.html @@ -10,6 +10,7 @@
  • {% trans releasenotes=get_url('browser_releasenotes') %}Release Notes{% endtrans %}
  • +
  • {% trans releasenotes=get_url('browser_roadmap') %}Road Map{% endtrans %}
  • {% trans develop=get_url('browser_develop') %}Get Involved{% endtrans %}
  • {% trans donate=site_url('get-involved/donate') %}Donate{% endtrans %}
  • diff --git a/i2p2www/pages/site/browser/develop.html b/i2p2www/pages/site/browser/develop.html index 0eac3d2a..ccbfff9c 100644 --- a/i2p2www/pages/site/browser/develop.html +++ b/i2p2www/pages/site/browser/develop.html @@ -14,20 +14,58 @@

    {% trans %}Get Involved{% endtrans %}

    +{% trans %} +

    +Like other browsers, I2P Browser is actually built from a group of tools that +work together to start and stop applications, configure settings, and secure the +user against attacks. +

    +{% endtrans %} + +

    {% trans %}Source Code{% endtrans %}

    + + +

    {% trans %}Essential Documentation{% endtrans %}

    + + +

    {% trans %}Contact Us{% endtrans %}

    + + {% endblock %} diff --git a/i2p2www/pages/site/browser/intro.html b/i2p2www/pages/site/browser/intro.html index eb570711..34f2d12e 100644 --- a/i2p2www/pages/site/browser/intro.html +++ b/i2p2www/pages/site/browser/intro.html @@ -12,32 +12,32 @@ {% block content %} -

    About

    +

    {% trans %}About{% endtrans %}

    -I2P Browser is for anyone who wants to protect their privacy either for -preference or safety. It enables netizens to defend themselves from tracking, -surveillance, spyware and in some cases it will help to circumvent censorship. +{% trans %}I2P Browser is for anyone who wants to protect their privacy either for +preference or safety. It enables people to defend themselves from tracking, +surveillance, spyware and in some cases it will help to circumvent censorship.{% endtrans %}

    -Like other browsers, I2P Browser enables you to browse and search the internet. +{% trans %}Like other browsers, I2P Browser enables you to browse and search the internet. I2P Browser however, is very focused on the privacy rights of the user and does -not monetize data in trade of your privacy. +not monetize data in trade of your privacy.{% endtrans %}

    -Most websites now use numerous third-party services, including social networking +{% trans %}Most websites now use numerous third-party services, including social networking “Like” buttons, analytics trackers, and advertising beacons, all of which can link your activity across different sites. And because of that, the I2P Browser is designed to prevent websites from “fingerprinting” or identifying you based on your browser configuration. By default, I2P Browser does not keep any browsing history. Cookies are only valid for a single session (until I2P Browser -is exited or a New Identity is requested). +is exited or a New Identity is requested).{% endtrans %}

    -I2P Browser blocks plugins like Flash, RealPlayer, Quicktime and others that can +{% trans %}I2P Browser blocks plugins like Flash, RealPlayer, Quicktime and others that can be manipulated into revealing your IP address. I2P Browser also comes with NoScript and other patches to protect your privacy and security. We do not recommend installing additional plugins or add-ons to I2P Browser since they may -bypass or compromise your privacy. +bypass or compromise your privacy.{% endtrans %}

    {% endblock %} diff --git a/i2p2www/pages/site/browser/releasenotes.html b/i2p2www/pages/site/browser/releasenotes.html index 8e655da8..ae6cd0b9 100644 --- a/i2p2www/pages/site/browser/releasenotes.html +++ b/i2p2www/pages/site/browser/releasenotes.html @@ -15,15 +15,8 @@
  • {% trans %}Version 2.0 Beta 2{% endtrans %}
  • {% trans %}Version 2.0 Beta 1{% endtrans %}
  • -
      -
    1. {% trans %}Roadmap{% endtrans %}
    2. -
    3. {% trans %}Version 2.0 Beta 8{% endtrans %}
    4. -
    5. {% trans %}Version 3.0 Beta 9{% endtrans %}
    6. -
    7. {% trans %}Version 3.0 Beta 10{% endtrans %}
    8. -
    {% endblock %} - {% block content %}

    {% trans %}Release Notes{% endtrans %}

    @@ -52,7 +45,6 @@
  • Use better ports for router configuration
  • -

    {% trans %}2.0 Beta 5 (Sep 12 2019){% endtrans %} @@ -132,47 +124,4 @@

    Lost in history, was labeled "Abscond Browser" at the time.

    -

    {% trans %}Roadmap{% endtrans %}

    - -

    - - {% trans %}2.0 Beta 8 (Nov 2019){% endtrans %} - -

    - -
      -
    1. Design for Dynamic Themes/Contextual Identities
    2. -
    3. Smart Landing Page
    4. -
    5. Investigate adding a "new tab" application list
    6. -
    7. HTTP Proxy Readiness indicator
    8. -
    9. Application Dialog Boxes with Description of Applications
    10. -
    11. Update/explain long-term product goals on web site
    12. -
    - -

    - - {% trans %}3.0 Beta 9 (Dec 2019){% endtrans %} - -

    - -
      -
    1. Release using ESR 68, deprecate ESR 60
    2. -
    3. Move JSON-RPC and I2PControl to web extension, simplify I2Pbutton
    4. -
    5. Protocol Handlers for Router Console and Mailto
    6. -
    7. Dynamic Themes/Contextual Identities
    8. -
    9. Donation Call-to-Action
    10. -
    11. Smart Landing Page improvements
    12. -
    - -

    - - {% trans %}3.0 Beta 10 (Jan 2019){% endtrans %} - -

    - -
      -
    1. Research I2P Plugins Support
    2. -
    3. Research Peer-to-Peer messaging support compatible with BiglyBT
    4. -
    - {% endblock %} diff --git a/i2p2www/pages/site/browser/roadmap.html b/i2p2www/pages/site/browser/roadmap.html new file mode 100644 index 00000000..323057c3 --- /dev/null +++ b/i2p2www/pages/site/browser/roadmap.html @@ -0,0 +1,62 @@ +{% extends "global/layout.html" %} +{% block title %}{{ _('The I2P Browser - Release Notes') }}{% endblock %} +{% block content_nav %} +
      +
    1. +

      {{ _('Navigation') }}

      +
    2. +
    3. {% trans browser_main=get_url('browser_frontpage') %}Back to browser front page{% endtrans %}
    4. +
    5. {% trans %}Roadmap{% endtrans %}
    6. +
    7. {% trans %}Version 2.0 Beta 8{% endtrans %}
    8. +
    9. {% trans %}Version 3.0 Beta 9{% endtrans %}
    10. +
    11. {% trans %}Version 3.0 Beta 10{% endtrans %}
    12. +
    +{% endblock %} + + +{% block content %} + +

    {% trans %}Roadmap{% endtrans %}

    + +

    + + {% trans %}2.0 Beta 8 (Nov 2019){% endtrans %} + +

    + +
      +
    1. Design for Dynamic Themes/Contextual Identities
    2. +
    3. Smart Landing Page
    4. +
    5. Investigate adding a "new tab" application list
    6. +
    7. HTTP Proxy Readiness indicator
    8. +
    9. Application Dialog Boxes with Description of Applications
    10. +
    11. Update/explain long-term product goals on web site
    12. +
    + +

    + + {% trans %}3.0 Beta 9 (Dec 2019){% endtrans %} + +

    + +
      +
    1. Release using ESR 68, deprecate ESR 60
    2. +
    3. Move JSON-RPC and I2PControl to web extension, simplify I2Pbutton
    4. +
    5. Protocol Handlers for Router Console and Mailto
    6. +
    7. Dynamic Themes/Contextual Identities
    8. +
    9. Donation Call-to-Action
    10. +
    11. Smart Landing Page improvements
    12. +
    + +

    + + {% trans %}3.0 Beta 10 (Jan 2019){% endtrans %} + +

    + +
      +
    1. Research I2P Plugins Support
    2. +
    3. Research Peer-to-Peer messaging support compatible with BiglyBT
    4. +
    + +{% endblock %} diff --git a/i2p2www/urls.py b/i2p2www/urls.py index 737979d4..c9a962f3 100644 --- a/i2p2www/urls.py +++ b/i2p2www/urls.py @@ -82,6 +82,7 @@ url('//browser/faq', 'browser.browser_faq') url('//browser/known_issues', 'browser.browser_known_issues') url('//browser/troubleshooting', 'browser.browser_troubleshooting') url('//browser/releasenotes', 'browser.browser_releasenotes') +url('//browser/roadmap', 'browser.browser_roadmap') url('//browser/updating', 'browser.browser_updating') url('//browser/download', 'browser.browser_download') url('//browser/donate', 'browser.browser_donate')