From c3e3e72575295d9a280ad10b5bf8aa0c734fa8b7 Mon Sep 17 00:00:00 2001 From: idk Date: Sun, 31 Jul 2022 16:36:24 -0400 Subject: [PATCH] update index.html --- .nojekyll | 0 i2pversion | 6 +- index.html | 717 +++++++++++++++++++++++++++++++ license/ABOUT-Jetty.html | 20 + license/I2P.txt | 8 +- license/LICENSE-ECLIPSE-1.0.html | 319 ++++++++++++++ license/NOTICE-Jetty.html | 111 +++++ src/app-profile/user.js | 224 ---------- src/app-profile/version.txt | 2 +- src/nsis/i2pbrowser-jpackage.nsi | 2 +- src/nsis/i2pbrowser-version.nsi | 2 +- src/profile/user.js | 418 +++++++++--------- src/profile/version.txt | 2 +- 13 files changed, 1377 insertions(+), 454 deletions(-) create mode 100644 .nojekyll create mode 100644 index.html create mode 100644 license/ABOUT-Jetty.html create mode 100644 license/LICENSE-ECLIPSE-1.0.html create mode 100644 license/NOTICE-Jetty.html delete mode 100644 src/app-profile/user.js diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/i2pversion b/i2pversion index 8d3fdb9..ad66ff2 100644 --- a/i2pversion +++ b/i2pversion @@ -7,11 +7,11 @@ export JNA_VERSION=5.11.0 # the tip of the master branch. VERSIONMAJOR=1 VERSIONMINOR=8 -VERSIONBUILD=0 +VERSIONBUILD=1 I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD" export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD" -VERSION=i2p-1.8.0 -export VERSION=i2p-1.8.0 +VERSION=i2p-1.8.1 +export VERSION=i2p-1.8.1 #Uncomment this to build from the tip of the master. #I2P_VERSION=1.8.0 diff --git a/index.html b/index.html new file mode 100644 index 0000000..c22bc6a --- /dev/null +++ b/index.html @@ -0,0 +1,717 @@ + + + + I2P Browsing Pro... + + + + + + + + + +

+ I2P Browsing Profile for Firefox +

+

+ Features: +

+ +

+ Build Dependencies: +

+

+ To build this, you will need the following software packages (all available in Debian) : +

+ +

+ In addition, you will need the NSIS plugin “ShellExecAsUser” which you can get from the + + NSIS Wiki Page + + . In order to install + the plugin on Debian, Ubuntu, or using + + WSL + + , you can download the: + + 7zip release + + and copy the content of + + Plugins + + to + + /usr/share/nsis/Plugins + + . +

+
cp -rv Plugins/* /usr/share/nsis/Plugins/
+
+

+ To build a Debian package, you’ll also need +

+ +

+ Preparation +

+

+ Before you build, run the targets +

+
    make clean-extensions
+    make extensions
+
+

+ to update the extensions to point to their latest versions. +

+

+ Windows Build +

+

+ After installing the dependencies and completing the preparations, + just run + + make + + . This will produce three files: +

+

+ profile.tgz - the firefox profile, plus a shell script which will + launch it if Firefox is found in the $PATH on Unix-Like operating + systems. + app-profile.tgz - the Firefox profile plus a launcher shell script, + which will launch a + + modified + + Firefox without a URL bar as a router + console wrapper. + install.exe - the windows installer, which sets up shortcuts to + launch Firefox on Windows. +

+

+ When generating a Windows build it’s important to make sure that the + licenses for all the bundled softare are included. This should happen + automatically. When bundling software, describe the terms and where + they are applied in the + + LICENSE.index + + , then add the full license + to the + + licenses + + directory. Then, add the full license to the + + cat + + command in the + + build/licenses + + make target. The build/licenses + target is run automatically during the build process. +

+

+ Unix Support +

+

+ It is possible to use these profiles on Linux and possibly other + Unixes, if Firefox is already installed on the system. It can be + installed system-wide using the + + make install + + target. Running + + make install + + requires root, and requires + + make + + to have been run + first. To install on Unix, system-wide, run: +

+
    make
+    sudo make install
+
+

+ To run without installing them system wide, unpack the + + profile*.tgz + + to a location of your choice and run the + + i2pbrowser.sh + + script. This + will start a Firefox profile configured to use I2P. +

+
    tar xvf profile-0.3.tgz
+    cd profile
+    ./i2pbrowser.sh
+
+

+ If you want to run the app-like i2pconfig browser, then follow the + same steps with app-profile*.tgz. +

+
    tar xvf app-profile-0.3.tgz
+    cd app-profile
+    ./i2pconfig.sh
+
+

+ To generate a + + deb + + package, install the package + + checkinstall + + and run + the + + make checkinstall + + target after building with + + make + + . +

+
    make
+    make checkinstall
+    sudo apt install ./i2p-firefox*.deb
+
+

+ If you want to set up i2pconfig to run when you start the service + with + + sudo service i2p start + + then you can run the script: +

+
    /usr/local/bin/i2p-config-service-setup
+
+

+ Including a jpackaged I2P Router +

+

+ In order to include a jpackaged(dependency-free) I2P router in the Profile + Bundle you will need to build the jpackaged I2P router as an “App Image” on + a Windows system and place it into a directory called + + I2P + + in your + + i2p.firefox + + checkout. +

+

+ Assuming a working java and jpackage environment on your Windows system, the + following command should generate a suitable “App Image” in a directory + called “I2P.” +

+
    export I2P_VERSION=0.9.49
+    cp -R ../i2p.i2p/pkg-temp/lib build/lib
+    jpackage --type app-image --name I2P --app-version "$I2P_VERSION" \
+      --verbose \
+      --resource-dir build/lib \
+      --input build/lib --main-jar router.jar --main-class net.i2p.router.RouterLaunch
+
+

+ Transfer the I2P directory to the machine where you build i2p.firefox if + necessary, then complete the regular build instructions. If a jpackaged I2P router + isn’t present to use at build time, the inclusion will be skipped automatically + with a non-fatal warning. +

+

+ In the near future, I’ll start providing a pre-built app image to ease the + build process for non-Windows users. +

+

+ End-to-End Windows build process using WSL +

+

+ + If you’ve already done this once, you can just use: + + + ./build.sh && wsl make + + + in + + git bash + + + to automatically build an installer. +

+

+ + Prerequisites: + + You need to have OpenJDK 14 or greater installed and configured + with your + + %JAVA_HOME% + + environment variable configured and + + %JAVA_HOME%/bin + + on + your + + %PATH% + + . You need to have Apache Ant installed and configured with + + %ANT_HOME% + + environment variable configured and + + %ANT_HOME%/bin + + on your + + %PATH% + + . You must have + Cygwin installed. You must have + + NSIS.exe + + installed and + + makensis + + available on your + + %PATH% + + . You must have Git for Windows installed. When installing git for Windows, + you should select “Checkout as is, commit as is” and leave line-endings alone. +

+
    +
  1. +

    + + Set up Windows Subsystem for Linux per Microsoft’s instructions + +

    +
  2. +
  3. +

    + + Install Ubuntu Focal per Microsoft’s instructions + +

    +
  4. +
  5. +

    + Open Git Bash. +

    +
  6. +
  7. +

    + Install prerequisites + + wsl sudo apt-get update && sudo apt-get install make nsis dos2unix curl jq + +

    +
  8. +
  9. +

    + Clone + + i2p.i2p + + and + + i2p.firefox + +

    +
    git clone https://github.com/i2p/i2p.i2p
    +git clone https://github.com/i2p/i2p.firefox
    +
    +
  10. +
  11. +

    + Move to the i2p.i2p directory. Build the .jar files required to build the App Image + inside i2p.i2p. Return to home. +

    +
    cd i2p.i2p
    +ant clean pkg
    +cd ..
    +
    +
  12. +
  13. +

    + Move into the i2p.firefox directory. Run the + + ./build.sh + + script. +

    +
    cd i2p.firefox
    +./build.sh
    +
    +
  14. +
  15. +

    + Compile the NSIS installer using WSL. +

    +
    wsl make
    +
    +
  16. +
+

+ End-to-End Windows build process using Cygwin +

+

+ I highly recommend you look into the Chocolatey package manager, which makes it much + easier to configure these tools and keep them up to date. +

+

+ + Prerequisites: + + You need to have OpenJDK 14 or greater installed and configured + with your + + %JAVA_HOME% + + environment variable configured and + + %JAVA_HOME%/bin + + on + your + + %PATH% + + . You need to have Apache Ant installed and configured with + + %ANT_HOME% + + environment variable configured and + + %ANT_HOME%/bin + + on your + + %PATH% + + . You must have + WSL and git bash installed. You must have + + NSIS.exe + + installed and + + makensis + + available on your + + %PATH% + + . You must have Git for Windows installed. When installing git for Windows, you should + select “Checkout as is, commit as is” and leave line-endings alone. +

+

+ TODO: Add links to the respective instructions for each of these. +

+
    +
  1. +

    + Run the Cygwin + + setup-$arch.exe + + for your platform to set up new packages. Select the + + make + + + jq + + + dos2unix + + and + + curl + + packages. +

    +
  2. +
  3. +

    + Open a cygwin terminal. +

    +
  4. +
  5. +

    + Clone + + i2p.i2p + + and + + i2p.firefox + +

    +
    git clone https://github.com/i2p/i2p.i2p
    +git clone https://github.com/i2p/i2p.firefox
    +
    +
  6. +
  7. +

    + Move to the i2p.i2p directory. Build the .jar files required to build the App Image + inside i2p.i2p. Return to home. +

    +
    cd i2p.i2p
    +ant clean pkg
    +cd ..
    +
    +
  8. +
  9. +

    + Move into the i2p.firefox directory. Run the + + ./build.sh + + script. +

    +
    cd i2p.firefox
    +./build.sh
    +
    +
  10. +
  11. +

    + Run + + make + + to build the installer. +

    +
  12. +
+

+ Doing a Release +

+

+ Once you have the installer + + .exe + + file produced by NSIS, you’re almost ready to + do a release. As a final step, someone must sign the + + .exe + + file using a + Certificate which Windows will recognize. The current signer of the Windows + bundle is Zlatinb. Standard Windows signing tools are used. +

+
# Release Copypasta
+./clean.sh
+wsl make distclean
+wsl make clean-extensions
+wsl make extensions
+./build.sh
+wsl make
+./sign.sh
+
+

+ Building a signed update file +

+

+ Building a signed update file for automatically updating a Windows I2P router + requires you to either be using linux, or have Go installed in your Cygwin or WSL environment. + On Linux(Where I sign the su3 files), this works: +

+
    make su3
+
+

+ to run the signing tool if necessary and then package the installer in a + signed update file. +

+

+ Docker Support +

+

+ You can use a Docker container to install this browser profile as well. In order + to do this, you can run the commands: +

+
    xhost + local:docker
+    docker run -it --rm \
+      --net=host \
+      -e DISPLAY=unix$(DISPLAY) \
+      -v /tmp/.X11-unix:/tmp/.X11-unix \
+      geti2p/i2p.firefox firefox --profile /src/build/profile
+
+

+ To build and run the container locally, clone this repository and run the +

+
    make run
+
+

+ target. +

+

+ Issues +

+

+ To report issues against this browser profile, please file issues + at + + the official Gitlab + + or the + + Github Mirror + + . Issues + pertaining to the plugins may be reported to their upstream + maintainers if it’s determined that our configuration is not at + fault. +

+

+ NoScript is developed on Github by + + hackademix + + and the community: + - + + https://github.com/hackademix/noscript + +

+

+ HTTPS Everywhere is developed on Github by the EFF: + - + + https://github.com/EFForg/https-everywhere + +

+

+ I2P in Private Browsing is developed on Gitlab and Github by idk and the community: + - + + https://i2pgit.org/idk/I2P-in-Private-Browsing-Mode-Firefox + + - + + https://github.com/eyedeekay/I2P-in-Private-Browsing-Mode-Firefox + +

+
+ + Show license + +
+
+
Copyright 2018
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ + Hide license + +
+
+
+
+ +
+ + \ No newline at end of file diff --git a/license/ABOUT-Jetty.html b/license/ABOUT-Jetty.html new file mode 100644 index 0000000..7c93032 --- /dev/null +++ b/license/ABOUT-Jetty.html @@ -0,0 +1,20 @@ + + + + +About + + +

About This Content

+ +

19 May, 2009

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). The Content is dual licensed and is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL") as well as the Apache Software License Version 2.0. A copy of the EPL is available +at http://www.eclipse.org/legal/epl-v10.html. A copy of the ASL is available at http://www.apache.org/licenses/LICENSE-2.0.html. For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org.

+ + + \ No newline at end of file diff --git a/license/I2P.txt b/license/I2P.txt index 1e94e57..fe6b5cf 100644 --- a/license/I2P.txt +++ b/license/I2P.txt @@ -212,6 +212,10 @@ Applications: Copyright (c) 2006, Matthew Estes See licenses/LICENSE-BlockFile.txt + BOB (BOB.jar): + Copyright (C) sponge + See licenses/COPYING-BOB.txt + Desktopgui (desktopgui.jar): Copyright (c) Mathias De Maré See licenses/LICENSE-DesktopGUI.txt @@ -335,9 +339,9 @@ Applications: Systray (systray.jar): Public domain. - Tomcat 9.0.62 (jasper-runtime.jar): + Tomcat 9.0.54 (jasper-runtime.jar): (not included in most distribution packages) - Copyright 1999-2022 The Apache Software Foundation + Copyright 1999-2021 The Apache Software Foundation See licenses/LICENSE-Apache2.0.txt See licenses/NOTICE-Tomcat.txt diff --git a/license/LICENSE-ECLIPSE-1.0.html b/license/LICENSE-ECLIPSE-1.0.html new file mode 100644 index 0000000..cbee82e --- /dev/null +++ b/license/LICENSE-ECLIPSE-1.0.html @@ -0,0 +1,319 @@ + + + + + + + +Eclipse Public License - Version 1.0 + + + + +
+ +

Eclipse Public License - v 1.0 +

+ +

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER +THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, +REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE +OF THIS AGREEMENT.

+ +

1. DEFINITIONS

+ +

"Contribution" means:

+ +

a) +in the case of the initial Contributor, the initial code and documentation +distributed under this Agreement, and
+b) in the case of each subsequent Contributor:

+ +

i) +changes to the Program, and

+ +

ii) +additions to the Program;

+ +

where +such changes and/or additions to the Program originate from and are distributed +by that particular Contributor. A Contribution 'originates' from a Contributor +if it was added to the Program by such Contributor itself or anyone acting on +such Contributor's behalf. Contributions do not include additions to the +Program which: (i) are separate modules of software distributed in conjunction +with the Program under their own license agreement, and (ii) are not derivative +works of the Program.

+ +

"Contributor" means any person or +entity that distributes the Program.

+ +

"Licensed Patents " mean patent +claims licensable by a Contributor which are necessarily infringed by the use +or sale of its Contribution alone or when combined with the Program.

+ +

"Program" means the Contributions +distributed in accordance with this Agreement.

+ +

"Recipient" means anyone who +receives the Program under this Agreement, including all Contributors.

+ +

2. GRANT OF RIGHTS

+ +

a) +Subject to the terms of this Agreement, each Contributor hereby grants Recipient +a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly +display, publicly perform, distribute and sublicense the Contribution of such +Contributor, if any, and such derivative works, in source code and object code +form.

+ +

b) +Subject to the terms of this Agreement, each Contributor hereby grants +Recipient a non-exclusive, worldwide, royalty-free +patent license under Licensed Patents to make, use, sell, offer to sell, import +and otherwise transfer the Contribution of such Contributor, if any, in source +code and object code form. This patent license shall apply to the combination +of the Contribution and the Program if, at the time the Contribution is added +by the Contributor, such addition of the Contribution causes such combination +to be covered by the Licensed Patents. The patent license shall not apply to +any other combinations which include the Contribution. No hardware per se is +licensed hereunder.

+ +

c) +Recipient understands that although each Contributor grants the licenses to its +Contributions set forth herein, no assurances are provided by any Contributor +that the Program does not infringe the patent or other intellectual property +rights of any other entity. Each Contributor disclaims any liability to Recipient +for claims brought by any other entity based on infringement of intellectual +property rights or otherwise. As a condition to exercising the rights and +licenses granted hereunder, each Recipient hereby assumes sole responsibility +to secure any other intellectual property rights needed, if any. For example, +if a third party patent license is required to allow Recipient to distribute +the Program, it is Recipient's responsibility to acquire that license before +distributing the Program.

+ +

d) +Each Contributor represents that to its knowledge it has sufficient copyright +rights in its Contribution, if any, to grant the copyright license set forth in +this Agreement.

+ +

3. REQUIREMENTS

+ +

A Contributor may choose to distribute the +Program in object code form under its own license agreement, provided that: +

+ +

a) +it complies with the terms and conditions of this Agreement; and

+ +

b) +its license agreement:

+ +

i) +effectively disclaims on behalf of all Contributors all warranties and +conditions, express and implied, including warranties or conditions of title +and non-infringement, and implied warranties or conditions of merchantability +and fitness for a particular purpose;

+ +

ii) +effectively excludes on behalf of all Contributors all liability for damages, +including direct, indirect, special, incidental and consequential damages, such +as lost profits;

+ +

iii) +states that any provisions which differ from this Agreement are offered by that +Contributor alone and not by any other party; and

+ +

iv) +states that source code for the Program is available from such Contributor, and +informs licensees how to obtain it in a reasonable manner on or through a +medium customarily used for software exchange.

+ +

When the Program is made available in source +code form:

+ +

a) +it must be made available under this Agreement; and

+ +

b) a +copy of this Agreement must be included with each copy of the Program.

+ +

Contributors may not remove or alter any +copyright notices contained within the Program.

+ +

Each Contributor must identify itself as the +originator of its Contribution, if any, in a manner that reasonably allows +subsequent Recipients to identify the originator of the Contribution.

+ +

4. COMMERCIAL DISTRIBUTION

+ +

Commercial distributors of software may +accept certain responsibilities with respect to end users, business partners +and the like. While this license is intended to facilitate the commercial use +of the Program, the Contributor who includes the Program in a commercial +product offering should do so in a manner which does not create potential +liability for other Contributors. Therefore, if a Contributor includes the +Program in a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified Contributor to +the extent caused by the acts or omissions of such Commercial Contributor in +connection with its distribution of the Program in a commercial product +offering. The obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In order +to qualify, an Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial Contributor +to control, and cooperate with the Commercial Contributor in, the defense and +any related settlement negotiations. The Indemnified Contributor may participate +in any such claim at its own expense.

+ +

For example, a Contributor might include the +Program in a commercial product offering, Product X. That Contributor is then a +Commercial Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance claims and +warranties are such Commercial Contributor's responsibility alone. Under this +section, the Commercial Contributor would have to defend claims against the +other Contributors related to those performance claims and warranties, and if a +court requires any other Contributor to pay any damages as a result, the +Commercial Contributor must pay those damages.

+ +

5. NO WARRANTY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS +AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, +WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely +responsible for determining the appropriateness of using and distributing the +Program and assumes all risks associated with its exercise of rights under this +Agreement , including but not limited to the risks and costs of program errors, +compliance with applicable laws, damage to or loss of data, programs or +equipment, and unavailability or interruption of operations.

+ +

6. DISCLAIMER OF LIABILITY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS +AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF +THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGES.

+ +

7. GENERAL

+ +

If any provision of this Agreement is invalid +or unenforceable under applicable law, it shall not affect the validity or +enforceability of the remainder of the terms of this Agreement, and without +further action by the parties hereto, such provision shall be reformed to the +minimum extent necessary to make such provision valid and enforceable.

+ +

If Recipient institutes patent litigation +against any entity (including a cross-claim or counterclaim in a lawsuit) +alleging that the Program itself (excluding combinations of the Program with +other software or hardware) infringes such Recipient's patent(s), then such +Recipient's rights granted under Section 2(b) shall terminate as of the date +such litigation is filed.

+ +

All Recipient's rights under this Agreement +shall terminate if it fails to comply with any of the material terms or +conditions of this Agreement and does not cure such failure in a reasonable +period of time after becoming aware of such noncompliance. If all Recipient's +rights under this Agreement terminate, Recipient agrees to cease use and +distribution of the Program as soon as reasonably practicable. However, +Recipient's obligations under this Agreement and any licenses granted by +Recipient relating to the Program shall continue and survive.

+ +

Everyone is permitted to copy and distribute +copies of this Agreement, but in order to avoid inconsistency the Agreement is +copyrighted and may only be modified in the following manner. The Agreement +Steward reserves the right to publish new versions (including revisions) of +this Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. The Eclipse Foundation is the initial +Agreement Steward. The Eclipse Foundation may assign the responsibility to +serve as the Agreement Steward to a suitable separate entity. Each new version +of the Agreement will be given a distinguishing version number. The Program +(including Contributions) may always be distributed subject to the version of +the Agreement under which it was received. In addition, after a new version of +the Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly stated +in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to +the intellectual property of any Contributor under this Agreement, whether +expressly, by implication, estoppel or otherwise. All rights in the Program not +expressly granted under this Agreement are reserved.

+ +

This Agreement is governed by the laws of the +State of New York and the intellectual property laws of the United States of +America. No party to this Agreement will bring a legal action under this +Agreement more than one year after the cause of action arose. Each party waives +its rights to a jury trial in any resulting litigation.

+ +

 

+ +
+ + diff --git a/license/NOTICE-Jetty.html b/license/NOTICE-Jetty.html new file mode 100644 index 0000000..e9461a8 --- /dev/null +++ b/license/NOTICE-Jetty.html @@ -0,0 +1,111 @@ + + + + + +Eclipse.org Software User Agreement + +

Eclipse Foundation Software User Agreement

+

March 17, 2005

+ +

Usage Of Content

+ +

THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS + (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND + CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE + OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR + NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND + CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.

+ +

Applicable Licenses

+ +

Unless otherwise indicated, all Content made available by the +Eclipse Foundation is provided to you under the terms and conditions of +the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is +provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html. + For purposes of the EPL, "Program" will mean the Content.

+ +

Content includes, but is not limited to, source code, object code, +documentation and other files maintained in the Eclipse.org CVS +repository ("Repository") in CVS modules ("Modules") and made available +as downloadable archives ("Downloads").

+ + + +

The terms and conditions governing Plug-ins and Fragments should be +contained in files named "about.html" ("Abouts"). The terms and +conditions governing Features and +Included Features should be contained in files named "license.html" +("Feature Licenses"). Abouts and Feature Licenses may be located in any +directory of a Download or Module +including, but not limited to the following locations:

+ + + +

Note: if a Feature made available by the Eclipse Foundation is +installed using the Eclipse Update Manager, you must agree to a license +("Feature Update License") during the +installation process. If the Feature contains Included Features, the +Feature Update License should either provide you with the terms and +conditions governing the Included Features or +inform you where you can locate them. Feature Update Licenses may be +found in the "license" property of files named "feature.properties" +found within a Feature. +Such Abouts, Feature Licenses, and Feature Update Licenses contain the +terms and conditions (or references to such terms and conditions) that +govern your use of the associated Content in +that directory.

+ +

THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER +TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND +CONDITIONS. SOME OF THESE +OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):

+ + + +

IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND +CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, +or Feature Update License is provided, please +contact the Eclipse Foundation to determine what terms and conditions +govern that particular Content.

+ +

Cryptography

+ +

Content may contain encryption software. The country in which you +are currently may have restrictions on the import, possession, and use, +and/or re-export to another country, of encryption software. BEFORE +using any encryption software, please check the country's laws, +regulations and policies concerning the import, possession, or use, and +re-export of encryption software, to see if this is permitted.

+ +Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. + \ No newline at end of file diff --git a/src/app-profile/user.js b/src/app-profile/user.js deleted file mode 100644 index 45fbbba..0000000 --- a/src/app-profile/user.js +++ /dev/null @@ -1,224 +0,0 @@ -/* -Overrides# -for Extension Preferences# Tor Browser Bundle# Do not edit this file.##This file is modified from a file included in the Tor Browser Bundle.##Copyright 2017 The Tor Project.See LICENSE.tor# -for licensing information. - -HTTPS Everywhere Preferences: -*/ -user_pref("extensions.https_everywhere._observatory.popup_shown", true); -user_pref("extensions.https_everywhere.toolbar_hint_shown", true); - -/* -NoScript Preferences: #In order to disable all scripts by -default, uncomment the following line...#user_pref("capability.policy.maonoscript.javascript.enabled", "noAccess");# -and comment out the following line -*/ -user_pref("capability.policy.maonoscript.javascript.enabled", "allAccess"); -user_pref("capability.policy.maonoscript.sites", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache"); -user_pref("noscript.default", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache"); -user_pref("noscript.mandatory", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache"); -user_pref("noscript.ABE.enabled", false); -user_pref("noscript.ABE.notify", false); -user_pref("noscript.ABE.wanIpAsLocal", false); -user_pref("noscript.confirmUnblock", false); -user_pref("noscript.contentBlocker", true); -user_pref("noscript.firstRunRedirection", false); -user_pref("noscript.global", true); -user_pref("noscript.gtemp", ""); -user_pref("noscript.opacizeObject", 3); -user_pref("noscript.forbidWebGL", true); -user_pref("noscript.forbidFonts", true); -user_pref("noscript.options.tabSelectedIndexes", "5,0,0"); -user_pref("noscript.policynames", ""); -user_pref("noscript.secureCookies", true); -user_pref("noscript.showAllowPage", false); -user_pref("noscript.showBaseDomain", false); -user_pref("noscript.showDistrust", false); -user_pref("noscript.showRecentlyBlocked", false); -user_pref("noscript.showTemp", false); -user_pref("noscript.showTempToPerm", false); -user_pref("noscript.showUntrusted", false); -user_pref("noscript.STS.enabled", false); -user_pref("noscript.subscription.lastCheck", -142148139); -user_pref("noscript.temp", ""); -user_pref("noscript.untrusted", ""); -user_pref("noscript.forbidMedia", true); -user_pref("noscript.allowWhitelistUpdates", false); -user_pref("noscript.fixLinks", false); -// Now handled by plugins.click_to_play // Not in this one. -user_pref("noscript.forbidFlash", true); -user_pref("noscript.forbidSilverlight", true); -user_pref("noscript.forbidJava", true); -user_pref("noscript.forbidPlugins", true); -// Usability tweaks -user_pref("noscript.showPermanent", false); -user_pref("noscript.showTempAllowPage", true); -user_pref("noscript.showRevokeTemp", true); -user_pref("noscript.notify", false); -user_pref("noscript.autoReload", true); -user_pref("noscript.autoReload.allTabs", false); -user_pref("noscript.cascadePermissions", true); -user_pref("noscript.restrictSubdocScripting", true); -user_pref("noscript.showVolatilePrivatePermissionsToggle", false); -user_pref("noscript.volatilePrivatePermissions", true); -user_pref("noscript.clearClick", 0); - -user_pref("intl.locale.matchOS", false); - -user_pref("extensions.https_everywhere._observatory.enabled", false); -user_pref("extensions.https_everywhere.options.autoUpdateRulesets", false); -user_pref("extensions.https_everywhere.globalEnabled", false); -user_pref("extensions.https_everywhere._observatory.submit_during_tor", false); -user_pref("extensions.https_everywhere._observatory.submit_during_nontor", false); -user_pref("extensions.https_everywhere._observatory.use_custom_proxy", true); -user_pref("extensions.https_everywhere._observatory.proxy_host", "127.0.0.1"); -user_pref("extensions.https_everywhere._observatory.proxy_port", 4444); - -user_pref("extensions.torbutton.use_nontor_proxy", true); - -//For socket conversion: in the future, I'll need to make TBB communicate with -//i2p over a unix socket. Fortunately, this is how you do that. It will be -//configurable in a similar way to the host:port configuration when that happens. -//user_pref("extensions.torlauncher.socks_port_use_ipc", ); -//user_pref("extensions.torlauncher.socks_ipc_path", ""); - -user_pref("extensions.torlauncher.start_tor", false); -//user_pref("extensions.torlauncher.default_bridge_type", ""); -user_pref("extensions.torlauncher.prompt_at_startup", false); - -// Resist-fingerprinting and first-party isolation enable - -user_pref("privacy.resistFingerprinting", true); -user_pref("privacy.firstparty.isolate", true); - -// Use i2p http proxy for all connections and set homepage to safe local form. - -// DON'T allow access to the admin panel from the profile we browse i2p with. -user_pref("network.proxy.no_proxies_on", "127.0.0.1:7657,localhost:7657,127.0.0.1:7662,localhost:7662,127.0.0.1:7669,localhost:7669"); -user_pref("network.proxy.type", 1); -user_pref("network.proxy.http", "127.0.0.1"); -user_pref("network.proxy.http_port", 4444); -user_pref("network.proxy.ssl", "127.0.0.1"); -user_pref("network.proxy.ssl_port", 4444); -user_pref("network.proxy.ftp", "127.0.0.1"); -user_pref("network.proxy.ftp_port", 4444); -user_pref("network.proxy.socks", "127.0.0.1"); -user_pref("network.proxy.socks_port", 4444); -user_pref("network.proxy.share_proxy_settings", true); -user_pref("browser.startup.homepage", "http://127.0.0.1:7657/home"); - -// Privacy-harden and disable irrelevant features. -user_pref("app.normandy.api_url", ""); -user_pref("app.normandy.enabled", false); -user_pref("app.update.auto", false); -user_pref("app.update.enabled", false); -user_pref("beacon.enabled", false); -user_pref("browser.aboutHomeSnippets.updateUrl", ""); -user_pref("browser.cache.disk_cache_ssl", false); -user_pref("browser.cache.disk.enable", false); -user_pref("browser.cache.offline.enable", false); -user_pref("browser.disableResetPrompt", true); -user_pref("browser.display.use_document_fonts", 0); -user_pref("browser.fixup.alternate.enabled", false); -user_pref("browser.formfill.enable", false); -user_pref("browser.library.activity-stream.enabled", false); -user_pref("browser.newtabpage.activity-stream.disableSnippets", true); -user_pref("browser.newtabpage.activity-stream.enabled", false); -user_pref("browser.newtabpage.activity-stream.feeds.section.highlights", false); -user_pref("browser.newtabpage.activity-stream.feeds.snippets", false); -user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); -user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); -user_pref("browser.newtabpage.activity-stream.prerender", false); -user_pref("browser.newtabpage.activity-stream.showSearch", false); -user_pref("browser.newtabpage.enhanced", false); -user_pref("browser.newtabpage.introShown", true); -user_pref("browser.newtab.preload", false); -user_pref("browser.onboarding.enabled", false); -user_pref("browser.pagethumbnails.capturing_disabled", true); -user_pref("browser.safebrowsing.appRepURL", ""); -user_pref("browser.safebrowsing.blockedURIs.enabled", false); -user_pref("browser.safebrowsing.downloads.enabled", false); -user_pref("browser.safebrowsing.downloads.remote.enabled", false); -user_pref("browser.safebrowsing.downloads.remote.url", ""); -user_pref("browser.safebrowsing.enabled", false); -user_pref("browser.safebrowsing.malware.enabled", false); -user_pref("browser.safebrowsing.phishing.enabled", false); -user_pref("browser.search.geoip.timeout", 1); -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.selfsupport.url", ""); -user_pref("browser.send_pings", false); -user_pref("browser.shell.checkDefaultBrowser", false); -user_pref("browser.startup.homepage_override.mstone", "ignore"); -user_pref("browser.startup.page", 0); -user_pref("browser.toolbarbuttons.introduced.pocket-button", true); -user_pref("browser.urlbar.speculativeConnect.enabled", false); -user_pref("browser.urlbar.trimURLs", false); -user_pref("datareporting.healthreport.uploadEnabled", false); -user_pref("datareporting.policy.dataSubmissionEnabled", false); -user_pref("dom.battery.enabled", false); -user_pref("dom.enable_performance", false); -user_pref("dom.enable_performance_navigation_timing", false); -user_pref("dom.enable_resource_timing", false); -user_pref("dom.event.clipboardevents.enabled", false); -user_pref("dom.gamepad.enabled", false); -user_pref("dom.indexedDB.enabled", false); -user_pref("dom.min_timeout_value", 400); -user_pref("dom.push.connection.enabled", false); -user_pref("dom.push.enabled", false); -user_pref("dom.serviceWorkers.enabled", false); -user_pref("dom.serviceWorkers.interception.enabled", false); -user_pref("dom.storage.enabled", false); -user_pref("dom.webaudio.enabled", false); -user_pref("extensions.autoDisableScopes", 14); -user_pref("extensions.getAddons.cache.enabled", false); -user_pref("extensions.getAddons.showPane", false); -user_pref("extensions.pocket.enabled", false); -user_pref("extensions.screenshots.disabled", true); -user_pref("extensions.webservice.discoverURL", ""); -user_pref("geo.enabled", false); -user_pref("geo.wifi.uri", ""); -user_pref("gfx.downloadable_fonts.disable_cache", true); -user_pref("javascript.options.shared_memory", false); -user_pref("layout.css.visited_links_enabled", false); -user_pref("media.autoplay.enabled", false); -user_pref("media.cache_size", 0); -user_pref("media.navigator.enabled", false); -user_pref("media.peerconnection.enabled", false); -user_pref("media.video_stats.enabled", false); -user_pref("captivedetect.canonicalURL", ""); -user_pref("network.captive-portal-service.enabled", false); -user_pref("network.cookie.cookieBehavior", 1); -user_pref("network.cookie.lifetimePolicy", 2); -user_pref("network.dns.disablePrefetch", true); -user_pref("network.http.referer.spoofSource", true); -user_pref("network.http.referer.trimmingPolicy", 2); -user_pref("network.http.referer.XOriginPolicy", 2); -user_pref("network.prefetch-next", false); -user_pref("privacy.donottrackheader.enabled", true); -user_pref("privacy.donottrackheader.value", 1); -user_pref("toolkit.telemetry.archive.enabled", false); -user_pref("toolkit.telemetry.coverage.opt-out", true); -user_pref("toolkit.telemetry.enabled", false); -user_pref("toolkit.telemetry.server", ""); -user_pref("toolkit.telemetry.unified", false); -user_pref("webgl.disabled", true); -user_pref("browser.chrome.errorReporter.infoURL", ""); -user_pref("breakpad.reportURL", ""); -//user_pref("browser.newtabpage.activity-stream.default.sites", ""); -user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); -user_pref("browser.newtabpage.activity-stream.showSponsored", false); -user_pref("services.sync.prefs.sync.browser.newtabpage.activity-stream.showSponsored", false); -user_pref("browser.newtabpage.enabled", true); -user_pref("browser.newtabpage.activity-stream.default.sites", "http://127.0.0.1:7657/home,http://127.0.0.1:7657/i2psnark/,http://127.0.0.1:7657/susimail/"); -user_pref("dom.security.https_only_mode", false); -user_pref("keyword.enabled", false); -user_pref("extensions.allowPrivateBrowsingByDefault", true); -user_pref("extensions.PrivateBrowsing.notification", false); -user_pref("browser.newtabpage.activity-stream.feeds.topsites", true); -user_pref("ui.use_standins_for_native_colors", true); -user_pref("webgl.disable-extensions", true); -user_pref("webgl.min_capability_mode", true); -user_pref("webgl.disable-fail-if-major-performance-caveat", true); -user_pref("webgl.enable-webgl2", false); -user_pref("dom.w3c_touch_events.enabled", false); -user_pref("browser.display.use_system_colors", false); \ No newline at end of file diff --git a/src/app-profile/version.txt b/src/app-profile/version.txt index 27f9cd3..a8fdfda 100644 --- a/src/app-profile/version.txt +++ b/src/app-profile/version.txt @@ -1 +1 @@ -1.8.0 +1.8.1 diff --git a/src/nsis/i2pbrowser-jpackage.nsi b/src/nsis/i2pbrowser-jpackage.nsi index cef7b13..07f8ba2 100644 --- a/src/nsis/i2pbrowser-jpackage.nsi +++ b/src/nsis/i2pbrowser-jpackage.nsi @@ -1 +1 @@ -!define I2P_VERSION 1.8.0 +!define I2P_VERSION 1.8.1 diff --git a/src/nsis/i2pbrowser-version.nsi b/src/nsis/i2pbrowser-version.nsi index 3fd9cab..52da9b3 100644 --- a/src/nsis/i2pbrowser-version.nsi +++ b/src/nsis/i2pbrowser-version.nsi @@ -1,3 +1,3 @@ !define VERSIONMAJOR 1 !define VERSIONMINOR 8 -!define VERSIONBUILD 0 +!define VERSIONBUILD 1 diff --git a/src/profile/user.js b/src/profile/user.js index 969ef44..fe1c316 100644 --- a/src/profile/user.js +++ b/src/profile/user.js @@ -1,229 +1,205 @@ -/* -Overrides# -for Extension Preferences# Tor Browser Bundle# Do not edit this file.##This file is modified from a file included in the Tor Browser Bundle.##Copyright 2017 The Tor Project.See LICENSE.tor# -for licensing information. - -HTTPS Everywhere Preferences: -*/ -user_pref("extensions.https_everywhere._observatory.popup_shown", true); -user_pref("extensions.https_everywhere.toolbar_hint_shown", true); - -/* -NoScript Preferences: #In order to disable all scripts by -default, uncomment the following line...#user_pref("capability.policy.maonoscript.javascript.enabled", "noAccess");# -and comment out the following line -*/ -user_pref("capability.policy.maonoscript.javascript.enabled", "allAccess"); -user_pref("capability.policy.maonoscript.sites", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache"); -user_pref("noscript.default", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache"); -user_pref("noscript.mandatory", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache"); -user_pref("noscript.ABE.enabled", false); -user_pref("noscript.ABE.notify", false); -user_pref("noscript.ABE.wanIpAsLocal", false); -user_pref("noscript.confirmUnblock", false); -user_pref("noscript.contentBlocker", true); -user_pref("noscript.firstRunRedirection", false); -user_pref("noscript.global", true); -user_pref("noscript.gtemp", ""); -user_pref("noscript.opacizeObject", 3); -user_pref("noscript.forbidWebGL", true); -user_pref("noscript.forbidFonts", true); -user_pref("noscript.options.tabSelectedIndexes", "5,0,0"); -user_pref("noscript.policynames", ""); -user_pref("noscript.secureCookies", true); -user_pref("noscript.showAllowPage", false); -user_pref("noscript.showBaseDomain", false); -user_pref("noscript.showDistrust", false); -user_pref("noscript.showRecentlyBlocked", false); -user_pref("noscript.showTemp", false); -user_pref("noscript.showTempToPerm", false); -user_pref("noscript.showUntrusted", false); -user_pref("noscript.STS.enabled", false); -user_pref("noscript.subscription.lastCheck", -142148139); -user_pref("noscript.temp", ""); -user_pref("noscript.untrusted", ""); -user_pref("noscript.forbidMedia", true); -user_pref("noscript.allowWhitelistUpdates", false); -user_pref("noscript.fixLinks", false); -// Now handled by plugins.click_to_play // Not in this one. -user_pref("noscript.forbidFlash", true); -user_pref("noscript.forbidSilverlight", true); -user_pref("noscript.forbidJava", true); -user_pref("noscript.forbidPlugins", true); -// Usability tweaks -user_pref("noscript.showPermanent", false); -user_pref("noscript.showTempAllowPage", true); -user_pref("noscript.showRevokeTemp", true); -user_pref("noscript.notify", false); -user_pref("noscript.autoReload", true); -user_pref("noscript.autoReload.allTabs", false); -user_pref("noscript.cascadePermissions", true); -user_pref("noscript.restrictSubdocScripting", true); -user_pref("noscript.showVolatilePrivatePermissionsToggle", false); -user_pref("noscript.volatilePrivatePermissions", true); -user_pref("noscript.clearClick", 0); - -user_pref("intl.locale.matchOS", false); - -user_pref("extensions.https_everywhere._observatory.enabled", false); -user_pref("extensions.https_everywhere.options.autoUpdateRulesets", false); -user_pref("extensions.https_everywhere.globalEnabled", false); -user_pref("extensions.https_everywhere._observatory.submit_during_tor", false); -user_pref("extensions.https_everywhere._observatory.submit_during_nontor", false); -user_pref("extensions.https_everywhere._observatory.use_custom_proxy", true); -user_pref("extensions.https_everywhere._observatory.proxy_host", "127.0.0.1"); -user_pref("extensions.https_everywhere._observatory.proxy_port", 4444); - -user_pref("extensions.torbutton.use_nontor_proxy", true); - -//For socket conversion: in the future, I'll need to make TBB communicate with -//i2p over a unix socket. Fortunately, this is how you do that. It will be -//configurable in a similar way to the host:port configuration when that happens. -//user_pref("extensions.torlauncher.socks_port_use_ipc", ); -//user_pref("extensions.torlauncher.socks_ipc_path", ""); - -// TODO: this is a Tor Browser specific setting which is ignored on Firefox. If -// I make it true, the SOCKS outproxy will have something to connect to. But I -// need to test more to find out if that's prudent. -user_pref("extensions.torlauncher.start_tor", false); -//user_pref("extensions.torlauncher.default_bridge_type", ""); -user_pref("extensions.torlauncher.prompt_at_startup", false); - -// Resist-fingerprinting and first-party isolation enable - -user_pref("privacy.resistFingerprinting", true); -user_pref("privacy.firstparty.isolate", true); - -// Use i2p http proxy for all connections and set homepage to safe local form. - -// DON'T allow access to the admin panel from the profile we browse i2p with. -user_pref("network.proxy.no_proxies_on", "127.0.0.1:7657,localhost:7657,127.0.0.1:7662,localhost:7662,127.0.0.1:7669,localhost:7669"); -user_pref("network.proxy.type", 1); -user_pref("network.proxy.http", "127.0.0.1"); -user_pref("network.proxy.http_port", 4444); -user_pref("network.proxy.ssl", "127.0.0.1"); -user_pref("network.proxy.ssl_port", 4444); -user_pref("network.proxy.ftp", "127.0.0.1"); -user_pref("network.proxy.ftp_port", 4444); -user_pref("network.proxy.socks", "127.0.0.1"); -user_pref("network.proxy.socks_port", 4444); -user_pref("network.proxy.share_proxy_settings", true); -user_pref("browser.startup.homepage", "http://127.0.0.1:7657/home"); - -// Privacy-harden and disable irrelevant features. -user_pref("app.normandy.api_url", ""); -user_pref("app.normandy.enabled", false); -user_pref("app.update.auto", false); -user_pref("app.update.enabled", false); -user_pref("beacon.enabled", false); -user_pref("browser.aboutHomeSnippets.updateUrl", ""); -user_pref("browser.cache.disk_cache_ssl", false); -user_pref("browser.cache.disk.enable", false); -user_pref("browser.cache.offline.enable", false); -user_pref("browser.disableResetPrompt", true); -user_pref("browser.display.use_document_fonts", 0); -user_pref("browser.fixup.alternate.enabled", false); -user_pref("browser.formfill.enable", false); -user_pref("browser.library.activity-stream.enabled", false); -user_pref("browser.newtabpage.activity-stream.disableSnippets", true); -user_pref("browser.newtabpage.activity-stream.enabled", false); -user_pref("browser.newtabpage.activity-stream.feeds.section.highlights", false); -user_pref("browser.newtabpage.activity-stream.feeds.snippets", false); -user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); -user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); -user_pref("browser.newtabpage.activity-stream.prerender", false); -user_pref("browser.newtabpage.activity-stream.showSearch", false); -user_pref("browser.newtabpage.enhanced", false); -user_pref("browser.newtabpage.introShown", true); -user_pref("browser.newtab.preload", false); -user_pref("browser.onboarding.enabled", false); -user_pref("browser.pagethumbnails.capturing_disabled", true); -user_pref("browser.safebrowsing.appRepURL", ""); -user_pref("browser.safebrowsing.blockedURIs.enabled", false); -user_pref("browser.safebrowsing.downloads.enabled", false); -user_pref("browser.safebrowsing.downloads.remote.enabled", false); -user_pref("browser.safebrowsing.downloads.remote.url", ""); -user_pref("browser.safebrowsing.enabled", false); -user_pref("browser.safebrowsing.malware.enabled", false); -user_pref("browser.safebrowsing.phishing.enabled", false); -user_pref("browser.search.geoip.timeout", 1); -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.selfsupport.url", ""); -user_pref("browser.send_pings", false); +user_pref("_user.js.parrot", "START: Oh yes, the Norwegian Blue... what's wrong with it?"); +user_pref("browser.aboutConfig.showWarning", false); +user_pref("_user.js.parrot", "0100 syntax error: the parrot's dead!"); user_pref("browser.shell.checkDefaultBrowser", false); -user_pref("browser.startup.homepage_override.mstone", "ignore"); user_pref("browser.startup.page", 0); -user_pref("browser.toolbarbuttons.introduced.pocket-button", true); -user_pref("browser.urlbar.speculativeConnect.enabled", false); -user_pref("browser.urlbar.trimURLs", false); -user_pref("datareporting.healthreport.uploadEnabled", false); -user_pref("datareporting.policy.dataSubmissionEnabled", false); -user_pref("dom.battery.enabled", false); -user_pref("dom.enable_performance", false); -user_pref("dom.enable_performance_navigation_timing", false); -user_pref("dom.enable_resource_timing", false); -user_pref("dom.event.clipboardevents.enabled", false); -user_pref("dom.gamepad.enabled", false); -user_pref("dom.indexedDB.enabled", false); -user_pref("dom.min_timeout_value", 400); -user_pref("dom.push.connection.enabled", false); -user_pref("dom.push.enabled", false); -user_pref("dom.serviceWorkers.enabled", false); -user_pref("dom.serviceWorkers.interception.enabled", false); -user_pref("dom.storage.enabled", false); -user_pref("dom.webaudio.enabled", false); -user_pref("extensions.autoDisableScopes", 0); -user_pref("extensions.getAddons.cache.enabled", false); +user_pref("browser.startup.homepage", "about:blank"); +user_pref("browser.newtabpage.enabled", false); +user_pref("browser.newtab.preload", false); +user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); +user_pref("browser.newtabpage.activity-stream.telemetry", false); +user_pref("browser.newtabpage.activity-stream.feeds.snippets", false); +user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); +user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket", false); +user_pref("browser.newtabpage.activity-stream.showSponsored", false); +user_pref("browser.newtabpage.activity-stream.feeds.discoverystreamfeed", false); +user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); +user_pref("browser.newtabpage.activity-stream.default.sites", ""); +user_pref("_user.js.parrot", "0200 syntax error: the parrot's definitely deceased!"); +user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%"); +user_pref("geo.provider.ms-windows-location", false); +user_pref("geo.provider.use_corelocation", false); +user_pref("geo.provider.use_gpsd", false); +user_pref("browser.region.network.url", ""); +user_pref("browser.region.update.enabled", false); +user_pref("intl.accept_languages", "en-US, en"); +user_pref("javascript.use_us_english_locale", true); +user_pref("_user.js.parrot", "0300 syntax error: the parrot's not pinin' for the fjords!"); user_pref("extensions.getAddons.showPane", false); -user_pref("extensions.pocket.enabled", false); -user_pref("extensions.screenshots.disabled", true); -user_pref("extensions.webservice.discoverURL", ""); -user_pref("geo.enabled", false); -user_pref("geo.wifi.uri", ""); -user_pref("gfx.downloadable_fonts.disable_cache", true); -user_pref("javascript.options.shared_memory", false); -user_pref("layout.css.visited_links_enabled", false); -user_pref("media.autoplay.enabled", false); -user_pref("media.cache_size", 0); -user_pref("media.navigator.enabled", false); -user_pref("media.peerconnection.enabled", false); -user_pref("media.video_stats.enabled", false); +user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); +user_pref("browser.discovery.enabled", false); +user_pref("datareporting.policy.dataSubmissionEnabled", false); +user_pref("datareporting.healthreport.uploadEnabled", false); +user_pref("toolkit.telemetry.unified", false); +user_pref("toolkit.telemetry.enabled", false); +user_pref("toolkit.telemetry.server", "data:,"); +user_pref("toolkit.telemetry.archive.enabled", false); +user_pref("toolkit.telemetry.newProfilePing.enabled", false); +user_pref("toolkit.telemetry.shutdownPingSender.enabled", false); +user_pref("toolkit.telemetry.updatePing.enabled", false); +user_pref("toolkit.telemetry.bhrPing.enabled", false); +user_pref("toolkit.telemetry.firstShutdownPing.enabled", false); +user_pref("toolkit.telemetry.coverage.opt-out", true); +user_pref("toolkit.coverage.opt-out", true); +user_pref("toolkit.coverage.endpoint.base", ""); +user_pref("browser.ping-centre.telemetry", false); +user_pref("app.shield.optoutstudies.enabled", false); +user_pref("app.normandy.enabled", false); +user_pref("app.normandy.api_url", ""); +user_pref("breakpad.reportURL", ""); +user_pref("browser.tabs.crashReporting.sendReport", false); +user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false); user_pref("captivedetect.canonicalURL", ""); user_pref("network.captive-portal-service.enabled", false); -user_pref("network.cookie.cookieBehavior", 1); -user_pref("network.cookie.lifetimePolicy", 2); -user_pref("network.dns.disablePrefetch", true); -user_pref("network.http.referer.spoofSource", true); -user_pref("network.http.referer.trimmingPolicy", 2); -user_pref("network.http.referer.XOriginPolicy", 2); +user_pref("network.connectivity-service.enabled", false); +user_pref("_user.js.parrot", "0400 syntax error: the parrot's passed on!"); +user_pref("browser.safebrowsing.downloads.remote.enabled", false); +user_pref("_user.js.parrot", "0600 syntax error: the parrot's no more!"); user_pref("network.prefetch-next", false); -user_pref("privacy.donottrackheader.enabled", true); -user_pref("privacy.donottrackheader.value", 1); -user_pref("toolkit.telemetry.archive.enabled", false); -user_pref("toolkit.telemetry.coverage.opt-out", true); -user_pref("toolkit.telemetry.enabled", false); -user_pref("toolkit.telemetry.server", ""); -user_pref("toolkit.telemetry.unified", false); -user_pref("webgl.disabled", true); -user_pref("browser.chrome.errorReporter.infoURL", ""); -user_pref("breakpad.reportURL", ""); -//user_pref("browser.newtabpage.activity-stream.default.sites", ""); -user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); -user_pref("browser.newtabpage.activity-stream.showSponsored", false); -user_pref("services.sync.prefs.sync.browser.newtabpage.activity-stream.showSponsored", false); -user_pref("browser.newtabpage.enabled", true); -user_pref("browser.newtabpage.activity-stream.default.sites", "http://planet.i2p/,http://legwork.i2p/,http://i2pwiki.i2p/,http://i2pforums.i2p/,http://zzz.i2p/"); -user_pref("dom.security.https_only_mode", false); +user_pref("network.dns.disablePrefetch", true); +user_pref("network.predictor.enabled", false); +user_pref("network.predictor.enable-prefetch", false); +user_pref("network.http.speculative-parallel-limit", 0); +user_pref("browser.places.speculativeConnect.enabled", false); +user_pref("_user.js.parrot", "0700 syntax error: the parrot's given up the ghost!"); +user_pref("network.dns.disableIPv6", true); +user_pref("network.proxy.socks_remote_dns", true); +user_pref("network.file.disable_unc_paths", true); +user_pref("network.gio.supported-protocols", ""); +user_pref("_user.js.parrot", "0800 syntax error: the parrot's ceased to be!"); user_pref("keyword.enabled", false); -user_pref("extensions.allowPrivateBrowsingByDefault", true); -user_pref("extensions.PrivateBrowsing.notification", false); -user_pref("browser.newtabpage.activity-stream.feeds.topsites", true); -user_pref("ui.use_standins_for_native_colors", true); -user_pref("webgl.disable-extensions", true); -user_pref("webgl.min_capability_mode", true); -user_pref("webgl.disable-fail-if-major-performance-caveat", true); -user_pref("webgl.enable-webgl2", false); -user_pref("dom.w3c_touch_events.enabled", false); -user_pref("browser.privatebrowsing.autostart", false); +user_pref("browser.fixup.alternate.enabled", false); +user_pref("browser.search.suggest.enabled", false); +user_pref("browser.urlbar.suggest.searches", false); +user_pref("browser.urlbar.speculativeConnect.enabled", false); +user_pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", 0); +user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false); +user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false); +user_pref("browser.formfill.enable", false); +user_pref("extensions.formautofill.addresses.enabled", false); +user_pref("extensions.formautofill.available", "off"); +user_pref("extensions.formautofill.creditCards.available", false); +user_pref("extensions.formautofill.creditCards.enabled", false); +user_pref("extensions.formautofill.heuristics.enabled", false); +user_pref("_user.js.parrot", "0900 syntax error: the parrot's expired!"); +user_pref("signon.autofillForms", false); +user_pref("signon.formlessCapture.enabled", false); +user_pref("network.auth.subresource-http-auth-allow", 1); +user_pref("network.http.windows-sso.enabled", false); +user_pref("_user.js.parrot", "1000 syntax error: the parrot's gone to meet 'is maker!"); +user_pref("browser.cache.disk.enable", false); +user_pref("browser.privatebrowsing.forceMediaMemoryCache", true); +user_pref("media.memory_cache_max_size", 65536); +user_pref("browser.sessionstore.privacy_level", 2); +user_pref("browser.sessionstore.interval", 30000); +user_pref("toolkit.winRegisterApplicationRestart", false); +user_pref("browser.shell.shortcutFavicons", false); +user_pref("_user.js.parrot", "1200 syntax error: the parrot's a stiff!"); +user_pref("security.ssl.require_safe_negotiation", true); +user_pref("security.tls.enable_0rtt_data", false); +user_pref("security.OCSP.enabled", 1); +user_pref("security.OCSP.require", true); +user_pref("security.family_safety.mode", 0); +user_pref("security.cert_pinning.enforcement_level", 2); +user_pref("security.remote_settings.crlite_filters.enabled", true); +user_pref("security.pki.crlite_mode", 2); +user_pref("security.mixed_content.block_display_content", true); +user_pref("dom.security.https_only_mode", true); +user_pref("dom.security.https_only_mode_send_http_background_request", false); +user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); +user_pref("browser.ssl_override_behavior", 1); +user_pref("browser.xul.error_pages.expert_bad_cert", true); +user_pref("_user.js.parrot", "1400 syntax error: the parrot's bereft of life!"); +user_pref("gfx.font_rendering.opentype_svg.enabled", false); +user_pref("_user.js.parrot", "1600 syntax error: the parrot rests in peace!"); +user_pref("network.http.referer.XOriginPolicy", 2); +user_pref("network.http.referer.XOriginTrimmingPolicy", 2); +user_pref("_user.js.parrot", "1700 syntax error: the parrot's bit the dust!"); +user_pref("privacy.userContext.enabled", true); +user_pref("privacy.userContext.ui.enabled", true); +user_pref("_user.js.parrot", "2000 syntax error: the parrot's snuffed it!"); +user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true); +user_pref("media.peerconnection.ice.default_address_only", true); +user_pref("media.eme.enabled", false); +user_pref("media.autoplay.blocking_policy", 2); +user_pref("_user.js.parrot", "2400 syntax error: the parrot's kicked the bucket!"); +user_pref("dom.disable_beforeunload", true); +user_pref("dom.disable_window_move_resize", true); +user_pref("dom.disable_open_during_load", true); +user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown"); +user_pref("_user.js.parrot", "2600 syntax error: the parrot's run down the curtain!"); +user_pref("accessibility.force_disabled", 1); +user_pref("beacon.enabled", false); +user_pref("browser.helperApps.deleteTempFileOnExit", true); +user_pref("browser.pagethumbnails.capturing_disabled", true); +user_pref("browser.uitour.enabled", false); +user_pref("browser.uitour.url", ""); +user_pref("devtools.chrome.enabled", false); +user_pref("devtools.debugger.remote-enabled", false); +user_pref("middlemouse.contentLoadURL", false); +user_pref("permissions.manager.defaultsUrl", ""); +user_pref("webchannel.allowObject.urlWhitelist", ""); +user_pref("network.IDN_show_punycode", true); +user_pref("pdfjs.disabled", false); +user_pref("pdfjs.enableScripting", false); +user_pref("network.protocol-handler.external.ms-windows-store", false); +user_pref("permissions.delegation.enabled", false); +user_pref("browser.download.useDownloadDir", false); +user_pref("browser.download.alwaysOpenPanel", false); +user_pref("browser.download.manager.addToRecentDocs", false); +user_pref("browser.download.always_ask_before_handling_new_types", true); +user_pref("extensions.enabledScopes", 5); +user_pref("extensions.autoDisableScopes", 15); +user_pref("extensions.postDownloadThirdPartyPrompt", false); +user_pref("_user.js.parrot", "2700 syntax error: the parrot's joined the bleedin' choir invisible!"); +user_pref("browser.contentblocking.category", "strict"); +user_pref("privacy.partition.serviceWorkers", true); +user_pref("_user.js.parrot", "2800 syntax error: the parrot's bleedin' demised!"); +user_pref("network.cookie.lifetimePolicy", 2); +user_pref("privacy.sanitize.sanitizeOnShutdown", true); +user_pref("privacy.clearOnShutdown.cache", true); +user_pref("privacy.clearOnShutdown.downloads", true); +user_pref("privacy.clearOnShutdown.formdata", true); +user_pref("privacy.clearOnShutdown.history", true); +user_pref("privacy.clearOnShutdown.sessions", true); +user_pref("privacy.clearOnShutdown.offlineApps", false); +user_pref("privacy.clearOnShutdown.cookies", false); +user_pref("privacy.cpd.cache", true); +user_pref("privacy.cpd.formdata", true); +user_pref("privacy.cpd.history", true); +user_pref("privacy.cpd.sessions", true); +user_pref("privacy.cpd.offlineApps", false); +user_pref("privacy.cpd.cookies", false); +user_pref("privacy.sanitize.timeSpan", 0); +user_pref("_user.js.parrot", "4500 syntax error: the parrot's popped 'is clogs"); +user_pref("privacy.resistFingerprinting", true); +user_pref("privacy.window.maxInnerWidth", 1600); +user_pref("privacy.window.maxInnerHeight", 900); +user_pref("privacy.resistFingerprinting.block_mozAddonManager", true); +user_pref("privacy.resistFingerprinting.letterboxing", true); +user_pref("browser.startup.blankWindow", false); user_pref("browser.display.use_system_colors", false); -user_pref("dom.image-lazy-loading.enabled", false) \ No newline at end of file +user_pref("widget.non-native-theme.enabled", true); +user_pref("browser.link.open_newwindow", 3); +user_pref("browser.link.open_newwindow.restriction", 0); +user_pref("webgl.disabled", true); +user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow"); +user_pref("_user.js.parrot", "5500 syntax error: this is an ex-parrot!"); +user_pref("_user.js.parrot", "6000 syntax error: the parrot's 'istory!"); +user_pref("extensions.blocklist.enabled", true); +user_pref("network.http.referer.spoofSource", false); +user_pref("security.dialog_enable_delay", 1000); +user_pref("privacy.firstparty.isolate", false); +user_pref("extensions.webcompat.enable_shims", true); +user_pref("security.tls.version.enable-deprecated", false); +user_pref("extensions.webcompat-reporter.enabled", false); +user_pref("security.pki.sha1_enforcement_level", 1); +user_pref("_user.js.parrot", "7000 syntax error: the parrot's pushing up daisies!"); +user_pref("_user.js.parrot", "8000 syntax error: the parrot's crossed the Jordan"); +user_pref("_user.js.parrot", "9000 syntax error: the parrot's cashed in 'is chips!"); +user_pref("browser.startup.homepage_override.mstone", "ignore"); +user_pref("browser.messaging-system.whatsNewPanel.enabled", false); +user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); +user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); +user_pref("_user.js.parrot", "9999 syntax error: the parrot's shuffled off 'is mortal coil!"); +user_pref("_user.js.parrot", "SUCCESS: No no he's not dead, he's, he's restin'!"); \ No newline at end of file diff --git a/src/profile/version.txt b/src/profile/version.txt index 27f9cd3..a8fdfda 100644 --- a/src/profile/version.txt +++ b/src/profile/version.txt @@ -1 +1 @@ -1.8.0 +1.8.1