Compare commits
117 Commits
Author | SHA1 | Date | |
---|---|---|---|
62f23d360d | |||
c78614fea5 | |||
44cc27b968 | |||
274748d08b | |||
b4840b7355 | |||
6072b8552e | |||
7c0070cd15 | |||
8083c6c652 | |||
d9d13fac70 | |||
75049fa08e | |||
113caaa922 | |||
bf1b923750 | |||
286122d492 | |||
9ebc0eae81 | |||
de6cdb7b42 | |||
fdeb86d356 | |||
b25cb2c9b3 | |||
515e52eeb2 | |||
616a839c8b | |||
da5ae47278 | |||
c37df87516 | |||
980c59d031 | |||
b8b5c45126 | |||
affc3e5d40 | |||
f225bbb35e | |||
6ed3aae543 | |||
aa54248eb8 | |||
9a5c2bbe42 | |||
fccccfedfa | |||
3b8baa4db4 | |||
31f1483aa7 | |||
1157eb666e | |||
c300648c22 | |||
267047f687 | |||
1f6c3348a3 | |||
47962f350b | |||
625d13d4a3 | |||
61aa5f4b1f | |||
d1d457a0fe | |||
cac93e0f48 | |||
e1401ea5d0 | |||
8ce0bd3f12 | |||
3c705909ea | |||
5db2119370 | |||
9f309457e6 | |||
1bab795f26 | |||
012e5d6d5b | |||
74f946bbe8 | |||
e606cd68bb | |||
a833bb30bd | |||
be5204bf76 | |||
7332ae013d | |||
7a008be8d7 | |||
4101a344a2 | |||
ff35bc7023 | |||
1249e78543 | |||
af1c32ccc1 | |||
50c2f33f55 | |||
6178b723f5 | |||
c71b30d5c1 | |||
7d66622db2 | |||
fe8616491a | |||
240b54d280 | |||
903da4bb7a | |||
ab936f08eb | |||
61431a027c | |||
8cca947702 | |||
ae888b9a06 | |||
e9c1d78a75 | |||
e930adf49d | |||
496db4a1f5 | |||
4cf2854896 | |||
9e3a834f88 | |||
8fd2874722 | |||
83f49f5b12 | |||
b7bb0b3da1 | |||
7d10266562 | |||
53a1e0ff0f | |||
524896c03f | |||
effe91b6f6 | |||
f0616b82d4 | |||
28153cc7a4 | |||
069f6fb107 | |||
6073584af8 | |||
a4ec776107 | |||
3b2c59f38c | |||
f0d9aad522 | |||
101d814777 | |||
ca5409b8b8 | |||
1397463841 | |||
fcfa56a4c9 | |||
8694c726c5 | |||
c2b4442e51 | |||
ac3b7163d8 | |||
14cd4268f4 | |||
db5f10764b | |||
f2895049f5 | |||
940808d3a2 | |||
1eb1b4c65f | |||
a9a178331e | |||
6a6e688c87 | |||
db3020c389 | |||
3f51a667ab | |||
1635421d0b | |||
fdcd79aee9 | |||
df325a0717 | |||
aa95cab914 | |||
fffba3dd6d | |||
b5a257a57c | |||
7cdf84bb26 | |||
375774687b | |||
d930a201dd | |||
f97f960b90 | |||
047a07a144 | |||
bf0e479172 | |||
9ae73cedc1 | |||
46be5415bb |
240
.github/workflows/ant.yml
vendored
Normal file
240
.github/workflows/ant.yml
vendored
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
# Mostly copied from i2p.i2p, by way of: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant
|
||||||
|
# zlatinb did it originally, now I maintain it(idk)
|
||||||
|
|
||||||
|
name: Java CI
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: dependencies
|
||||||
|
run: sudo apt install gettext golang-go git ant
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up JDK 21
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '21'
|
||||||
|
distribution: 'temurin'
|
||||||
|
- name : Generate override.properties
|
||||||
|
run: |
|
||||||
|
rm -f override.properties
|
||||||
|
echo "build.built-by=GitHub Actions" >> override.properties
|
||||||
|
echo "noExe=true" >> override.properties
|
||||||
|
- name: install crx3
|
||||||
|
run: go install github.com/mediabuyerbot/go-crx3/crx3@latest
|
||||||
|
- name: install dzip
|
||||||
|
run: go install github.com/delicb/dzip@latest
|
||||||
|
- name: install amo-version
|
||||||
|
run: go install github.com/eyedeekay/amo-version@a4f4119eac453a14d6b6184b656320eb72b5da3c
|
||||||
|
- name: install manifest-json-version
|
||||||
|
run: go install github.com/eyedeekay/manifest-json-version@latest
|
||||||
|
- run: git clone https://github.com/i2p/i2p.i2p ../i2p.i2p
|
||||||
|
- run: cd ../i2p.i2p && ant builddep
|
||||||
|
- name: build with Ant
|
||||||
|
run: |
|
||||||
|
export PATH=$PATH:$(go env GOPATH)/bin
|
||||||
|
ant distclean jpackage debian
|
||||||
|
- name: Upload Firefox Profile Strict
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2p.firefox.base.profile-${{ github.sha }}.zip
|
||||||
|
path: ./src/i2p.firefox.base.profile.zip
|
||||||
|
- name: Upload Firefox Profile Usability
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2p.firefox.usability.profile-${{ github.sha }}.zip
|
||||||
|
path: ./src/i2p.firefox.usability.profile.zip
|
||||||
|
- name: Upload Chromium Profile Strict
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2p.chromium.base.profile-${{ github.sha }}.zip
|
||||||
|
path: ./src/i2p.chromium.base.profile.zip
|
||||||
|
- name: Upload Chromium Profile Usability
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2p.chromium.usability.profile-${{ github.sha }}.zip
|
||||||
|
path: ./src/i2p.chromium.usability.profile.zip
|
||||||
|
- name: Upload i2pfirefox.jar
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pfirefox-${{ github.sha }}.jar
|
||||||
|
path: ./src/build/i2pfirefox.jar
|
||||||
|
- name: Upload i2pfirefox-plugin.jar
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pfirefox-plugin-${{ github.sha }}.jar
|
||||||
|
path: ./src/build/i2pfirefox-plugin.jar
|
||||||
|
- name: Upload i2pbrowser.tar.gz
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-${{ github.sha }}.tar.gz
|
||||||
|
path: ./i2pbrowser.tar.gz
|
||||||
|
- name: Upload i2pbrowser.deb
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser_${{ github.sha }}_amd64.deb
|
||||||
|
path: ./i2pbrowser_1.0.0_amd64.deb
|
||||||
|
- name: build plugin with Ant
|
||||||
|
run: |
|
||||||
|
export PATH=$PATH:$(go env GOPATH)/bin
|
||||||
|
ant distclean pluginzip
|
||||||
|
- name: Upload i2pfirefox.zip (unsigned plugin)
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pfirefox-${{ github.sha }}.zip
|
||||||
|
path: ./plugin.zip
|
||||||
|
|
||||||
|
|
||||||
|
buildrpm:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: fedora
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: dependencies
|
||||||
|
run: sudo yum install -y gettext golang-go git ant jq wget curl gpg xz ca-certificates rpm-build
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up JDK 21
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '21'
|
||||||
|
distribution: 'temurin'
|
||||||
|
- run: echo [Adoptium] >> /etc/yum.repos.d/adoptium.repo
|
||||||
|
- run: echo name=Adoptium >> /etc/yum.repos.d/adoptium.repo
|
||||||
|
- run: . /etc/os-release; echo baseurl=https://packages.adoptium.net/artifactory/rpm/fedora/$VERSION_ID/x86_64/ >> /etc/yum.repos.d/adoptium.repo
|
||||||
|
- run: echo enabled=1 >> /etc/yum.repos.d/adoptium.repo
|
||||||
|
- run: echo gpgcheck=1 >> /etc/yum.repos.d/adoptium.repo
|
||||||
|
- run: echo gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public >> /etc/yum.repos.d/adoptium.repo
|
||||||
|
- run: dnf clean all && rm -r /var/cache/dnf && dnf upgrade -y && dnf update -y
|
||||||
|
- run: dnf install -y temurin-21-jdk
|
||||||
|
- name: Generate override.properties
|
||||||
|
run: |
|
||||||
|
rm -f override.properties
|
||||||
|
echo "build.built-by=GitHub Actions" >> override.properties
|
||||||
|
echo "noExe=true" >> override.properties
|
||||||
|
- name: install crx3
|
||||||
|
run: go install github.com/mediabuyerbot/go-crx3/crx3@latest
|
||||||
|
- name: install dzip
|
||||||
|
run: go install github.com/delicb/dzip@latest
|
||||||
|
- name: install amo-version
|
||||||
|
run: go install github.com/eyedeekay/amo-version@a4f4119eac453a14d6b6184b656320eb72b5da3c
|
||||||
|
- name: install manifest-json-version
|
||||||
|
run: go install github.com/eyedeekay/manifest-json-version@latest
|
||||||
|
- run: git clone https://github.com/i2p/i2p.i2p ../i2p.i2p
|
||||||
|
- run: cd ../i2p.i2p && ant builddep
|
||||||
|
- name: build with Ant
|
||||||
|
run: |
|
||||||
|
export PATH=$PATH:$(go env GOPATH)/bin
|
||||||
|
ant distclean jpackage fedora
|
||||||
|
find . -name '*.rpm'
|
||||||
|
- name: Upload i2pbrowser.rpm
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-${{ github.sha }}.x86_64.rpm
|
||||||
|
path: ./i2pbrowser-1.0.0-1.x86_64.rpm
|
||||||
|
|
||||||
|
|
||||||
|
buildwin:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up JDK 21
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '21'
|
||||||
|
distribution: 'temurin'
|
||||||
|
- uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '1.21'
|
||||||
|
- name : Generate override.properties
|
||||||
|
run: |
|
||||||
|
bash -c 'rm -f override.properties'
|
||||||
|
bash -c 'echo "build.built-by=GitHub Actions" >> override.properties'
|
||||||
|
bash -c 'echo "noExe=true" >> override.properties'
|
||||||
|
- name: install crx3
|
||||||
|
run: go install github.com/mediabuyerbot/go-crx3/crx3@latest
|
||||||
|
- name: install dzip
|
||||||
|
run: go install github.com/delicb/dzip@latest
|
||||||
|
- name: install amo-version
|
||||||
|
run: go install github.com/eyedeekay/amo-version@a4f4119eac453a14d6b6184b656320eb72b5da3c
|
||||||
|
- name: install manifest-json-version
|
||||||
|
run: go install github.com/eyedeekay/manifest-json-version@latest
|
||||||
|
- run: git clone https://github.com/i2p/i2p.i2p ../i2p.i2p
|
||||||
|
- run: cd ../i2p.i2p && ant builddep
|
||||||
|
- name: build exe with Ant
|
||||||
|
run: |
|
||||||
|
ant windows
|
||||||
|
bash -c 'ls *.exe'
|
||||||
|
- name: Upload Firefox Profile EXE Installer
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-1.0.0-${{ github.sha }}.exe
|
||||||
|
path: ./i2pbrowser-1.0.0.exe
|
||||||
|
- name: build msi with Ant
|
||||||
|
run: |
|
||||||
|
ant windows-msi
|
||||||
|
bash -c 'ls *.msi'
|
||||||
|
- name: Upload Firefox Profile MSI Installer
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-1.0.0-${{ github.sha }}.msi
|
||||||
|
path: ./i2pbrowser-1.0.0.msi
|
||||||
|
- name: build portable zip with Ant
|
||||||
|
run: |
|
||||||
|
ant windows-portable
|
||||||
|
bash -c 'ls *.zip'
|
||||||
|
- name: Upload Firefox Profile Portable Zip
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-portable-${{ github.sha }}.zip
|
||||||
|
path: ./i2pbrowser-portable.zip
|
||||||
|
|
||||||
|
buildmac:
|
||||||
|
runs-on: macos-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up JDK 21
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '21'
|
||||||
|
distribution: 'temurin'
|
||||||
|
- uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '1.21'
|
||||||
|
- name : Generate override.properties
|
||||||
|
run: |
|
||||||
|
bash -c 'rm -f override.properties'
|
||||||
|
bash -c 'echo "build.built-by=GitHub Actions" >> override.properties'
|
||||||
|
bash -c 'echo "noExe=true" >> override.properties'
|
||||||
|
- name: install crx3
|
||||||
|
run: go install github.com/mediabuyerbot/go-crx3/crx3@latest
|
||||||
|
- name: install dzip
|
||||||
|
run: go install github.com/delicb/dzip@latest
|
||||||
|
- name: install amo-version
|
||||||
|
run: go install github.com/eyedeekay/amo-version@a4f4119eac453a14d6b6184b656320eb72b5da3c
|
||||||
|
- name: install manifest-json-version
|
||||||
|
run: go install github.com/eyedeekay/manifest-json-version@latest
|
||||||
|
- run: git clone https://github.com/i2p/i2p.i2p ../i2p.i2p
|
||||||
|
- run: cd ../i2p.i2p && ant builddep
|
||||||
|
- name: build dmg with Ant
|
||||||
|
run: |
|
||||||
|
ant macos
|
||||||
|
bash -c 'ls *.dmg'
|
||||||
|
- name: Upload Firefox Profile DMG Installer
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-1.0.0-${{ github.sha }}.dmg
|
||||||
|
path: ./i2pbrowser-1.0.0.dmg
|
||||||
|
- name: build pkg with Ant
|
||||||
|
run: |
|
||||||
|
ant macos-pkg
|
||||||
|
bash -c 'ls *.pkg'
|
||||||
|
- name: Upload Firefox Profile PKG Installer
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: i2pbrowser-1.0.0-${{ github.sha }}.pkg
|
||||||
|
path: ./i2pbrowser-1.0.0.pkg
|
64
.github/workflows/release.yml
vendored
Normal file
64
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
#on: [push]
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
# Sequence of patterns matched against refs/tags
|
||||||
|
tags:
|
||||||
|
- '*.*.*' # Release 1.2.3
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
sparse-checkout: |
|
||||||
|
CHANGES.md
|
||||||
|
sparse-checkout-cone-mode: false
|
||||||
|
- name: sleep 5 minutes
|
||||||
|
run: |
|
||||||
|
echo "sleeping 10 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 9 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 8 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 7 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 6 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 5 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 4 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 3 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 2 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
echo "sleeping 1 minutes to wait for artifacts"
|
||||||
|
sleep 1m
|
||||||
|
- name: Download artifacts
|
||||||
|
id: download-artifact
|
||||||
|
uses: dawidd6/action-download-artifact@v3
|
||||||
|
with:
|
||||||
|
skip_unpack: true
|
||||||
|
workflow: ant.yml
|
||||||
|
if_no_artifact_found: fail
|
||||||
|
- name: List artifacts
|
||||||
|
run: |
|
||||||
|
echo "" | tee -a CHANGES.md;
|
||||||
|
echo "## Checksums" | tee -a CHANGES.md;
|
||||||
|
echo "" | tee -a CHANGES.md;
|
||||||
|
echo "```" | tee -a CHANGES.md;
|
||||||
|
sha256sum *.* | tee -a CHANGES.md;
|
||||||
|
echo "```" | tee -a CHANGES.md;
|
||||||
|
echo "" | tee -a CHANGES.md;
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
artifacts: "*.*"
|
||||||
|
bodyFile: "CHANGES.md"
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -35,4 +35,5 @@ i2p.plugins.firefox/
|
|||||||
/systray.running
|
/systray.running
|
||||||
/.cache
|
/.cache
|
||||||
/.mozilla
|
/.mozilla
|
||||||
/i2p.plugins.firefox.torrent.zip
|
/i2p.plugins.firefox.torrent.zip
|
||||||
|
/plugin
|
||||||
|
953
CHANGES.html
953
CHANGES.html
@ -8,476 +8,496 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href="index.html">
|
</li>
|
||||||
index
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index
|
||||||
<li>
|
</a>
|
||||||
<a href="CHANGES.html">
|
</li>
|
||||||
CHANGES
|
<li>
|
||||||
</a>
|
<a href="CHANGES.html">
|
||||||
</li>
|
CHANGES
|
||||||
<li>
|
</a>
|
||||||
<a href="LICENSE.html">
|
</li>
|
||||||
LICENSE
|
<li>
|
||||||
</a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="VERSION.html">
|
</li>
|
||||||
VERSION
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="index.html">
|
</li>
|
||||||
index.html
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/BUILD.html">
|
</li>
|
||||||
docs/BUILD
|
<li>
|
||||||
</a>
|
<a href="docs/BUILD.html">
|
||||||
</li>
|
docs/BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PBrowser.html">
|
</li>
|
||||||
docs/I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PBrowser.html">
|
||||||
</li>
|
docs/I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PBrowserPlugin.html">
|
</li>
|
||||||
docs/I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="docs/I2PBrowserPlugin.html">
|
||||||
</li>
|
docs/I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromium.html">
|
</li>
|
||||||
docs/I2PChromium
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromium.html">
|
||||||
</li>
|
docs/I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
docs/I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
docs/I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileChecker.html">
|
</li>
|
||||||
docs/I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileChecker.html">
|
||||||
</li>
|
docs/I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
docs/I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
docs/I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PCommonBrowser.html">
|
</li>
|
||||||
docs/I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PCommonBrowser.html">
|
||||||
</li>
|
docs/I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefox.html">
|
</li>
|
||||||
docs/I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefox.html">
|
||||||
</li>
|
docs/I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
docs/I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
docs/I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PLibreWolf.html">
|
</li>
|
||||||
docs/I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="docs/I2PLibreWolf.html">
|
||||||
</li>
|
docs/I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/LINUX.html">
|
</li>
|
||||||
docs/LINUX
|
<li>
|
||||||
</a>
|
<a href="docs/LINUX.html">
|
||||||
</li>
|
docs/LINUX
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/OSX.html">
|
</li>
|
||||||
docs/OSX
|
<li>
|
||||||
</a>
|
<a href="docs/OSX.html">
|
||||||
</li>
|
docs/OSX
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/WINDOWS.html">
|
</li>
|
||||||
docs/WINDOWS
|
<li>
|
||||||
</a>
|
<a href="docs/WINDOWS.html">
|
||||||
</li>
|
docs/WINDOWS
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
</ul>
|
||||||
Hide Navigation
|
<br>
|
||||||
</a>
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
</a>
|
||||||
</a>
|
<h2>
|
||||||
<h2>
|
Thu, March 7
|
||||||
Tue, January 17
|
</h2>
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Remove HTTPS everywhere from all profiles
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Generate a Tor Browser install to go inside Linux jpackage portables
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sat, December 31
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add environment variables which customize behavior of Tor Browser
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sun, December 18
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Enable use as a Java I2P Console Plugin
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Tue, November 22
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Fix some minor issues from buildsystem refactor that surfaced during release
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
update to version 1.0.5
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sat, October 22
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add systray for launching browsers from our own GUI
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add
|
|
||||||
<code>
|
|
||||||
browser.config
|
|
||||||
</code>
|
|
||||||
file for customizing configuration
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Thu, October 20
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Complete the PWA/App mode
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sat, October 1
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Work around anti-automation measures on OSX by writing final command out to shell script and running that
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Deterministically generate .zip files
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add Tor Browser support to OSX
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Improve Tor Browser support on Linux
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sun, September 25
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Become version 1.0.0
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Wed, September 15
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add ant targets which auto-update the user.js
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Wed, September 14
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add ant targets which fetch Firefox addons from addons.mozilla.org
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sun, September 11
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Make the logging a little more sensible
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Tue, September 6
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Wait up to 5 seconds for the initializing headless Firefox instance to die on Windows
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add option to disable proxy pre-check by setting timeout to zero or less
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Tue, September 6
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Run headlessly on first-run on Windows.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add support for building an .exe package.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add support for building an .zip Windows portable package.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add support for building an .rpm package.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Destroy headless process if it goes too long.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Mon, September 5
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Fix several issues with running on Windows 11
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Make tunnel nicknames different to avoid double shared tunnels
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add support for building a .deb package.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add support for building an .msi package.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Fri, September 2
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Disable HTTPS only mode in favor of HTTPS-first mode to remove the interstitial on I2P sites.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Clearnet sites still choose HTTPS first and will silently deny downgrades but will not warn HTTP-only users.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Thu, September 1
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add a jpackage target. Add descriptions to release items.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Wed, August 31
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add unpacked extensions for Chromium profiles
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add Chromium flags from Ungoogled-Chromium documentation
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add Usability/Strict mode switching for Chromium
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Tue, August 30
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add Usability/Strict mode switching for Firefox
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Factor out common functions to own class
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sun, August 28
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Adds support for generically configuring a browser with environment variables.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Bugfix for MSEdgium support
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Add detachable version of launchers
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sat, August 27
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Added support for passing a URL as a parameter to the cli’s
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
revised test.sh
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Mon, August 22
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Completes support for auto-selecting
|
|
||||||
<em>
|
|
||||||
either
|
|
||||||
</em>
|
|
||||||
a Firefox or Chrome instance, automatically
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sat, August 21
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Adds support for passing the -private flag to start Firefox with –private-window and Chromium –incognito
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Fri, August 20
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Chromium is now a first-class citizen
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Fri, August 19
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Adds the ability to pass –private-window to Firefoxes and –incognito to Chromiums
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Switch Tor Browser to the top of the order on Windows to match i2p.firefox behavior
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Mon, August 8
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Add Chromium support. You heard me. Chromium support.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Update launcher script so it self-discovers the location of the script and uses that to find the bundled jar.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Sun, August 7
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Wrote the Javadoc
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Embedded the Firefox profile in the Jar so it always unpacks correctly
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
re-added Tor Browser support on Windows
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Fix false positives in validation routine
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Make constructors public
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Wait on processbuilder to close
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Saturday, August 6
|
|
||||||
</h2>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Implemented firefox detection
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Implemented directory setup
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Implemented processBuilder generator
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
re-implement Plugin functions with Destop GUI API.
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
</li>
|
||||||
</a>
|
<li>
|
||||||
|
Fix several NPE’s
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Delete redundant code
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
CI/CD improvements, packaging improvements
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<h2>
|
||||||
<div>
|
Tue, January 17
|
||||||
<a href="#show">
|
</h2>
|
||||||
Show license
|
<ul>
|
||||||
</a>
|
<li>
|
||||||
<div id="show">
|
Remove HTTPS everywhere from all profiles
|
||||||
<div id="hide">
|
</li>
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<li>
|
||||||
|
Generate a Tor Browser install to go inside Linux jpackage portables
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sat, December 31
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add environment variables which customize behavior of Tor Browser
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sun, December 18
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Enable use as a Java I2P Console Plugin
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Tue, November 22
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Fix some minor issues from buildsystem refactor that surfaced during release
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
update to version 1.0.5
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sat, October 22
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add systray for launching browsers from our own GUI
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add
|
||||||
|
<code>
|
||||||
|
browser.config
|
||||||
|
</code>
|
||||||
|
file for customizing configuration
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Thu, October 20
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Complete the PWA/App mode
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sat, October 1
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Work around anti-automation measures on OSX by writing final command out to shell script and running that
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Deterministically generate .zip files
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add Tor Browser support to OSX
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Improve Tor Browser support on Linux
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sun, September 25
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Become version 1.0.0
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Wed, September 15
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add ant targets which auto-update the user.js
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Wed, September 14
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add ant targets which fetch Firefox addons from addons.mozilla.org
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sun, September 11
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Make the logging a little more sensible
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Tue, September 6
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Wait up to 5 seconds for the initializing headless Firefox instance to die on Windows
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add option to disable proxy pre-check by setting timeout to zero or less
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Tue, September 6
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Run headlessly on first-run on Windows.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add support for building an .exe package.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add support for building an .zip Windows portable package.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add support for building an .rpm package.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Destroy headless process if it goes too long.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Mon, September 5
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Fix several issues with running on Windows 11
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Make tunnel nicknames different to avoid double shared tunnels
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add support for building a .deb package.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add support for building an .msi package.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Fri, September 2
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Disable HTTPS only mode in favor of HTTPS-first mode to remove the interstitial on I2P sites.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Clearnet sites still choose HTTPS first and will silently deny downgrades but will not warn HTTP-only users.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Thu, September 1
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add a jpackage target. Add descriptions to release items.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Wed, August 31
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add unpacked extensions for Chromium profiles
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add Chromium flags from Ungoogled-Chromium documentation
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add Usability/Strict mode switching for Chromium
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Tue, August 30
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add Usability/Strict mode switching for Firefox
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Factor out common functions to own class
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sun, August 28
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Adds support for generically configuring a browser with environment variables.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Bugfix for MSEdgium support
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Add detachable version of launchers
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sat, August 27
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Added support for passing a URL as a parameter to the cli’s
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
revised test.sh
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Mon, August 22
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Completes support for auto-selecting
|
||||||
|
<em>
|
||||||
|
either
|
||||||
|
</em>
|
||||||
|
a Firefox or Chrome instance, automatically
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sat, August 21
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Adds support for passing the -private flag to start Firefox with –private-window and Chromium –incognito
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Fri, August 20
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Chromium is now a first-class citizen
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Fri, August 19
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Adds the ability to pass –private-window to Firefoxes and –incognito to Chromiums
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Switch Tor Browser to the top of the order on Windows to match i2p.firefox behavior
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Mon, August 8
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Add Chromium support. You heard me. Chromium support.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Update launcher script so it self-discovers the location of the script and uses that to find the bundled jar.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Sun, August 7
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Wrote the Javadoc
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Embedded the Firefox profile in the Jar so it always unpacks correctly
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
re-added Tor Browser support on Windows
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Fix false positives in validation routine
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Make constructors public
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Wait on processbuilder to close
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2>
|
||||||
|
Saturday, August 6
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Implemented firefox detection
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Implemented directory setup
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Implemented processBuilder generator
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1320,9 +1340,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1331,7 +1352,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
Thu, March 7
|
||||||
|
------------
|
||||||
|
|
||||||
|
- re-implement Plugin functions with Destop GUI API.
|
||||||
|
- Fix several NPE's
|
||||||
|
- Delete redundant code
|
||||||
|
- CI/CD improvements, packaging improvements
|
||||||
|
|
||||||
Tue, January 17
|
Tue, January 17
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
1362
LICENSE.html
1362
LICENSE.html
File diff suppressed because it is too large
Load Diff
@ -55,7 +55,7 @@ For platform specific instructions, see
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
||||||
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.0.8/i2pfirefox.zip
|
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.3.0/i2pfirefox.zip
|
||||||
unzip i2pfirefox.zip
|
unzip i2pfirefox.zip
|
||||||
./i2pfirefox.cmd
|
./i2pfirefox.cmd
|
||||||
|
|
||||||
|
368
VERSION.html
368
VERSION.html
@ -8,206 +8,209 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href="index.html">
|
</li>
|
||||||
index
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index
|
||||||
<li>
|
</a>
|
||||||
<a href="CHANGES.html">
|
</li>
|
||||||
CHANGES
|
<li>
|
||||||
</a>
|
<a href="CHANGES.html">
|
||||||
</li>
|
CHANGES
|
||||||
<li>
|
</a>
|
||||||
<a href="LICENSE.html">
|
</li>
|
||||||
LICENSE
|
<li>
|
||||||
</a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="VERSION.html">
|
</li>
|
||||||
VERSION
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="index.html">
|
</li>
|
||||||
index.html
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/BUILD.html">
|
</li>
|
||||||
docs/BUILD
|
<li>
|
||||||
</a>
|
<a href="docs/BUILD.html">
|
||||||
</li>
|
docs/BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PBrowser.html">
|
</li>
|
||||||
docs/I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PBrowser.html">
|
||||||
</li>
|
docs/I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PBrowserPlugin.html">
|
</li>
|
||||||
docs/I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="docs/I2PBrowserPlugin.html">
|
||||||
</li>
|
docs/I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromium.html">
|
</li>
|
||||||
docs/I2PChromium
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromium.html">
|
||||||
</li>
|
docs/I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
docs/I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
docs/I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileChecker.html">
|
</li>
|
||||||
docs/I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileChecker.html">
|
||||||
</li>
|
docs/I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
docs/I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
docs/I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PCommonBrowser.html">
|
</li>
|
||||||
docs/I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PCommonBrowser.html">
|
||||||
</li>
|
docs/I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefox.html">
|
</li>
|
||||||
docs/I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefox.html">
|
||||||
</li>
|
docs/I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
docs/I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
docs/I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PLibreWolf.html">
|
</li>
|
||||||
docs/I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="docs/I2PLibreWolf.html">
|
||||||
</li>
|
docs/I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/LINUX.html">
|
</li>
|
||||||
docs/LINUX
|
<li>
|
||||||
</a>
|
<a href="docs/LINUX.html">
|
||||||
</li>
|
docs/LINUX
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/OSX.html">
|
</li>
|
||||||
docs/OSX
|
<li>
|
||||||
</a>
|
<a href="docs/OSX.html">
|
||||||
</li>
|
docs/OSX
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/WINDOWS.html">
|
</li>
|
||||||
docs/WINDOWS
|
<li>
|
||||||
</a>
|
<a href="docs/WINDOWS.html">
|
||||||
</li>
|
docs/WINDOWS
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
</ul>
|
||||||
Hide Navigation
|
<br>
|
||||||
</a>
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
</a>
|
||||||
</a>
|
<h1>
|
||||||
<h1>
|
Extension Versions
|
||||||
Extension Versions
|
</h1>
|
||||||
</h1>
|
<h2>
|
||||||
<h2>
|
Firefox
|
||||||
Firefox
|
</h2>
|
||||||
</h2>
|
<pre><code class="language-md">i2p-in-private-browsing
|
||||||
<pre><code class="language-md">i2p-in-private-browsing
|
1.48
|
||||||
1.44
|
https://addons.mozilla.org/firefox/downloads/file/4123613/i2p_in_private_browsing-1.48.xpi
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4020669/i2p_in_private_browsing-1.44.xpi
|
|
||||||
noscript
|
noscript
|
||||||
11.4.14
|
11.4.29
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4050735/noscript-11.4.14.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4206186/noscript-11.4.29.xpi
|
||||||
localcdn-fork-of-decentraleyes
|
localcdn-fork-of-decentraleyes
|
||||||
2.6.44
|
2.6.64
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4052425/localcdn_fork_of_decentraleyes-2.6.44.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4243456/localcdn_fork_of_decentraleyes-2.6.64.xpi
|
||||||
onion-in-container-browsing
|
onion-in-container-browsing
|
||||||
0.82
|
0.82
|
||||||
https://addons.mozilla.org/firefox/downloads/file/3904685/onion_in_container_browsing-0.82.xpi
|
https://addons.mozilla.org/firefox/downloads/file/3904685/onion_in_container_browsing-0.82.xpi
|
||||||
javascript-restrictor
|
javascript-restrictor
|
||||||
0.11.1
|
0.17
|
||||||
https://addons.mozilla.org/firefox/downloads/file/3950710/javascript_restrictor-0.11.1.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4190089/javascript_restrictor-0.17.xpi
|
||||||
ublock-origin
|
ublock-origin
|
||||||
1.46.0
|
1.56.0
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4047353/ublock_origin-1.46.0.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4237670/ublock_origin-1.56.0.xpi
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2>
|
<h2>
|
||||||
Chromium
|
Chromium
|
||||||
</h2>
|
</h2>
|
||||||
<pre><code class="language-md">__MSG_extensionName__
|
<pre><code class="language-md">__MSG_extensionName__
|
||||||
1.29
|
1.29
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
NoScript
|
NoScript
|
||||||
11.4.13
|
11.4.18
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
LocalCDN
|
LocalCDN
|
||||||
2.6.43
|
2.6.64
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
uBlock Origin
|
uBlock Origin
|
||||||
1.46.0
|
1.56.0
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
JShelter
|
__MSG_extensionName__
|
||||||
0.11.1
|
0.17
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<div id="sourcecode">
|
<div id="sourcecode">
|
||||||
<span id="sourcehead">
|
<span id="sourcehead">
|
||||||
<strong>
|
<strong>
|
||||||
Get the source code:
|
Get the source code:
|
||||||
</strong>
|
</strong>
|
||||||
</span>
|
</span>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="#show">
|
<a href="#show">
|
||||||
Show license
|
Show license
|
||||||
</a>
|
</a>
|
||||||
<div id="show">
|
<div id="show">
|
||||||
<div id="hide">
|
<div id="hide">
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1050,9 +1053,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1061,7 +1065,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
30
VERSION.md
30
VERSION.md
@ -6,23 +6,23 @@ Extension Versions
|
|||||||
|
|
||||||
```md
|
```md
|
||||||
i2p-in-private-browsing
|
i2p-in-private-browsing
|
||||||
1.44
|
1.48
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4020669/i2p_in_private_browsing-1.44.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4123613/i2p_in_private_browsing-1.48.xpi
|
||||||
noscript
|
noscript
|
||||||
11.4.14
|
11.4.29
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4050735/noscript-11.4.14.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4206186/noscript-11.4.29.xpi
|
||||||
localcdn-fork-of-decentraleyes
|
localcdn-fork-of-decentraleyes
|
||||||
2.6.44
|
2.6.64
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4052425/localcdn_fork_of_decentraleyes-2.6.44.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4243456/localcdn_fork_of_decentraleyes-2.6.64.xpi
|
||||||
onion-in-container-browsing
|
onion-in-container-browsing
|
||||||
0.82
|
0.82
|
||||||
https://addons.mozilla.org/firefox/downloads/file/3904685/onion_in_container_browsing-0.82.xpi
|
https://addons.mozilla.org/firefox/downloads/file/3904685/onion_in_container_browsing-0.82.xpi
|
||||||
javascript-restrictor
|
javascript-restrictor
|
||||||
0.11.1
|
0.17
|
||||||
https://addons.mozilla.org/firefox/downloads/file/3950710/javascript_restrictor-0.11.1.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4190089/javascript_restrictor-0.17.xpi
|
||||||
ublock-origin
|
ublock-origin
|
||||||
1.46.0
|
1.56.0
|
||||||
https://addons.mozilla.org/firefox/downloads/file/4047353/ublock_origin-1.46.0.xpi
|
https://addons.mozilla.org/firefox/downloads/file/4237670/ublock_origin-1.56.0.xpi
|
||||||
```
|
```
|
||||||
|
|
||||||
## Chromium
|
## Chromium
|
||||||
@ -32,15 +32,15 @@ __MSG_extensionName__
|
|||||||
1.29
|
1.29
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
NoScript
|
NoScript
|
||||||
11.4.13
|
11.4.18
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
LocalCDN
|
LocalCDN
|
||||||
2.6.43
|
2.6.64
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
uBlock Origin
|
uBlock Origin
|
||||||
1.46.0
|
1.56.0
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
JShelter
|
__MSG_extensionName__
|
||||||
0.11.1
|
0.17
|
||||||
https://clients2.google.com/service/update2/crx
|
https://clients2.google.com/service/update2/crx
|
||||||
```
|
```
|
||||||
|
301
build.xml
301
build.xml
@ -175,6 +175,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
|
|
||||||
<target name="jar" depends="versionMd,i2pFirefoxBaseProfileZip,i2pFirefoxUsabilityProfileZip,i2pChromiumBaseProfileZip,i2pChromiumUsabilityProfileZip">
|
<target name="jar" depends="versionMd,i2pFirefoxBaseProfileZip,i2pFirefoxUsabilityProfileZip,i2pChromiumBaseProfileZip,i2pChromiumUsabilityProfileZip">
|
||||||
<ant dir="src" target="jar" />
|
<ant dir="src" target="jar" />
|
||||||
|
<ant dir="src" target="pluginjar" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="i2pFirefoxBaseProfileZip">
|
<target name="i2pFirefoxBaseProfileZip">
|
||||||
@ -327,7 +328,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
|
|
||||||
<target name="buildNum">
|
<target name="buildNum">
|
||||||
<buildnumber file="scripts/build.number" />
|
<buildnumber file="scripts/build.number" />
|
||||||
<property name="release.number" value="1.0.8" />
|
<property name="release.number" value="1.3.0" />
|
||||||
<exec executable="echo" osfamily="unix">
|
<exec executable="echo" osfamily="unix">
|
||||||
<arg value="${release.number}-${build.number}" />
|
<arg value="${release.number}-${build.number}" />
|
||||||
</exec>
|
</exec>
|
||||||
@ -339,6 +340,44 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="pluginzip" depends="all, buildNum">
|
||||||
|
<delete>
|
||||||
|
<!-- in installer but not update -->
|
||||||
|
<fileset dir="plugin/" includes="i2ptunnel.config i2pfirefox.config eepsite/docroot/index.html eepsite/docroot/robots.txt" />
|
||||||
|
</delete>
|
||||||
|
<delete dir="plugin/eepsite/docroot/torrents/" />
|
||||||
|
<!-- get version number -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- make the update xpi2p -->
|
||||||
|
<!-- this contains everything except i2ptunnel.config -->
|
||||||
|
<copy file="LICENSE.md" todir="plugin/" overwrite="true" />
|
||||||
|
<copy file="README.md" todir="plugin/" overwrite="true" />
|
||||||
|
<copy file="CHANGES.md" todir="plugin/" overwrite="true" />
|
||||||
|
<copy file="scripts/plugin.config" todir="plugin/" overwrite="true" />
|
||||||
|
<mkdir dir="plugin/lib/" />
|
||||||
|
<copy file="src/build/i2pfirefox-plugin.jar" todir="plugin/lib/" overwrite="true" />
|
||||||
|
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
||||||
|
<arg value="update-only=true" />
|
||||||
|
</exec>
|
||||||
|
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
||||||
|
<arg value="version=${release.number}-${build.number}" />
|
||||||
|
</exec>
|
||||||
|
|
||||||
|
<!-- make the install xpi2p -->
|
||||||
|
<copy file="scripts/plugin.config" todir="plugin/" overwrite="true" />
|
||||||
|
<!-- Files in installer but not update. Be sure to Add to delete fileset above and clean target below -->
|
||||||
|
<copy file="scripts/i2ptunnel.config" todir="plugin/" overwrite="true" />
|
||||||
|
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
||||||
|
<arg value="version=${release.number}-${build.number}" />
|
||||||
|
</exec>
|
||||||
|
<exec executable="zip">
|
||||||
|
<arg value="-r"/>
|
||||||
|
<arg value="plugin.zip"/>
|
||||||
|
<arg value="plugin"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="plugin" depends="all, buildNum">
|
<target name="plugin" depends="all, buildNum">
|
||||||
<delete>
|
<delete>
|
||||||
<!-- in installer but not update -->
|
<!-- in installer but not update -->
|
||||||
@ -355,7 +394,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
<copy file="CHANGES.md" todir="plugin/" overwrite="true" />
|
<copy file="CHANGES.md" todir="plugin/" overwrite="true" />
|
||||||
<copy file="scripts/plugin.config" todir="plugin/" overwrite="true" />
|
<copy file="scripts/plugin.config" todir="plugin/" overwrite="true" />
|
||||||
<mkdir dir="plugin/lib/" />
|
<mkdir dir="plugin/lib/" />
|
||||||
<copy file="src/build/i2pfirefox.jar" todir="plugin/lib/" overwrite="true" />
|
<copy file="src/build/i2pfirefox-plugin.jar" todir="plugin/lib/" overwrite="true" />
|
||||||
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
||||||
<arg value="update-only=true" />
|
<arg value="update-only=true" />
|
||||||
</exec>
|
</exec>
|
||||||
@ -368,12 +407,6 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
<equals arg1="${release.password.su3}" arg2=""/>
|
<equals arg1="${release.password.su3}" arg2=""/>
|
||||||
</condition>
|
</condition>
|
||||||
</fail>
|
</fail>
|
||||||
<!-- this will fail if no su3 keys exist, as it needs the password twice -->
|
|
||||||
<exec executable="scripts/makeplugin.sh" inputstring="${release.password.su3}" failonerror="true" >
|
|
||||||
<arg value="plugin" />
|
|
||||||
</exec>
|
|
||||||
<move file="i2pfirefox.xpi2p" tofile="i2pfirefox-update.xpi2p" overwrite="true" />
|
|
||||||
<move file="i2pfirefox.su3" tofile="i2pfirefox-update.su3" overwrite="true" />
|
|
||||||
|
|
||||||
<!-- make the install xpi2p -->
|
<!-- make the install xpi2p -->
|
||||||
<copy file="scripts/plugin.config" todir="plugin/" overwrite="true" />
|
<copy file="scripts/plugin.config" todir="plugin/" overwrite="true" />
|
||||||
@ -382,14 +415,13 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
<exec executable="echo" osfamily="unix" failonerror="true" output="plugin/plugin.config" append="true">
|
||||||
<arg value="version=${release.number}-${build.number}" />
|
<arg value="version=${release.number}-${build.number}" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<exec executable="scripts/makeplugin.sh" inputstring="${release.password.su3}" failonerror="true" >
|
<exec executable="scripts/makeplugin.sh" inputstring="${release.password.su3}" failonerror="true" >
|
||||||
<arg value="plugin" />
|
<arg value="plugin" />
|
||||||
</exec>
|
</exec>
|
||||||
<mkdir dir="i2p.plugins.firefox" />
|
<mkdir dir="i2p.plugins.firefox" />
|
||||||
<copy file="i2pfirefox.su3" todir="i2p.plugins.firefox" overwrite="true" />
|
<copy file="i2pfirefox.su3" todir="i2p.plugins.firefox" overwrite="true" />
|
||||||
<copy file="i2pfirefox-update.su3" todir="i2p.plugins.firefox" overwrite="true" />
|
|
||||||
<copy file="i2pfirefox.xpi2p" todir="i2p.plugins.firefox" overwrite="true" />
|
<copy file="i2pfirefox.xpi2p" todir="i2p.plugins.firefox" overwrite="true" />
|
||||||
<copy file="i2pfirefox-update.xpi2p" todir="i2p.plugins.firefox" overwrite="true" />
|
|
||||||
</target>
|
</target>
|
||||||
<target name="torrent">
|
<target name="torrent">
|
||||||
<delete file="i2p.plugins.firefox.torrent" failonerror="false" />
|
<delete file="i2p.plugins.firefox.torrent" failonerror="false" />
|
||||||
@ -427,7 +459,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
<exec executable="clang-format">
|
<exec executable="clang-format">
|
||||||
<arg value="-i"/>
|
<arg value="-i"/>
|
||||||
<arg value="src/java/net/i2p/i2pfirefox/I2PBrowser.java"/>
|
<arg value="src/java/net/i2p/i2pfirefox/I2PBrowser.java"/>
|
||||||
<arg value="src/java/net/i2p/i2pfirefox/I2PBrowserPlugin.java"/>
|
<arg value="src/plugin/net/i2p/i2pfirefox/plugin/plugin/I2PBrowserPlugin.java"/>
|
||||||
<arg value="src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java"/>
|
<arg value="src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java"/>
|
||||||
<arg value="src/java/net/i2p/i2pfirefox/I2PChromium.java"/>
|
<arg value="src/java/net/i2p/i2pfirefox/I2PChromium.java"/>
|
||||||
<arg value="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java"/>
|
<arg value="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java"/>
|
||||||
@ -485,7 +517,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
<exec executable="jpackage" failonerror="true">
|
<exec executable="jpackage" failonerror="true">
|
||||||
<arg value="--type"/> <arg value="app-image"/>
|
<arg value="--type"/> <arg value="app-image"/>
|
||||||
<arg value="--name"/> <arg value="i2pbrowser"/>
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
<arg value="--app-version"/> <arg value="${release_number}"/>
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
<arg value="--app-content"/> <arg value="etc/scripts/torbrowser.sh"/>
|
<arg value="--app-content"/> <arg value="etc/scripts/torbrowser.sh"/>
|
||||||
<arg value="--input"/> <arg value="src/build"/>
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
@ -513,17 +545,248 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
|
|||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
<target name="debian" depends="jar">
|
<target name="debian" depends="jar">
|
||||||
<exec executable="bash" failonerror="true">
|
<exec executable="jpackage" failonerror="true">
|
||||||
<arg value="--verbose"/>
|
<arg value="--type"/> <arg value="deb"/>
|
||||||
<arg value="-c"/>
|
<arg value="--linux-deb-maintainer"/> <arg value="hankhill19580@gmail.com"/>
|
||||||
<arg value="./debian.sh"/>
|
<arg value="--linux-menu-group"/> <arg value="Network;WebBrowser;P2P"/>
|
||||||
|
<arg value="--linux-app-category"/> <arg value="Network"/>
|
||||||
|
<arg value="--linux-package-deps"/> <arg value="firefox|chromium|brave|firefox-esr|librewolf|icecat"/>
|
||||||
|
<arg value="--linux-shortcut"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="debian-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--type"/> <arg value="deb"/>
|
||||||
|
<arg value="--linux-deb-maintainer"/> <arg value="hankhill19580@gmail.com"/>
|
||||||
|
<arg value="--linux-menu-group"/> <arg value="Network;WebBrowser;P2P"/>
|
||||||
|
<arg value="--linux-app-category"/> <arg value="Network"/>
|
||||||
|
<arg value="--linux-package-deps"/> <arg value="firefox|chromium|brave|firefox-esr|librewolf|icecat"/>
|
||||||
|
<arg value="--linux-shortcut"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
<target name="fedora" depends="jar">
|
<target name="fedora" depends="jar">
|
||||||
<exec executable="bash" failonerror="true">
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--type"/> <arg value="rpm"/>
|
||||||
|
<arg value="--linux-menu-group"/> <arg value="Network;WebBrowser;P2P"/>
|
||||||
|
<arg value="--linux-app-category"/> <arg value="Network"/>
|
||||||
|
<arg value="--linux-package-deps"/> <arg value="firefox|chromium|brave|firefox-esr|librewolf|icecat"/>
|
||||||
|
<arg value="--linux-shortcut"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="fedora-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--type"/> <arg value="rpm"/>
|
||||||
|
<arg value="--linux-menu-group"/> <arg value="Network;WebBrowser;P2P"/>
|
||||||
|
<arg value="--linux-app-category"/> <arg value="Network"/>
|
||||||
|
<arg value="--linux-package-deps"/> <arg value="firefox|chromium|brave|firefox-esr|librewolf|icecat"/>
|
||||||
|
<arg value="--linux-shortcut"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="windows" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
<arg value="--verbose"/>
|
<arg value="--verbose"/>
|
||||||
<arg value="-c"/>
|
<arg value="--type"/> <arg value="exe"/>
|
||||||
<arg value="./fedora.sh"/>
|
<arg value="--win-dir-chooser"/>
|
||||||
|
<arg value="--win-help-url"/> <arg value="https://geti2p.net"/>
|
||||||
|
<arg value="--win-menu"/>
|
||||||
|
<arg value="--win-menu-group"/> <arg value="I2P Browser Configurer"/>
|
||||||
|
<arg value="--win-shortcut"/>
|
||||||
|
<arg value="--win-shortcut-prompt"/>
|
||||||
|
<arg value="--win-per-user-install"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="windows-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="exe"/>
|
||||||
|
<arg value="--win-dir-chooser"/>
|
||||||
|
<arg value="--win-help-url"/> <arg value="https://geti2p.net"/>
|
||||||
|
<arg value="--win-menu"/>
|
||||||
|
<arg value="--win-menu-group"/> <arg value="I2P Browser Configurer"/>
|
||||||
|
<arg value="--win-shortcut"/>
|
||||||
|
<arg value="--win-shortcut-prompt"/>
|
||||||
|
<arg value="--win-per-user-install"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="windows-msi" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="msi"/>
|
||||||
|
<arg value="--win-dir-chooser"/>
|
||||||
|
<arg value="--win-help-url"/> <arg value="https://geti2p.net"/>
|
||||||
|
<arg value="--win-menu"/>
|
||||||
|
<arg value="--win-menu-group"/> <arg value="I2P Browser Configurer"/>
|
||||||
|
<arg value="--win-shortcut"/>
|
||||||
|
<arg value="--win-shortcut-prompt"/>
|
||||||
|
<arg value="--win-per-user-install"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="windows-msi-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="msi"/>
|
||||||
|
<arg value="--win-dir-chooser"/>
|
||||||
|
<arg value="--win-help-url"/> <arg value="https://geti2p.net"/>
|
||||||
|
<arg value="--win-menu"/>
|
||||||
|
<arg value="--win-menu-group"/> <arg value="I2P Browser Configurer"/>
|
||||||
|
<arg value="--win-shortcut"/>
|
||||||
|
<arg value="--win-shortcut-prompt"/>
|
||||||
|
<arg value="--win-per-user-install"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="windows-portable" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="app-image"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser-portable"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
<copy file="LICENSE.md" todir="i2pbrowser-portable" overwrite="true"/>
|
||||||
|
<delete file="i2pbrowser-portable.zip"/>
|
||||||
|
<exec executable="powershell" failonerror="false">
|
||||||
|
<arg value="Compress-Archive"/>
|
||||||
|
<arg value="-LiteralPath"/> <arg value="i2pbrowser-portable"/>
|
||||||
|
<arg value="-DestinationPath"/> <arg value="i2pbrowser-portable.zip"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="windows-portable-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="app-image"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser-portable"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
<copy file="LICENSE.md" todir="i2pbrowser-portable" overwrite="true"/>
|
||||||
|
<delete file="i2pbrowser-portable.zip"/>
|
||||||
|
<exec executable="powershell" failonerror="false">
|
||||||
|
<arg value="Compress-Archive"/>
|
||||||
|
<arg value="-LiteralPath"/> <arg value="i2pbrowser-portable"/>
|
||||||
|
<arg value="-DestinationPath"/> <arg value="i2pbrowser-portable-${release.number}.zip"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="macos" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="dmg"/>
|
||||||
|
<arg value="--mac-package-name"/> <arg value="I2P Browser"/>
|
||||||
|
<arg value="--mac-app-category"/> <arg value="Reference"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="macos-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="dmg"/>
|
||||||
|
<arg value="--mac-package-name"/> <arg value="I2P Browser"/>
|
||||||
|
<arg value="--mac-app-category"/> <arg value="Reference"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="macos-pkg" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="pkg"/>
|
||||||
|
<arg value="--mac-package-name"/> <arg value="I2P Browser"/>
|
||||||
|
<arg value="--mac-app-category"/> <arg value="Reference"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="1.0.0"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
<target name="macos-pkg-release" depends="jar">
|
||||||
|
<exec executable="jpackage" failonerror="true">
|
||||||
|
<arg value="--verbose"/>
|
||||||
|
<arg value="--type"/> <arg value="pkg"/>
|
||||||
|
<arg value="--mac-package-name"/> <arg value="I2P Browser"/>
|
||||||
|
<arg value="--mac-app-category"/> <arg value="Reference"/>
|
||||||
|
<arg value="--license-file"/> <arg value="LICENSE.md"/>
|
||||||
|
<arg value="--name"/> <arg value="i2pbrowser"/>
|
||||||
|
<arg value="--icon"/> <arg value="src/icon.png"/>
|
||||||
|
<arg value="--app-version"/> <arg value="${release.number}"/>
|
||||||
|
<arg value="--input"/> <arg value="src/build"/>
|
||||||
|
<arg value="--main-jar"/> <arg value="i2pfirefox.jar"/>
|
||||||
|
<arg value="--main-class"/> <arg value="net.i2p.i2pfirefox.I2PBrowser"/>
|
||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
export GITHUB_USER=eyedeekay
|
export GITHUB_USER=eyedeekay
|
||||||
export GITHUB_REPO=i2p.plugins.firefox
|
export GITHUB_REPO=i2p.plugins.firefox
|
||||||
export GITHUB_NAME="Linux portable zips become tar.gz's, HTTPS Everywhere is completely deprecated, Linux portable zips default to Tor Browser"
|
export GITHUB_NAME="Updates extensions, plugin support temporarily removed(Stay on the old version)"
|
||||||
export GITHUB_DESCRIPTION=$(cat CHANGES.md VERSION.md)
|
export GITHUB_DESCRIPTION=$(cat CHANGES.md VERSION.md)
|
||||||
export GITHUB_TAG=1.0.8
|
export GITHUB_TAG=1.3.1
|
24
darklight.css
Normal file
24
darklight.css
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/* edgar darklight CSS file */
|
||||||
|
#checkboxDarkLight:checked + .container {
|
||||||
|
background-color: #202020;
|
||||||
|
filter: invert(100%);
|
||||||
|
}
|
||||||
|
#checkboxDarkLight{
|
||||||
|
appearance: none;
|
||||||
|
width: 80px;
|
||||||
|
height: 40px;
|
||||||
|
background: black;
|
||||||
|
border-radius: 22px;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
#checkboxDarkLight::before{
|
||||||
|
content: '';
|
||||||
|
width: 40px;
|
||||||
|
height: 35px;
|
||||||
|
background-color:white;
|
||||||
|
border-radius: 35px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: .3s linear;
|
||||||
|
}
|
||||||
|
|
9
debian.sh → debian-torbrowser.sh
Executable file → Normal file
9
debian.sh → debian-torbrowser.sh
Executable file → Normal file
@ -1,7 +1,11 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
# debian build which automatically configures Tor Browser.
|
||||||
|
# I do not think that it has write permission to it's own directory, making Tor Browser updates probably impossible.
|
||||||
|
# Don't use it yet.
|
||||||
. ./config.sh
|
. ./config.sh
|
||||||
|
ant jpackage
|
||||||
jpackage --verbose \
|
jpackage --verbose \
|
||||||
|
--app-image i2pbrowser \
|
||||||
--type deb \
|
--type deb \
|
||||||
--linux-deb-maintainer hankhill19580@gmail.com \
|
--linux-deb-maintainer hankhill19580@gmail.com \
|
||||||
--linux-menu-group "Network;WebBrowser;P2P" \
|
--linux-menu-group "Network;WebBrowser;P2P" \
|
||||||
@ -12,6 +16,3 @@ jpackage --verbose \
|
|||||||
--name i2pbrowser \
|
--name i2pbrowser \
|
||||||
--icon src/icon.png \
|
--icon src/icon.png \
|
||||||
--app-version "$GITHUB_TAG" \
|
--app-version "$GITHUB_TAG" \
|
||||||
--input src/build \
|
|
||||||
--main-jar i2pfirefox.jar \
|
|
||||||
--main-class net.i2p.i2pfirefox.I2PBrowser
|
|
992
docs/BUILD.html
992
docs/BUILD.html
File diff suppressed because it is too large
Load Diff
2358
docs/I2PBrowser.html
2358
docs/I2PBrowser.html
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -8,373 +8,386 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
Class I2PChromiumProfileBuilder
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java">
|
|
||||||
[src]
|
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
<h1>
|
||||||
<blockquote>
|
Class I2PChromiumProfileBuilder
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
*/
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
*/
|
Access: public
|
||||||
|
<br />
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
> I2PChromiumProfileBuilder.java Copyright C 2022 idk
|
||||||
|
<a href="mailto:hankhill19580@gmail.com">
|
||||||
|
hankhill19580@gmail.com
|
||||||
|
</a>
|
||||||
|
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PChromiumProfileBuilder is a that builds a profile directory which contains the I2P browser profile for the Chromium browser family. It manages the base profile directory and copies it’s contents to the active profile directory which is actually used by Chromium.
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
<p>
|
||||||
<p>
|
Author: idk
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
> I2PChromiumProfileBuilder.java Copyright C 2022 idk
|
|
||||||
<a href="mailto:hankhill19580@gmail.com">
|
|
||||||
hankhill19580@gmail.com
|
|
||||||
</a>
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PChromiumProfileBuilder is a that builds a profile directory which contains the I2P browser profile for the Chromium browser family. It manages the base profile directory and copies it’s contents to the active profile directory which is actually used by Chromium.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Author: idk
|
|
||||||
<br />
|
|
||||||
Parent class: I2PChromiumProfileChecker
|
|
||||||
<br />
|
|
||||||
package: net.i2p.i2pfirefox
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Dependencies
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<br />
|
<br />
|
||||||
<summary>
|
Parent class: I2PChromiumProfileChecker
|
||||||
|
<br />
|
||||||
|
package: net.i2p.i2pfirefox
|
||||||
|
</p>
|
||||||
|
<h2>
|
||||||
|
Dependencies
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
<details>
|
||||||
<br />
|
<br />
|
||||||
Show dependencies
|
<summary>
|
||||||
|
<br />
|
||||||
|
Show dependencies
|
||||||
|
<br />
|
||||||
|
</summary>
|
||||||
<br />
|
<br />
|
||||||
</summary>
|
<ul>
|
||||||
<br />
|
<br />
|
||||||
<ul>
|
<li>
|
||||||
|
java.io.File
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
</details>
|
||||||
java.io.File
|
</p>
|
||||||
</li>
|
<h2>
|
||||||
</ul>
|
Member Variables
|
||||||
<br />
|
</h2>
|
||||||
</details>
|
<h4>
|
||||||
</p>
|
boolean usability
|
||||||
<h2>
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L">
|
||||||
Member Variables
|
[src]
|
||||||
</h2>
|
</a>
|
||||||
<h4>
|
</h4>
|
||||||
boolean usability
|
<blockquote></blockquote>
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
<blockquote></blockquote>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Methods
|
|
||||||
</h2>
|
|
||||||
<h3>
|
|
||||||
baseProfileDir
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L26">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: private
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| file | String | |
|
|
||||||
<br />
|
|
||||||
| mode | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
baseProfileDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L50">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| mode | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
runtimeDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L74">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the runtime directory creating it if create=true
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: the runtime directory or null if it could not be created
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| create | boolean | if true create the runtime directory if it does not exist |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
runtimeDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L85">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the correct runtime directory
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: the runtime directory or null if it could not be created or found
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
This method has no parameters.
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
usabilityMode
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L100">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
This method has no parameters.
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
copyBaseProfiletoProfile
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L111">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Copy the inert base profile directory to the runtime profile directory
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
This method has no parameters.
|
|
||||||
</p>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Access: public
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
<br />
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<h2>
|
||||||
<div>
|
Methods
|
||||||
<a href="#show">
|
</h2>
|
||||||
Show license
|
<h3>
|
||||||
</a>
|
baseProfileDir
|
||||||
<div id="show">
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L26">
|
||||||
<div id="hide">
|
[src]
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: private
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| file | String | |
|
||||||
|
<br />
|
||||||
|
| mode | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
baseProfileDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L50">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| mode | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
runtimeDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L74">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the runtime directory creating it if create=true
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: the runtime directory or null if it could not be created
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| create | boolean | if true create the runtime directory if it does not exist |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
runtimeDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L85">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the correct runtime directory
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: the runtime directory or null if it could not be created or found
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
This method has no parameters.
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
usabilityMode
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L100">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
This method has no parameters.
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
copyBaseProfiletoProfile
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileBuilder.java#L111">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Copy the inert base profile directory to the runtime profile directory
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
This method has no parameters.
|
||||||
|
</p>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1217,9 +1230,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1228,7 +1242,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,346 +8,359 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
Class I2PChromiumProfileChecker
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java">
|
|
||||||
[src]
|
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
<h1>
|
||||||
<blockquote>
|
Class I2PChromiumProfileChecker
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
*/
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
*/
|
Access: public
|
||||||
|
<br />
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
> I2PChromiumProfileChecker.java Copyright C 2022 idk
|
||||||
|
<a href="mailto:hankhill19580@gmail.com">
|
||||||
|
hankhill19580@gmail.com
|
||||||
|
</a>
|
||||||
|
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PChromiumProfileChecker is a that checks if the Chromium profile directory exists and is valid.
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
<p>
|
||||||
<p>
|
Author: idk
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
> I2PChromiumProfileChecker.java Copyright C 2022 idk
|
|
||||||
<a href="mailto:hankhill19580@gmail.com">
|
|
||||||
hankhill19580@gmail.com
|
|
||||||
</a>
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PChromiumProfileChecker is a that checks if the Chromium profile directory exists and is valid.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Author: idk
|
|
||||||
<br />
|
|
||||||
Parent class: I2PCommonBrowser
|
|
||||||
<br />
|
|
||||||
package: net.i2p.i2pfirefox
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Dependencies
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<br />
|
<br />
|
||||||
<summary>
|
Parent class: I2PCommonBrowser
|
||||||
|
<br />
|
||||||
|
package: net.i2p.i2pfirefox
|
||||||
|
</p>
|
||||||
|
<h2>
|
||||||
|
Dependencies
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
<details>
|
||||||
<br />
|
<br />
|
||||||
Show dependencies
|
<summary>
|
||||||
|
<br />
|
||||||
|
Show dependencies
|
||||||
|
<br />
|
||||||
|
</summary>
|
||||||
<br />
|
<br />
|
||||||
</summary>
|
<ul>
|
||||||
<br />
|
<br />
|
||||||
<ul>
|
<li>
|
||||||
|
java.io.File
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
</details>
|
||||||
java.io.File
|
</p>
|
||||||
</li>
|
<h2>
|
||||||
</ul>
|
No member variables in this class
|
||||||
<br />
|
</h2>
|
||||||
</details>
|
<h2>
|
||||||
</p>
|
Methods
|
||||||
<h2>
|
</h2>
|
||||||
No member variables in this class
|
<h3>
|
||||||
</h2>
|
main
|
||||||
<h2>
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L29">
|
||||||
Methods
|
[src]
|
||||||
</h2>
|
</a>
|
||||||
<h3>
|
</h3>
|
||||||
main
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L29">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Output feedback if the profile directory is valid or invalid @description Output feedback if the profile directory is valid or invalid @args unused
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Modifiers: static
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: void
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| args | String[] | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
profileDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L50">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the profile directory creating it if necessary
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| base | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
validateProfileDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L61">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Return true if the profile directory is valid.
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if the profile directory is valid false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profileDirectory | String | the profile directory to check |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
validateFile
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L92">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Return true if the file is valid.
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if the file is valid false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| file | String | the file to check |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
validateExtensionDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L119">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Return true if the extension directory is valid.
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if the extension directory is valid false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| extensionDirectory | String | the extension directory to check |
|
|
||||||
</p>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Description: Output feedback if the profile directory is valid or invalid @description Output feedback if the profile directory is valid or invalid @args unused
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
<br />
|
||||||
</a>
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Modifiers: static
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: void
|
||||||
|
<br />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<p>
|
||||||
<div>
|
| Name | Type | Description |
|
||||||
<a href="#show">
|
<br />
|
||||||
Show license
|
| —– | —– | —– |
|
||||||
</a>
|
<br />
|
||||||
<div id="show">
|
| args | String[] | |
|
||||||
<div id="hide">
|
</p>
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<h3>
|
||||||
|
profileDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L50">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the profile directory creating it if necessary
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| base | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
validateProfileDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L61">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Return true if the profile directory is valid.
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the profile directory is valid false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profileDirectory | String | the profile directory to check |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
validateFile
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L92">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Return true if the file is valid.
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the file is valid false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| file | String | the file to check |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
validateExtensionDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileChecker.java#L119">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Return true if the extension directory is valid.
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the extension directory is valid false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| extensionDirectory | String | the extension directory to check |
|
||||||
|
</p>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1190,9 +1203,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1201,7 +1215,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,264 +8,277 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
Class I2PChromiumProfileUnpacker
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileUnpacker.java">
|
|
||||||
[src]
|
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
<h1>
|
||||||
<blockquote>
|
Class I2PChromiumProfileUnpacker
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileUnpacker.java">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
*/
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
*/
|
Access: public
|
||||||
</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
> I2PChromiumProfileUnpacker.java Copyright C 2022 idk
|
|
||||||
<a href="mailto:hankhill19580@gmail.com">
|
|
||||||
hankhill19580@gmail.com
|
|
||||||
</a>
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PChromiumProfileUnpacker is a that unpacks the Chromium profile zip file into the Chromium base profile directory. This is not used by the Chromium browser instance it’s unpacked to the disk to be copied to the active profile directory.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Author: idk
|
|
||||||
<br />
|
|
||||||
Parent class: I2PChromiumProfileBuilder
|
|
||||||
<br />
|
|
||||||
package: net.i2p.i2pfirefox
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Dependencies
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<br />
|
<br />
|
||||||
<summary>
|
|
||||||
<br />
|
|
||||||
Show dependencies
|
|
||||||
<br />
|
|
||||||
</summary>
|
|
||||||
<br />
|
|
||||||
<ul>
|
|
||||||
<br />
|
|
||||||
</ul>
|
|
||||||
<br />
|
|
||||||
</details>
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
No member variables in this class
|
|
||||||
</h2>
|
|
||||||
<h2>
|
|
||||||
Methods
|
|
||||||
</h2>
|
|
||||||
<h3>
|
|
||||||
main
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileUnpacker.java#L23">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
Description:
|
||||||
<br />
|
<br />
|
||||||
</li>
|
> I2PChromiumProfileUnpacker.java Copyright C 2022 idk
|
||||||
<li>
|
<a href="mailto:hankhill19580@gmail.com">
|
||||||
Access: public
|
hankhill19580@gmail.com
|
||||||
|
</a>
|
||||||
|
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PChromiumProfileUnpacker is a that unpacks the Chromium profile zip file into the Chromium base profile directory. This is not used by the Chromium browser instance it’s unpacked to the disk to be copied to the active profile directory.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Author: idk
|
||||||
<br />
|
<br />
|
||||||
</li>
|
Parent class: I2PChromiumProfileBuilder
|
||||||
<li>
|
|
||||||
Modifiers: static
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: void
|
|
||||||
<br />
|
<br />
|
||||||
</li>
|
package: net.i2p.i2pfirefox
|
||||||
</ul>
|
</p>
|
||||||
<p>
|
<h2>
|
||||||
| Name | Type | Description |
|
Dependencies
|
||||||
<br />
|
</h2>
|
||||||
| —– | —– | —– |
|
<p>
|
||||||
<br />
|
<details>
|
||||||
| args | String[] | |
|
<br />
|
||||||
</p>
|
<summary>
|
||||||
<h3>
|
<br />
|
||||||
unpackProfile
|
Show dependencies
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileUnpacker.java#L38">
|
<br />
|
||||||
[src]
|
</summary>
|
||||||
</a>
|
<br />
|
||||||
</h3>
|
<ul>
|
||||||
<ul>
|
<br />
|
||||||
<li>
|
</ul>
|
||||||
Description: unpack the profile directory
|
<br />
|
||||||
<br />
|
</details>
|
||||||
</li>
|
</p>
|
||||||
<li>
|
<h2>
|
||||||
Access: public
|
No member variables in this class
|
||||||
<br />
|
</h2>
|
||||||
</li>
|
<h2>
|
||||||
<li>
|
Methods
|
||||||
return: true if the profile directory was successfully unpacked
|
</h2>
|
||||||
<br />
|
<h3>
|
||||||
</li>
|
main
|
||||||
</ul>
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileUnpacker.java#L23">
|
||||||
<p>
|
[src]
|
||||||
| Name | Type | Description |
|
</a>
|
||||||
<br />
|
</h3>
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profileDirectory | String | |
|
|
||||||
<br />
|
|
||||||
| mode | String | |
|
|
||||||
</p>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Description:
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
<br />
|
||||||
</a>
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Modifiers: static
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: void
|
||||||
|
<br />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<p>
|
||||||
<div>
|
| Name | Type | Description |
|
||||||
<a href="#show">
|
<br />
|
||||||
Show license
|
| —– | —– | —– |
|
||||||
</a>
|
<br />
|
||||||
<div id="show">
|
| args | String[] | |
|
||||||
<div id="hide">
|
</p>
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<h3>
|
||||||
|
unpackProfile
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PChromiumProfileUnpacker.java#L38">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: unpack the profile directory
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the profile directory was successfully unpacked
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profileDirectory | String | |
|
||||||
|
<br />
|
||||||
|
| mode | String | |
|
||||||
|
</p>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1108,9 +1121,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1119,7 +1133,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
File diff suppressed because it is too large
Load Diff
2240
docs/I2PFirefox.html
2240
docs/I2PFirefox.html
File diff suppressed because it is too large
Load Diff
@ -8,471 +8,484 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
Class I2PFirefoxProfileBuilder
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java">
|
|
||||||
[src]
|
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
<h1>
|
||||||
<blockquote>
|
Class I2PFirefoxProfileBuilder
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
*/
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
*/
|
Access: public
|
||||||
|
<br />
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
> I2PFirefoxProfileBuilder.java Copyright C 2022 idk
|
||||||
|
<a href="mailto:hankhill19580@gmail.com">
|
||||||
|
hankhill19580@gmail.com
|
||||||
|
</a>
|
||||||
|
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PFirefoxProfileBuilder is a that builds a profile directory which contains the I2P browser profile for the Firefox browser family. It manages the base profile directory and copies it’s contents to the active profile directory which is actually used by Firefox.
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
<p>
|
||||||
<p>
|
Author: idk
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
> I2PFirefoxProfileBuilder.java Copyright C 2022 idk
|
|
||||||
<a href="mailto:hankhill19580@gmail.com">
|
|
||||||
hankhill19580@gmail.com
|
|
||||||
</a>
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PFirefoxProfileBuilder is a that builds a profile directory which contains the I2P browser profile for the Firefox browser family. It manages the base profile directory and copies it’s contents to the active profile directory which is actually used by Firefox.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Author: idk
|
|
||||||
<br />
|
|
||||||
Parent class: I2PFirefoxProfileChecker
|
|
||||||
<br />
|
|
||||||
package: net.i2p.i2pfirefox
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Dependencies
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<br />
|
<br />
|
||||||
<summary>
|
Parent class: I2PFirefoxProfileChecker
|
||||||
|
<br />
|
||||||
|
package: net.i2p.i2pfirefox
|
||||||
|
</p>
|
||||||
|
<h2>
|
||||||
|
Dependencies
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
<details>
|
||||||
<br />
|
<br />
|
||||||
Show dependencies
|
<summary>
|
||||||
|
<br />
|
||||||
|
Show dependencies
|
||||||
|
<br />
|
||||||
|
</summary>
|
||||||
<br />
|
<br />
|
||||||
</summary>
|
<ul>
|
||||||
<br />
|
<br />
|
||||||
<ul>
|
<li>
|
||||||
|
java.io.File
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.io.IOException
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.nio.file.Files
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.nio.file.StandardCopyOption
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
</details>
|
||||||
java.io.File
|
</p>
|
||||||
</li>
|
<h2>
|
||||||
<li>
|
Member Variables
|
||||||
java.io.IOException
|
</h2>
|
||||||
</li>
|
<h4>
|
||||||
<li>
|
boolean strict
|
||||||
java.nio.file.Files
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L">
|
||||||
</li>
|
[src]
|
||||||
<li>
|
</a>
|
||||||
java.nio.file.StandardCopyOption
|
</h4>
|
||||||
</li>
|
<blockquote></blockquote>
|
||||||
</ul>
|
|
||||||
<br />
|
|
||||||
</details>
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Member Variables
|
|
||||||
</h2>
|
|
||||||
<h4>
|
|
||||||
boolean strict
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h4>
|
|
||||||
<blockquote></blockquote>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Access: private
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h2>
|
|
||||||
Methods
|
|
||||||
</h2>
|
|
||||||
<h3>
|
|
||||||
userChromeCSS
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L28">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: private
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
This method has no parameters.
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
baseProfileDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L125">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the base profile directory creating it if necessary
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| base | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
runtimeDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L149">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the runtime directory creating it if create=true
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: the runtime directory or null if it could not be created
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| create | boolean | if true create the runtime directory if it does not exist |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
runtimeDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L160">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the correct runtime directory
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: the runtime directory or null if it could not be created or found
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
This method has no parameters.
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
copyBaseProfiletoProfile
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L180">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Copy the inert base profile directory to the runtime profile directory
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| base | String | |
|
|
||||||
<br />
|
|
||||||
| app | boolean | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
writeAppChrome
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L213">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: protected
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profile | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
deleteAppChrome
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L226">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: protected
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profile | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
copyStrictOptions
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L241">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Copy the strict options from the base profile to the profile
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if successful false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| base | String | |
|
|
||||||
<br />
|
|
||||||
| app | boolean | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
setupUserChrome
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L276">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: void
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profileDir | File | |
|
|
||||||
<br />
|
|
||||||
| app | boolean | |
|
|
||||||
</p>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Access: private
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
<br />
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<h2>
|
||||||
<div>
|
Methods
|
||||||
<a href="#show">
|
</h2>
|
||||||
Show license
|
<h3>
|
||||||
</a>
|
userChromeCSS
|
||||||
<div id="show">
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L28">
|
||||||
<div id="hide">
|
[src]
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: private
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
This method has no parameters.
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
baseProfileDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L125">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the base profile directory creating it if necessary
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| base | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
runtimeDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L149">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the runtime directory creating it if create=true
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: the runtime directory or null if it could not be created
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| create | boolean | if true create the runtime directory if it does not exist |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
runtimeDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L160">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the correct runtime directory
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: the runtime directory or null if it could not be created or found
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
This method has no parameters.
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
copyBaseProfiletoProfile
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L180">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Copy the inert base profile directory to the runtime profile directory
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| base | String | |
|
||||||
|
<br />
|
||||||
|
| app | boolean | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
writeAppChrome
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L213">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: protected
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profile | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
deleteAppChrome
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L226">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: protected
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profile | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
copyStrictOptions
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L241">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Copy the strict options from the base profile to the profile
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if successful false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| base | String | |
|
||||||
|
<br />
|
||||||
|
| app | boolean | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
setupUserChrome
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileBuilder.java#L276">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: void
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profileDir | File | |
|
||||||
|
<br />
|
||||||
|
| app | boolean | |
|
||||||
|
</p>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1315,9 +1328,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1326,7 +1340,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,478 +8,491 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
Class I2PFirefoxProfileChecker
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java">
|
|
||||||
[src]
|
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
<h1>
|
||||||
<blockquote>
|
Class I2PFirefoxProfileChecker
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
*/
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
*/
|
Access: public
|
||||||
|
<br />
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
> I2PFirefoxProfileChecker.java Copyright C 2022 idk
|
||||||
|
<a href="mailto:hankhill19580@gmail.com">
|
||||||
|
hankhill19580@gmail.com
|
||||||
|
</a>
|
||||||
|
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PFirefoxProfileChecker is a that checks if the Firefox profile directory exists and is valid.
|
||||||
</p>
|
</p>
|
||||||
</blockquote>
|
<p>
|
||||||
<p>
|
Author: idk
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
> I2PFirefoxProfileChecker.java Copyright C 2022 idk
|
|
||||||
<a href="mailto:hankhill19580@gmail.com">
|
|
||||||
hankhill19580@gmail.com
|
|
||||||
</a>
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PFirefoxProfileChecker is a that checks if the Firefox profile directory exists and is valid.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Author: idk
|
|
||||||
<br />
|
|
||||||
Parent class: I2PCommonBrowser
|
|
||||||
<br />
|
|
||||||
package: net.i2p.i2pfirefox
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Dependencies
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<br />
|
<br />
|
||||||
<summary>
|
Parent class: I2PCommonBrowser
|
||||||
|
<br />
|
||||||
|
package: net.i2p.i2pfirefox
|
||||||
|
</p>
|
||||||
|
<h2>
|
||||||
|
Dependencies
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
<details>
|
||||||
<br />
|
<br />
|
||||||
Show dependencies
|
<summary>
|
||||||
|
<br />
|
||||||
|
Show dependencies
|
||||||
|
<br />
|
||||||
|
</summary>
|
||||||
<br />
|
<br />
|
||||||
</summary>
|
<ul>
|
||||||
<br />
|
<br />
|
||||||
<ul>
|
<li>
|
||||||
|
java.io.BufferedReader
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.io.File
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.io.FileNotFoundException
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.io.FileReader
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.io.FileWriter
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.io.IOException
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
java.util.Scanner
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<br />
|
<br />
|
||||||
<li>
|
</details>
|
||||||
java.io.BufferedReader
|
</p>
|
||||||
</li>
|
<h2>
|
||||||
<li>
|
No member variables in this class
|
||||||
java.io.File
|
</h2>
|
||||||
</li>
|
<h2>
|
||||||
<li>
|
Methods
|
||||||
java.io.FileNotFoundException
|
</h2>
|
||||||
</li>
|
<h3>
|
||||||
<li>
|
main
|
||||||
java.io.FileReader
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L32">
|
||||||
</li>
|
[src]
|
||||||
<li>
|
</a>
|
||||||
java.io.FileWriter
|
</h3>
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
java.io.IOException
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
java.util.Scanner
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<br />
|
|
||||||
</details>
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
No member variables in this class
|
|
||||||
</h2>
|
|
||||||
<h2>
|
|
||||||
Methods
|
|
||||||
</h2>
|
|
||||||
<h3>
|
|
||||||
main
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L32">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Modifiers: static
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: void
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| args | String[] | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
profileDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L53">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: get the profile directory creating it if necessary
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: String
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| app | boolean | |
|
|
||||||
<br />
|
|
||||||
| base | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
validateProfileDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L64">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Return true if the profile directory is valid.
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if the profile directory is valid false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profileDirectory | String | the profile directory to check |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
deRestrictHTTPSAndSetupHomepage
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L97">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: private
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profile | String | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
undoHttpsOnlyMode
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L120">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: private
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| fileToBeModified | File | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
undoHomepage
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L126">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: private
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| fileToBeModified | File | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
undoValue
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L149">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: boolean
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| oldString | String | |
|
|
||||||
<br />
|
|
||||||
| newString | String | |
|
|
||||||
<br />
|
|
||||||
| fileToBeModified | File | |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
validateFile
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L183">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Return true if the file is valid.
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if the file is valid false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| file | String | the file to check |
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
validateExtensionDirectory
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L210">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description: Return true if the extension directory is valid.
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: true if the extension directory is valid false otherwise
|
|
||||||
<br />
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
| Name | Type | Description |
|
|
||||||
<br />
|
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| extensionDirectory | String | the extension directory to check |
|
|
||||||
</p>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Description:
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
<br />
|
||||||
</a>
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Modifiers: static
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: void
|
||||||
|
<br />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<p>
|
||||||
<div>
|
| Name | Type | Description |
|
||||||
<a href="#show">
|
<br />
|
||||||
Show license
|
| —– | —– | —– |
|
||||||
</a>
|
<br />
|
||||||
<div id="show">
|
| args | String[] | |
|
||||||
<div id="hide">
|
</p>
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<h3>
|
||||||
|
profileDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L53">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: get the profile directory creating it if necessary
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: String
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| app | boolean | |
|
||||||
|
<br />
|
||||||
|
| base | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
validateProfileDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L64">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Return true if the profile directory is valid.
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the profile directory is valid false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profileDirectory | String | the profile directory to check |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
deRestrictHTTPSAndSetupHomepage
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L97">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: private
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profile | String | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
undoHttpsOnlyMode
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L120">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: private
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| fileToBeModified | File | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
undoHomepage
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L126">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: private
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| fileToBeModified | File | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
undoValue
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L149">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description:
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: boolean
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| oldString | String | |
|
||||||
|
<br />
|
||||||
|
| newString | String | |
|
||||||
|
<br />
|
||||||
|
| fileToBeModified | File | |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
validateFile
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L183">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Return true if the file is valid.
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the file is valid false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| file | String | the file to check |
|
||||||
|
</p>
|
||||||
|
<h3>
|
||||||
|
validateExtensionDirectory
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileChecker.java#L210">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: Return true if the extension directory is valid.
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the extension directory is valid false otherwise
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| extensionDirectory | String | the extension directory to check |
|
||||||
|
</p>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1322,9 +1335,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1333,7 +1347,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,268 +8,281 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
Class I2PFirefoxProfileUnpacker
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileUnpacker.java">
|
|
||||||
[src]
|
|
||||||
</a>
|
</a>
|
||||||
</h1>
|
<h1>
|
||||||
<blockquote>
|
Class I2PFirefoxProfileUnpacker
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileUnpacker.java">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h1>
|
||||||
|
<blockquote>
|
||||||
|
<p>
|
||||||
|
*/
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
*/
|
Access: public
|
||||||
</p>
|
|
||||||
</blockquote>
|
|
||||||
<p>
|
|
||||||
Access: public
|
|
||||||
<br />
|
|
||||||
Description:
|
|
||||||
<br />
|
|
||||||
> I2PFirefoxProfileUnpacker.java Copyright C 2022 idk
|
|
||||||
<a href="mailto:hankhill19580@gmail.com">
|
|
||||||
hankhill19580@gmail.com
|
|
||||||
</a>
|
|
||||||
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PFirefoxProfileUnpacker is a that unpacks the I2P Firefox profile from a zip file embedded in the
|
|
||||||
<code>
|
|
||||||
jar
|
|
||||||
</code>
|
|
||||||
file. The zip is unpacked to a base directory where it is left untouched and the base profile is copied to the active profile directory.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Author: idk
|
|
||||||
<br />
|
|
||||||
Parent class: I2PFirefoxProfileBuilder
|
|
||||||
<br />
|
|
||||||
package: net.i2p.i2pfirefox
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Dependencies
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
<details>
|
|
||||||
<br />
|
<br />
|
||||||
<summary>
|
|
||||||
<br />
|
|
||||||
Show dependencies
|
|
||||||
<br />
|
|
||||||
</summary>
|
|
||||||
<br />
|
|
||||||
<ul>
|
|
||||||
<br />
|
|
||||||
</ul>
|
|
||||||
<br />
|
|
||||||
</details>
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
No member variables in this class
|
|
||||||
</h2>
|
|
||||||
<h2>
|
|
||||||
Methods
|
|
||||||
</h2>
|
|
||||||
<h3>
|
|
||||||
main
|
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileUnpacker.java#L23">
|
|
||||||
[src]
|
|
||||||
</a>
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Description:
|
Description:
|
||||||
<br />
|
<br />
|
||||||
</li>
|
> I2PFirefoxProfileUnpacker.java Copyright C 2022 idk
|
||||||
<li>
|
<a href="mailto:hankhill19580@gmail.com">
|
||||||
Access: public
|
hankhill19580@gmail.com
|
||||||
|
</a>
|
||||||
|
This program is free software: you can redistribute it and/or modify it under the terms of the MIT License. See LICENSE.md for details. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I2PFirefoxProfileUnpacker is a that unpacks the I2P Firefox profile from a zip file embedded in the
|
||||||
|
<code>
|
||||||
|
jar
|
||||||
|
</code>
|
||||||
|
file. The zip is unpacked to a base directory where it is left untouched and the base profile is copied to the active profile directory.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Author: idk
|
||||||
<br />
|
<br />
|
||||||
</li>
|
Parent class: I2PFirefoxProfileBuilder
|
||||||
<li>
|
|
||||||
Modifiers: static
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
return: void
|
|
||||||
<br />
|
<br />
|
||||||
</li>
|
package: net.i2p.i2pfirefox
|
||||||
</ul>
|
</p>
|
||||||
<p>
|
<h2>
|
||||||
| Name | Type | Description |
|
Dependencies
|
||||||
<br />
|
</h2>
|
||||||
| —– | —– | —– |
|
<p>
|
||||||
<br />
|
<details>
|
||||||
| args | String[] | |
|
<br />
|
||||||
</p>
|
<summary>
|
||||||
<h3>
|
<br />
|
||||||
unpackProfile
|
Show dependencies
|
||||||
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileUnpacker.java#L38">
|
<br />
|
||||||
[src]
|
</summary>
|
||||||
</a>
|
<br />
|
||||||
</h3>
|
<ul>
|
||||||
<ul>
|
<br />
|
||||||
<li>
|
</ul>
|
||||||
Description: unpack the profile directory
|
<br />
|
||||||
<br />
|
</details>
|
||||||
</li>
|
</p>
|
||||||
<li>
|
<h2>
|
||||||
Access: public
|
No member variables in this class
|
||||||
<br />
|
</h2>
|
||||||
</li>
|
<h2>
|
||||||
<li>
|
Methods
|
||||||
return: true if the profile directory was successfully unpacked
|
</h2>
|
||||||
<br />
|
<h3>
|
||||||
</li>
|
main
|
||||||
</ul>
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileUnpacker.java#L23">
|
||||||
<p>
|
[src]
|
||||||
| Name | Type | Description |
|
</a>
|
||||||
<br />
|
</h3>
|
||||||
| —– | —– | —– |
|
|
||||||
<br />
|
|
||||||
| profileDirectory | String | |
|
|
||||||
<br />
|
|
||||||
| base | String | |
|
|
||||||
</p>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Description:
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
<br />
|
||||||
</a>
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Modifiers: static
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: void
|
||||||
|
<br />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
<p>
|
||||||
<div>
|
| Name | Type | Description |
|
||||||
<a href="#show">
|
<br />
|
||||||
Show license
|
| —– | —– | —– |
|
||||||
</a>
|
<br />
|
||||||
<div id="show">
|
| args | String[] | |
|
||||||
<div id="hide">
|
</p>
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<h3>
|
||||||
|
unpackProfile
|
||||||
|
<a href="src/java/net/i2p/i2pfirefox/I2PFirefoxProfileUnpacker.java#L38">
|
||||||
|
[src]
|
||||||
|
</a>
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description: unpack the profile directory
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Access: public
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
return: true if the profile directory was successfully unpacked
|
||||||
|
<br />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
| Name | Type | Description |
|
||||||
|
<br />
|
||||||
|
| —– | —– | —– |
|
||||||
|
<br />
|
||||||
|
| profileDirectory | String | |
|
||||||
|
<br />
|
||||||
|
| base | String | |
|
||||||
|
</p>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1112,9 +1125,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1123,7 +1137,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
File diff suppressed because it is too large
Load Diff
476
docs/LINUX.html
476
docs/LINUX.html
@ -8,152 +8,165 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
</a>
|
||||||
</a>
|
<h3>
|
||||||
<h3>
|
Linux Support
|
||||||
Linux Support
|
</h3>
|
||||||
</h3>
|
<p>
|
||||||
<p>
|
It’s possible to use this package in the following binary formats on
|
||||||
It’s possible to use this package in the following binary formats on
|
Linux. These packages are for the
|
||||||
Linux. These packages are for the
|
<strong>
|
||||||
<strong>
|
<code>
|
||||||
|
amd64
|
||||||
|
</code>
|
||||||
|
</strong>
|
||||||
|
architecture.
|
||||||
|
</p>
|
||||||
|
<h4>
|
||||||
|
Linux jpackage:
|
||||||
<code>
|
<code>
|
||||||
amd64
|
.tar.gz
|
||||||
</code>
|
</code>
|
||||||
</strong>
|
</h4>
|
||||||
architecture.
|
<pre><code class="language-sh">mkdir ~/tmp-i2pbrowser && cd ~/tmp-i2pbrowser
|
||||||
</p>
|
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.3.0/i2pbrowser.tar.gz
|
||||||
<h4>
|
|
||||||
Linux jpackage:
|
|
||||||
<code>
|
|
||||||
.tar.gz
|
|
||||||
</code>
|
|
||||||
</h4>
|
|
||||||
<pre><code class="language-sh">mkdir ~/tmp-i2pbrowser && cd ~/tmp-i2pbrowser
|
|
||||||
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.0.8/i2pbrowser.tar.gz
|
|
||||||
tar xvzf i2pbrowser.tar.gz && cd i2pbrowser
|
tar xvzf i2pbrowser.tar.gz && cd i2pbrowser
|
||||||
## THIS STEP IS OPTIONAL but it will force the system to use Tor Browser from within the i2pbrowser directory.
|
## THIS STEP IS OPTIONAL but it will force the system to use Tor Browser from within the i2pbrowser directory.
|
||||||
# This probably offers better security than vanilla Firefox.
|
# This probably offers better security than vanilla Firefox.
|
||||||
@ -164,98 +177,98 @@ tar xvzf i2pbrowser.tar.gz && cd i2pbrowser
|
|||||||
# end of optional step.
|
# end of optional step.
|
||||||
./bin/i2pbrowser
|
./bin/i2pbrowser
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h4>
|
<h4>
|
||||||
Debian/Ubuntu and variants Jpackage:
|
Debian/Ubuntu and variants Jpackage:
|
||||||
<code>
|
|
||||||
.deb
|
|
||||||
</code>
|
|
||||||
</h4>
|
|
||||||
<ol>
|
|
||||||
<li>
|
|
||||||
Start your I2P Router
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Download the latest release
|
|
||||||
<code>
|
<code>
|
||||||
.deb
|
.deb
|
||||||
</code>
|
</code>
|
||||||
from
|
</h4>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
<ol>
|
||||||
Github
|
|
||||||
</a>
|
|
||||||
and verify it’s hash.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Run
|
|
||||||
<code>
|
|
||||||
sudo apt-get install ./i2pbrowser*.deb
|
|
||||||
</code>
|
|
||||||
(Only needs to be done once per update)
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Use the applications menu shortcut to launch the pre-configured I2P browser
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<h4>
|
|
||||||
Fedora and variants Jpackage:
|
|
||||||
<code>
|
|
||||||
.rpm
|
|
||||||
</code>
|
|
||||||
</h4>
|
|
||||||
<ol>
|
|
||||||
<li>
|
|
||||||
Start your I2P Router
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Download the latest release
|
|
||||||
<code>
|
|
||||||
.r[m
|
|
||||||
</code>
|
|
||||||
from
|
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
|
||||||
Github
|
|
||||||
</a>
|
|
||||||
and verify it’s hash.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Run
|
|
||||||
<code>
|
|
||||||
sudo rpm -i ./i2pbrowser*.rpm
|
|
||||||
</code>
|
|
||||||
(Only needs to be done the first time)
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Run
|
|
||||||
<code>
|
|
||||||
sudo rpm -U ./i2pbrowser*.rpm
|
|
||||||
</code>
|
|
||||||
(Only needs to be done once per update)
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Use the applications menu shortcut to launch the pre-configured I2P browser
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
|
||||||
Get the source code:
|
|
||||||
</strong>
|
|
||||||
</span>
|
|
||||||
<ul>
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Start your I2P Router
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
<li>
|
||||||
</div>
|
Download the latest release
|
||||||
<div>
|
<code>
|
||||||
<a href="#show">
|
.deb
|
||||||
Show license
|
</code>
|
||||||
</a>
|
from
|
||||||
<div id="show">
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
||||||
<div id="hide">
|
Github
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
</a>
|
||||||
|
and verify it’s hash.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Run
|
||||||
|
<code>
|
||||||
|
sudo apt-get install ./i2pbrowser*.deb
|
||||||
|
</code>
|
||||||
|
(Only needs to be done once per update)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Use the applications menu shortcut to launch the pre-configured I2P browser
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<h4>
|
||||||
|
Fedora and variants Jpackage:
|
||||||
|
<code>
|
||||||
|
.rpm
|
||||||
|
</code>
|
||||||
|
</h4>
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
Start your I2P Router
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Download the latest release
|
||||||
|
<code>
|
||||||
|
.r[m
|
||||||
|
</code>
|
||||||
|
from
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
||||||
|
Github
|
||||||
|
</a>
|
||||||
|
and verify it’s hash.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Run
|
||||||
|
<code>
|
||||||
|
sudo rpm -i ./i2pbrowser*.rpm
|
||||||
|
</code>
|
||||||
|
(Only needs to be done the first time)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Run
|
||||||
|
<code>
|
||||||
|
sudo rpm -U ./i2pbrowser*.rpm
|
||||||
|
</code>
|
||||||
|
(Only needs to be done once per update)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Use the applications menu shortcut to launch the pre-configured I2P browser
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1098,9 +1111,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1109,7 +1123,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,7 +7,7 @@ Linux. These packages are for the **`amd64`** architecture.
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
mkdir ~/tmp-i2pbrowser && cd ~/tmp-i2pbrowser
|
mkdir ~/tmp-i2pbrowser && cd ~/tmp-i2pbrowser
|
||||||
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.0.8/i2pbrowser.tar.gz
|
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.3.0/i2pbrowser.tar.gz
|
||||||
tar xvzf i2pbrowser.tar.gz && cd i2pbrowser
|
tar xvzf i2pbrowser.tar.gz && cd i2pbrowser
|
||||||
## THIS STEP IS OPTIONAL but it will force the system to use Tor Browser from within the i2pbrowser directory.
|
## THIS STEP IS OPTIONAL but it will force the system to use Tor Browser from within the i2pbrowser directory.
|
||||||
# This probably offers better security than vanilla Firefox.
|
# This probably offers better security than vanilla Firefox.
|
||||||
|
388
docs/OSX.html
388
docs/OSX.html
@ -8,145 +8,158 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
</a>
|
||||||
</a>
|
<h1>
|
||||||
<h1>
|
Using this on OSX
|
||||||
Using this on OSX
|
</h1>
|
||||||
</h1>
|
<p>
|
||||||
<p>
|
This code will launch an I2P-Configured Browser on OSX, but at this time
|
||||||
This code will launch an I2P-Configured Browser on OSX, but at this time
|
there are no packages for it because it’s not possible for me to sign OSX
|
||||||
there are no packages for it because it’s not possible for me to sign OSX
|
packages. You can use the
|
||||||
packages. You can use the
|
<code>
|
||||||
<code>
|
.jar
|
||||||
.jar
|
</code>
|
||||||
</code>
|
file with any Java greater than Java 8.
|
||||||
file with any Java greater than Java 8.
|
</p>
|
||||||
</p>
|
<pre><code class="language-sh">mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
||||||
<pre><code class="language-sh">mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.3.0/i2pfirefox.zip
|
||||||
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.0.8/i2pfirefox.zip
|
|
||||||
unzip i2pfirefox.zip
|
unzip i2pfirefox.zip
|
||||||
./cmd/i2pfirefox.cmd
|
./cmd/i2pfirefox.cmd
|
||||||
|
|
||||||
@ -154,57 +167,57 @@ unzip i2pfirefox.zip
|
|||||||
|
|
||||||
./cmd/i2pchromium.cmd
|
./cmd/i2pchromium.cmd
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<h2>
|
<h2>
|
||||||
Building a
|
Building a
|
||||||
<code>
|
<code>
|
||||||
jpackage
|
jpackage
|
||||||
</code>
|
</code>
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
In order to build a
|
In order to build a
|
||||||
<code>
|
<code>
|
||||||
jpackage
|
jpackage
|
||||||
</code>
|
</code>
|
||||||
, install at least Java 17. To set up Java
|
, install at least Java 17. To set up Java
|
||||||
17 and configure it to be the Java used by the system for the rest of the
|
17 and configure it to be the Java used by the system for the rest of the
|
||||||
session, use these commands:
|
session, use these commands:
|
||||||
</p>
|
</p>
|
||||||
<pre><code class="language-sh">brew install openjdk@17
|
<pre><code class="language-sh">brew install openjdk@17
|
||||||
sudo ln -sfn /usr/local/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk
|
sudo ln -sfn /usr/local/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk
|
||||||
export JAVA_HOME=`/usr/libexec/java_home -v 17`
|
export JAVA_HOME=`/usr/libexec/java_home -v 17`
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<p>
|
<p>
|
||||||
Once you’re finished, run
|
Once you’re finished, run
|
||||||
<code>
|
<code>
|
||||||
./osx-dmg.sh
|
./osx-dmg.sh
|
||||||
</code>
|
</code>
|
||||||
in the repository root to produce a
|
in the repository root to produce a
|
||||||
<code>
|
<code>
|
||||||
.dmg
|
.dmg
|
||||||
</code>
|
</code>
|
||||||
package.
|
package.
|
||||||
</p>
|
</p>
|
||||||
<div id="sourcecode">
|
<div id="sourcecode">
|
||||||
<span id="sourcehead">
|
<span id="sourcehead">
|
||||||
<strong>
|
<strong>
|
||||||
Get the source code:
|
Get the source code:
|
||||||
</strong>
|
</strong>
|
||||||
</span>
|
</span>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="#show">
|
<a href="#show">
|
||||||
Show license
|
Show license
|
||||||
</a>
|
</a>
|
||||||
<div id="show">
|
<div id="show">
|
||||||
<div id="hide">
|
<div id="hide">
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1047,9 +1060,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1058,7 +1072,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,7 +7,7 @@ packages. You can use the `.jar` file with any Java greater than Java 8.
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
||||||
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.0.8/i2pfirefox.zip
|
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.3.0/i2pfirefox.zip
|
||||||
unzip i2pfirefox.zip
|
unzip i2pfirefox.zip
|
||||||
./cmd/i2pfirefox.cmd
|
./cmd/i2pfirefox.cmd
|
||||||
|
|
||||||
|
@ -8,276 +8,289 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href=""></a>
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a href="index.html">
|
||||||
<a href=""></a>
|
index
|
||||||
</li>
|
</a>
|
||||||
<li>
|
</li>
|
||||||
<a href=""></a>
|
<li>
|
||||||
</li>
|
<a href="CHANGES.html">
|
||||||
<li>
|
CHANGES
|
||||||
<a href=""></a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href=""></a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="BUILD.html">
|
</li>
|
||||||
BUILD
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowser.html">
|
</li>
|
||||||
I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PBrowserPlugin.html">
|
</li>
|
||||||
I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="BUILD.html">
|
||||||
</li>
|
BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromium.html">
|
</li>
|
||||||
I2PChromium
|
<li>
|
||||||
</a>
|
<a href="I2PBrowser.html">
|
||||||
</li>
|
I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PBrowserPlugin.html">
|
||||||
</li>
|
I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileChecker.html">
|
</li>
|
||||||
I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PChromium.html">
|
||||||
</li>
|
I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PCommonBrowser.html">
|
</li>
|
||||||
I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileChecker.html">
|
||||||
</li>
|
I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefox.html">
|
</li>
|
||||||
I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="I2PCommonBrowser.html">
|
||||||
</li>
|
I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefox.html">
|
||||||
</li>
|
I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="I2PLibreWolf.html">
|
</li>
|
||||||
I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="LINUX.html">
|
</li>
|
||||||
LINUX
|
<li>
|
||||||
</a>
|
<a href="I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="OSX.html">
|
</li>
|
||||||
OSX
|
<li>
|
||||||
</a>
|
<a href="I2PLibreWolf.html">
|
||||||
</li>
|
I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="WINDOWS.html">
|
</li>
|
||||||
WINDOWS
|
<li>
|
||||||
</a>
|
<a href="LINUX.html">
|
||||||
</li>
|
LINUX
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
<li>
|
||||||
Hide Navigation
|
<a href="OSX.html">
|
||||||
</a>
|
OSX
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="WINDOWS.html">
|
||||||
|
WINDOWS
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
/
|
||||||
/
|
</a>
|
||||||
</a>
|
<h3>
|
||||||
<h3>
|
Windows Support
|
||||||
Windows Support
|
</h3>
|
||||||
</h3>
|
<p>
|
||||||
<p>
|
It’s possible to use this package on Windows, but it’s recommended that
|
||||||
It’s possible to use this package on Windows, but it’s recommended that
|
you get it through the Easy-Install bundle which includes this functionality
|
||||||
you get it through the Easy-Install bundle which includes this functionality
|
already. Use this only if you want to test new features or if you prefer
|
||||||
already. Use this only if you want to test new features or if you prefer
|
an unbundled I2P router with an external JVM.
|
||||||
an unbundled I2P router with an external JVM.
|
</p>
|
||||||
</p>
|
<h4>
|
||||||
<h4>
|
Windows Jpackage:
|
||||||
Windows Jpackage:
|
|
||||||
<code>
|
|
||||||
.zip
|
|
||||||
</code>
|
|
||||||
</h4>
|
|
||||||
<p>
|
|
||||||
<strong>
|
|
||||||
(Not Recommended! This functionality is already included in the Easy-Install Bundle for Windows)
|
|
||||||
</strong>
|
|
||||||
</p>
|
|
||||||
<ol>
|
|
||||||
<li>
|
|
||||||
Start your I2P Router
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Download the latest release
|
|
||||||
<code>
|
<code>
|
||||||
.zip
|
.zip
|
||||||
</code>
|
</code>
|
||||||
from
|
</h4>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
<p>
|
||||||
Github
|
<strong>
|
||||||
</a>
|
(Not Recommended! This functionality is already included in the Easy-Install Bundle for Windows)
|
||||||
and verify it’s hash.
|
</strong>
|
||||||
</li>
|
</p>
|
||||||
<li>
|
<ol>
|
||||||
Unzip the
|
<li>
|
||||||
<code>
|
Start your I2P Router
|
||||||
.zip
|
</li>
|
||||||
</code>
|
<li>
|
||||||
directory
|
Download the latest release
|
||||||
</li>
|
<code>
|
||||||
<li>
|
.zip
|
||||||
run the
|
</code>
|
||||||
<code>
|
from
|
||||||
i2pbrowser.exe
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
||||||
</code>
|
Github
|
||||||
file inside the unzipped directory.
|
</a>
|
||||||
</li>
|
and verify it’s hash.
|
||||||
</ol>
|
</li>
|
||||||
<h4>
|
<li>
|
||||||
Windows Jpackage:
|
Unzip the
|
||||||
<code>
|
<code>
|
||||||
.msi
|
.zip
|
||||||
</code>
|
</code>
|
||||||
</h4>
|
directory
|
||||||
<p>
|
</li>
|
||||||
<strong>
|
<li>
|
||||||
(Not Recommended! This functionality is already included in the Easy-Install Bundle for Windows)
|
run the
|
||||||
</strong>
|
<code>
|
||||||
</p>
|
i2pbrowser.exe
|
||||||
<ol>
|
</code>
|
||||||
<li>
|
file inside the unzipped directory.
|
||||||
Start your I2P Router
|
</li>
|
||||||
</li>
|
</ol>
|
||||||
<li>
|
<h4>
|
||||||
Download the latest release
|
Windows Jpackage:
|
||||||
<code>
|
<code>
|
||||||
.msi
|
.msi
|
||||||
</code>
|
</code>
|
||||||
from
|
</h4>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
<p>
|
||||||
Github
|
<strong>
|
||||||
</a>
|
(Not Recommended! This functionality is already included in the Easy-Install Bundle for Windows)
|
||||||
and verify it’s hash.
|
</strong>
|
||||||
</li>
|
</p>
|
||||||
<li>
|
<ol>
|
||||||
Run the
|
<li>
|
||||||
<code>
|
Start your I2P Router
|
||||||
.msi
|
</li>
|
||||||
</code>
|
<li>
|
||||||
installer(Only needs to be done once per update)
|
Download the latest release
|
||||||
</li>
|
<code>
|
||||||
<li>
|
.msi
|
||||||
Use the start menu shortcut to launch the pre-configured I2P browser
|
</code>
|
||||||
</li>
|
from
|
||||||
</ol>
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
||||||
<h4>
|
Github
|
||||||
Windows Jpackage:
|
</a>
|
||||||
<code>
|
and verify it’s hash.
|
||||||
.exe
|
</li>
|
||||||
</code>
|
<li>
|
||||||
</h4>
|
Run the
|
||||||
<p>
|
<code>
|
||||||
<strong>
|
.msi
|
||||||
(Not Recommended! This functionality is already included in the Easy-Install Bundle for Windows)
|
</code>
|
||||||
</strong>
|
installer(Only needs to be done once per update)
|
||||||
</p>
|
</li>
|
||||||
<ol>
|
<li>
|
||||||
<li>
|
Use the start menu shortcut to launch the pre-configured I2P browser
|
||||||
Start your I2P Router
|
</li>
|
||||||
</li>
|
</ol>
|
||||||
<li>
|
<h4>
|
||||||
Download the latest release
|
Windows Jpackage:
|
||||||
<code>
|
<code>
|
||||||
.exe
|
.exe
|
||||||
</code>
|
</code>
|
||||||
from
|
</h4>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
<p>
|
||||||
Github
|
|
||||||
</a>
|
|
||||||
and verify it’s hash.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Run the
|
|
||||||
<code>
|
|
||||||
.msi
|
|
||||||
</code>
|
|
||||||
installer(Only needs to be done once per update)
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Use the start menu shortcut to launch the pre-configured I2P browser
|
|
||||||
</li>
|
|
||||||
</ol>
|
|
||||||
<div id="sourcecode">
|
|
||||||
<span id="sourcehead">
|
|
||||||
<strong>
|
<strong>
|
||||||
Get the source code:
|
(Not Recommended! This functionality is already included in the Easy-Install Bundle for Windows)
|
||||||
</strong>
|
</strong>
|
||||||
</span>
|
</p>
|
||||||
<ul>
|
<ol>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
Start your I2P Router
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
<li>
|
||||||
</div>
|
Download the latest release
|
||||||
<div>
|
<code>
|
||||||
<a href="#show">
|
.exe
|
||||||
Show license
|
</code>
|
||||||
</a>
|
from
|
||||||
<div id="show">
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox/releases">
|
||||||
<div id="hide">
|
Github
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
</a>
|
||||||
|
and verify it’s hash.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Run the
|
||||||
|
<code>
|
||||||
|
.msi
|
||||||
|
</code>
|
||||||
|
installer(Only needs to be done once per update)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Use the start menu shortcut to launch the pre-configured I2P browser
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
<div id="sourcecode">
|
||||||
|
<span id="sourcehead">
|
||||||
|
<strong>
|
||||||
|
Get the source code:
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#show">
|
||||||
|
Show license
|
||||||
|
</a>
|
||||||
|
<div id="show">
|
||||||
|
<div id="hide">
|
||||||
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1120,9 +1133,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1131,7 +1145,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
24
docs/darklight.css
Normal file
24
docs/darklight.css
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/* edgar darklight CSS file */
|
||||||
|
#checkboxDarkLight:checked + .container {
|
||||||
|
background-color: #202020;
|
||||||
|
filter: invert(100%);
|
||||||
|
}
|
||||||
|
#checkboxDarkLight{
|
||||||
|
appearance: none;
|
||||||
|
width: 80px;
|
||||||
|
height: 40px;
|
||||||
|
background: black;
|
||||||
|
border-radius: 22px;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
#checkboxDarkLight::before{
|
||||||
|
content: '';
|
||||||
|
width: 40px;
|
||||||
|
height: 35px;
|
||||||
|
background-color:white;
|
||||||
|
border-radius: 35px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: .3s linear;
|
||||||
|
}
|
||||||
|
|
BIN
docs/i2plogo.png
Normal file
BIN
docs/i2plogo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
@ -75,8 +75,6 @@ iframe {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 36vw;
|
|
||||||
height: 64vh;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
Binary file not shown.
634
index.html
634
index.html
@ -8,301 +8,304 @@
|
|||||||
<meta name="keywords" content="main" />
|
<meta name="keywords" content="main" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
<link rel="stylesheet" type="text/css" href="showhider.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="darklight.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="navbar">
|
<input type="checkbox" id="checkboxDarkLight">
|
||||||
<a href="#shownav">
|
<div class="container">
|
||||||
Show navigation
|
<div id="navbar">
|
||||||
</a>
|
<a href="#shownav">
|
||||||
<div id="shownav">
|
Show navigation
|
||||||
<div id="hidenav">
|
</a>
|
||||||
<ul>
|
<div id="shownav">
|
||||||
<li>
|
<div id="hidenav">
|
||||||
<a href="..">
|
<ul>
|
||||||
Up one level ^
|
<li>
|
||||||
</a>
|
<a href="..">
|
||||||
</li>
|
Up one level ^
|
||||||
<li>
|
</a>
|
||||||
<a href="index.html">
|
</li>
|
||||||
index
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index
|
||||||
<li>
|
</a>
|
||||||
<a href="CHANGES.html">
|
</li>
|
||||||
CHANGES
|
<li>
|
||||||
</a>
|
<a href="CHANGES.html">
|
||||||
</li>
|
CHANGES
|
||||||
<li>
|
</a>
|
||||||
<a href="LICENSE.html">
|
</li>
|
||||||
LICENSE
|
<li>
|
||||||
</a>
|
<a href="LICENSE.html">
|
||||||
</li>
|
LICENSE
|
||||||
<li>
|
</a>
|
||||||
<a href="VERSION.html">
|
</li>
|
||||||
VERSION
|
<li>
|
||||||
</a>
|
<a href="VERSION.html">
|
||||||
</li>
|
VERSION
|
||||||
<li>
|
</a>
|
||||||
<a href="index.html">
|
</li>
|
||||||
index.html
|
<li>
|
||||||
</a>
|
<a href="index.html">
|
||||||
</li>
|
index.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/BUILD.html">
|
</li>
|
||||||
docs/BUILD
|
<li>
|
||||||
</a>
|
<a href="docs/BUILD.html">
|
||||||
</li>
|
docs/BUILD
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PBrowser.html">
|
</li>
|
||||||
docs/I2PBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PBrowser.html">
|
||||||
</li>
|
docs/I2PBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PBrowserPlugin.html">
|
</li>
|
||||||
docs/I2PBrowserPlugin
|
<li>
|
||||||
</a>
|
<a href="docs/I2PBrowserPlugin.html">
|
||||||
</li>
|
docs/I2PBrowserPlugin.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromium.html">
|
</li>
|
||||||
docs/I2PChromium
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromium.html">
|
||||||
</li>
|
docs/I2PChromium
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileBuilder.html">
|
</li>
|
||||||
docs/I2PChromiumProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileBuilder.html">
|
||||||
</li>
|
docs/I2PChromiumProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileChecker.html">
|
</li>
|
||||||
docs/I2PChromiumProfileChecker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileChecker.html">
|
||||||
</li>
|
docs/I2PChromiumProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PChromiumProfileUnpacker.html">
|
</li>
|
||||||
docs/I2PChromiumProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PChromiumProfileUnpacker.html">
|
||||||
</li>
|
docs/I2PChromiumProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PCommonBrowser.html">
|
</li>
|
||||||
docs/I2PCommonBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PCommonBrowser.html">
|
||||||
</li>
|
docs/I2PCommonBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefox.html">
|
</li>
|
||||||
docs/I2PFirefox
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefox.html">
|
||||||
</li>
|
docs/I2PFirefox
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileBuilder.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileBuilder
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileBuilder.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileBuilder
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileChecker.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileChecker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileChecker.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileChecker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PFirefoxProfileUnpacker.html">
|
</li>
|
||||||
docs/I2PFirefoxProfileUnpacker
|
<li>
|
||||||
</a>
|
<a href="docs/I2PFirefoxProfileUnpacker.html">
|
||||||
</li>
|
docs/I2PFirefoxProfileUnpacker
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PGenericUnsafeBrowser.html">
|
</li>
|
||||||
docs/I2PGenericUnsafeBrowser
|
<li>
|
||||||
</a>
|
<a href="docs/I2PGenericUnsafeBrowser.html">
|
||||||
</li>
|
docs/I2PGenericUnsafeBrowser
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/I2PLibreWolf.html">
|
</li>
|
||||||
docs/I2PLibreWolf
|
<li>
|
||||||
</a>
|
<a href="docs/I2PLibreWolf.html">
|
||||||
</li>
|
docs/I2PLibreWolf.html
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/LINUX.html">
|
</li>
|
||||||
docs/LINUX
|
<li>
|
||||||
</a>
|
<a href="docs/LINUX.html">
|
||||||
</li>
|
docs/LINUX
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/OSX.html">
|
</li>
|
||||||
docs/OSX
|
<li>
|
||||||
</a>
|
<a href="docs/OSX.html">
|
||||||
</li>
|
docs/OSX
|
||||||
<li>
|
</a>
|
||||||
<a href="docs/WINDOWS.html">
|
</li>
|
||||||
docs/WINDOWS
|
<li>
|
||||||
</a>
|
<a href="docs/WINDOWS.html">
|
||||||
</li>
|
docs/WINDOWS
|
||||||
</ul>
|
</a>
|
||||||
<br>
|
</li>
|
||||||
<a href="#hidenav">
|
</ul>
|
||||||
Hide Navigation
|
<br>
|
||||||
</a>
|
<a href="#hidenav">
|
||||||
|
Hide Navigation
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<a id="returnhome" href="/">
|
||||||
<a id="returnhome" href="/">
|
|
||||||
/
|
|
||||||
</a>
|
|
||||||
<h1>
|
|
||||||
i2p.plugins.firefox
|
|
||||||
</h1>
|
|
||||||
<p>
|
|
||||||
A port of the batch scripts from
|
|
||||||
<code>
|
|
||||||
i2p.firefox
|
|
||||||
</code>
|
|
||||||
to Java.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>
|
|
||||||
Status:
|
|
||||||
</strong>
|
|
||||||
This package is maintained. It cannot solve all your problems. Fingerprinting
|
|
||||||
is a reality in modern browsers. Exploits are too. This software attempts to provide a
|
|
||||||
best-possible baseline of privacy first, security a close second for browsing the web that
|
|
||||||
exists within I2P. Do not expect it to withstand attacks from very powerful adversaries
|
|
||||||
who can spend time and money to screw up your life. Do expect it to resist advertisers,
|
|
||||||
trackers, and jerks using off-the-shelf techniques and exploits. It is fundamentally unable
|
|
||||||
to make changes which un-trust your browser vendor, your OS, your package manager or any
|
|
||||||
other system that exists underneath it.
|
|
||||||
<strong>
|
|
||||||
It is just a profile manager.
|
|
||||||
</strong>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>
|
|
||||||
All packages require a running I2P router.
|
|
||||||
</strong>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>
|
|
||||||
<a href="https://i2pgit.org/i2p-hackers/i2p.firefox">
|
|
||||||
Windows users should see the Easy-Install Bundle
|
|
||||||
</a>
|
|
||||||
</strong>
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Credits
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
This profile manager makes use of a set of browser extensions which are largely the work of others.
|
|
||||||
It makes use of dependencies that are the work of others. In many ways, it’s merely an elaborate
|
|
||||||
configuration tool. A smart one, but a configuration tool nonetheless. Many thanks to the following
|
|
||||||
projects, developers, and communities:
|
|
||||||
</p>
|
|
||||||
<h3>
|
|
||||||
Firefox and Chrome Extensions
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href="https://noscript.net">
|
|
||||||
NoScript - Giorgio Maone and others
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://www.eff.org/https-everywhere">
|
|
||||||
HTTPS Everywhere - Electronic Frontier Foundation
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://ublockorigin.com/">
|
|
||||||
uBlock Origin - Raymond Gorhill and others
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://www.localcdn.org/">
|
|
||||||
LocalCDN - nobody and others
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://jshelter.org/">
|
|
||||||
jShelter - Libor Polčák and others
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<h3>
|
|
||||||
Firefox Configuration Modifiations
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href="https://github.com/arkenfox/user.js/">
|
|
||||||
Arkenfox - Thorin Oakenpants and Others
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p>
|
|
||||||
You can find the license files for each of the these projects in the
|
|
||||||
<code>
|
|
||||||
src/i2p.firefox.*.profile/extensions/*
|
|
||||||
</code>
|
|
||||||
directory for Firefox, and the
|
|
||||||
<code>
|
|
||||||
src/i2p.chromium.*.profile/extensions/*.js/*
|
|
||||||
</code>
|
|
||||||
directories for Chromium.
|
|
||||||
</p>
|
|
||||||
<h2>
|
|
||||||
Getting started
|
|
||||||
</h2>
|
|
||||||
<h3>
|
|
||||||
Building the package:
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
See:
|
|
||||||
<a href="docs/BUILD.md">
|
|
||||||
BUILD.md
|
|
||||||
</a>
|
|
||||||
/
|
/
|
||||||
<a href="docs/BUILD.html">
|
</a>
|
||||||
BUILD.html
|
<h1>
|
||||||
</a>
|
i2p.plugins.firefox
|
||||||
</li>
|
</h1>
|
||||||
</ul>
|
<p>
|
||||||
<h3>
|
A port of the batch scripts from
|
||||||
Using a Binary
|
<code>
|
||||||
</h3>
|
i2p.firefox
|
||||||
<p>
|
</code>
|
||||||
For platform specific instructions, see
|
to Java.
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<p>
|
||||||
<li>
|
<strong>
|
||||||
<a href="docs/LINUX.md">
|
Status:
|
||||||
LINUX.md
|
</strong>
|
||||||
</a>
|
This package is maintained. It cannot solve all your problems. Fingerprinting
|
||||||
/
|
is a reality in modern browsers. Exploits are too. This software attempts to provide a
|
||||||
<a href="docs/LINUX.html">
|
best-possible baseline of privacy first, security a close second for browsing the web that
|
||||||
LINUX.html
|
exists within I2P. Do not expect it to withstand attacks from very powerful adversaries
|
||||||
</a>
|
who can spend time and money to screw up your life. Do expect it to resist advertisers,
|
||||||
</li>
|
trackers, and jerks using off-the-shelf techniques and exploits. It is fundamentally unable
|
||||||
<li>
|
to make changes which un-trust your browser vendor, your OS, your package manager or any
|
||||||
<a href="docs/OSX.md">
|
other system that exists underneath it.
|
||||||
OSX.md
|
<strong>
|
||||||
</a>
|
It is just a profile manager.
|
||||||
/
|
</strong>
|
||||||
<a href="docs/OSX.html">
|
</p>
|
||||||
OSX.html
|
<p>
|
||||||
</a>
|
<strong>
|
||||||
</li>
|
All packages require a running I2P router.
|
||||||
<li>
|
</strong>
|
||||||
<a href="docs/WINDOWS.md">
|
</p>
|
||||||
WINDOWS.md
|
<p>
|
||||||
</a>
|
<strong>
|
||||||
/
|
<a href="https://i2pgit.org/i2p-hackers/i2p.firefox">
|
||||||
<a href="docs/WINDOWS.html">
|
Windows users should see the Easy-Install Bundle
|
||||||
WINDOWS.html
|
</a>
|
||||||
</a>
|
</strong>
|
||||||
</li>
|
</p>
|
||||||
</ul>
|
<h2>
|
||||||
<h4>
|
Credits
|
||||||
All platforms, using a zip:
|
</h2>
|
||||||
<code>
|
<p>
|
||||||
.zip
|
This profile manager makes use of a set of browser extensions which are largely the work of others.
|
||||||
</code>
|
It makes use of dependencies that are the work of others. In many ways, it’s merely an elaborate
|
||||||
and a non-bundled Java
|
configuration tool. A smart one, but a configuration tool nonetheless. Many thanks to the following
|
||||||
</h4>
|
projects, developers, and communities:
|
||||||
<pre><code class="language-sh">mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
</p>
|
||||||
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.0.8/i2pfirefox.zip
|
<h3>
|
||||||
|
Firefox and Chrome Extensions
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://noscript.net">
|
||||||
|
NoScript - Giorgio Maone and others
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.eff.org/https-everywhere">
|
||||||
|
HTTPS Everywhere - Electronic Frontier Foundation
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://ublockorigin.com/">
|
||||||
|
uBlock Origin - Raymond Gorhill and others
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.localcdn.org/">
|
||||||
|
LocalCDN - nobody and others
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://jshelter.org/">
|
||||||
|
jShelter - Libor Polčák and others
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>
|
||||||
|
Firefox Configuration Modifiations
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/arkenfox/user.js/">
|
||||||
|
Arkenfox - Thorin Oakenpants and Others
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
You can find the license files for each of the these projects in the
|
||||||
|
<code>
|
||||||
|
src/i2p.firefox.*.profile/extensions/*
|
||||||
|
</code>
|
||||||
|
directory for Firefox, and the
|
||||||
|
<code>
|
||||||
|
src/i2p.chromium.*.profile/extensions/*.js/*
|
||||||
|
</code>
|
||||||
|
directories for Chromium.
|
||||||
|
</p>
|
||||||
|
<h2>
|
||||||
|
Getting started
|
||||||
|
</h2>
|
||||||
|
<h3>
|
||||||
|
Building the package:
|
||||||
|
</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
See:
|
||||||
|
<a href="docs/BUILD.md">
|
||||||
|
BUILD.md
|
||||||
|
</a>
|
||||||
|
/
|
||||||
|
<a href="docs/BUILD.html">
|
||||||
|
BUILD.html
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>
|
||||||
|
Using a Binary
|
||||||
|
</h3>
|
||||||
|
<p>
|
||||||
|
For platform specific instructions, see
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="docs/LINUX.md">
|
||||||
|
LINUX.md
|
||||||
|
</a>
|
||||||
|
/
|
||||||
|
<a href="docs/LINUX.html">
|
||||||
|
LINUX.html
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="docs/OSX.md">
|
||||||
|
OSX.md
|
||||||
|
</a>
|
||||||
|
/
|
||||||
|
<a href="docs/OSX.html">
|
||||||
|
OSX.html
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="docs/WINDOWS.md">
|
||||||
|
WINDOWS.md
|
||||||
|
</a>
|
||||||
|
/
|
||||||
|
<a href="docs/WINDOWS.html">
|
||||||
|
WINDOWS.html
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h4>
|
||||||
|
All platforms, using a zip:
|
||||||
|
<code>
|
||||||
|
.zip
|
||||||
|
</code>
|
||||||
|
and a non-bundled Java
|
||||||
|
</h4>
|
||||||
|
<pre><code class="language-sh">mkdir ~/tmp-i2pfirefox && cd ~/tmp-i2pfirefox
|
||||||
|
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/1.3.0/i2pfirefox.zip
|
||||||
unzip i2pfirefox.zip
|
unzip i2pfirefox.zip
|
||||||
./i2pfirefox.cmd
|
./i2pfirefox.cmd
|
||||||
|
|
||||||
@ -310,27 +313,27 @@ unzip i2pfirefox.zip
|
|||||||
|
|
||||||
./i2pchromium.cmd
|
./i2pchromium.cmd
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<div id="sourcecode">
|
<div id="sourcecode">
|
||||||
<span id="sourcehead">
|
<span id="sourcehead">
|
||||||
<strong>
|
<strong>
|
||||||
Get the source code:
|
Get the source code:
|
||||||
</strong>
|
</strong>
|
||||||
</span>
|
</span>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
<a href="https://github.com/eyedeekay/i2p.plugins.firefox">
|
||||||
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
Source Repository: (https://github.com/eyedeekay/i2p.plugins.firefox)
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="#show">
|
<a href="#show">
|
||||||
Show license
|
Show license
|
||||||
</a>
|
</a>
|
||||||
<div id="show">
|
<div id="show">
|
||||||
<div id="hide">
|
<div id="hide">
|
||||||
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
<pre><code> Copyright 2022 idk (hankhill19580@gmail.com)
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -1173,9 +1176,10 @@ consider it more useful to permit linking proprietary applications with the
|
|||||||
library. If this is what you want to do, use the GNU Library General
|
library. If this is what you want to do, use the GNU Library General
|
||||||
Public License instead of this License.
|
Public License instead of this License.
|
||||||
</code></pre>
|
</code></pre>
|
||||||
<a href="#hide">
|
<a href="#hide">
|
||||||
Hide license
|
Hide license
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -1184,7 +1188,7 @@ Public License instead of this License.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a href="https://geti2p.net/">
|
<a href="https://geti2p.net/">
|
||||||
<img src="i2plogo.png"></img>
|
<img class="i2plogo" src="i2plogo.png"></img>
|
||||||
I2P
|
I2P
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
11
osx-dmg.sh
11
osx-dmg.sh
@ -1,5 +1,13 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
. ./config.sh
|
. ./config.sh
|
||||||
|
|
||||||
|
if [ -z "$I2P_SIGNER_USERPHRASE" ]; then
|
||||||
|
I2P_SIGNER_USERPHRASE=$(security find-identity -v -p codesigning | cut -d ' ' -f 4)
|
||||||
|
echo "Warning: using automatically configured signer ID, make sure this is the one you want: $I2P_SIGNER_USERPHRASE"
|
||||||
|
echo "continuing in 10 seconds"
|
||||||
|
sleep 10
|
||||||
|
fi
|
||||||
|
|
||||||
jpackage \
|
jpackage \
|
||||||
--verbose \
|
--verbose \
|
||||||
--type dmg \
|
--type dmg \
|
||||||
@ -8,4 +16,7 @@ jpackage \
|
|||||||
--icon src/icon.icns \
|
--icon src/icon.icns \
|
||||||
--input src/build \
|
--input src/build \
|
||||||
--main-jar i2pfirefox.jar \
|
--main-jar i2pfirefox.jar \
|
||||||
|
--mac-sign \
|
||||||
|
--mac-signing-key-user-name "$I2P_SIGNER_USERPHRASE" \
|
||||||
|
--mac-entitlements resources/entitlements.xml \
|
||||||
--main-class net.i2p.i2pfirefox.I2PBrowser
|
--main-class net.i2p.i2pfirefox.I2PBrowser
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
clientApp.0.main=net.i2p.i2pfirefox.I2PBrowserPlugin
|
clientApp.0.main=net.i2p.i2pfirefox.plugin.I2PBrowserPlugin
|
||||||
clientApp.0.name=I2PBrowserPlugin
|
clientApp.0.name=i2pfirefox
|
||||||
clientApp.0.delay=0
|
clientApp.0.delay=0
|
||||||
clientApp.0.startOnLoad=true
|
clientApp.0.startOnLoad=true
|
||||||
# we also use i2p.jar and i2ptunnel.jar, they are in the standard router classpath
|
clientApp.0.classpath=$PLUGIN/lib/i2pfirefox-plugin.jar
|
||||||
clientApp.0.classpath=$PLUGIN/lib/i2pfirefox.jar,$I2P/lib/i2psnark.jar
|
|
@ -12,4 +12,4 @@ READMELINE=`grep 'i2p.plugins.firefox/releases/download' docs/OSX.md | grep i2pf
|
|||||||
sed -i "s|${READMELINE}|wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/${GITHUB_TAG}/i2pfirefox.zip|g" docs/OSX.md
|
sed -i "s|${READMELINE}|wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/${GITHUB_TAG}/i2pfirefox.zip|g" docs/OSX.md
|
||||||
sed -i "s|${NUMLINE}| <property name=\"release.number\" value=\"$GITHUB_TAG\" />|g" build.xml
|
sed -i "s|${NUMLINE}| <property name=\"release.number\" value=\"$GITHUB_TAG\" />|g" build.xml
|
||||||
edgar && git push --all
|
edgar && git push --all
|
||||||
ant distclean versionMd jar plugin torrent freeZip jpackage debian fedora tarball
|
ant distclean versionMd jar plugin torrent freeZip jpackage debian tarball
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
. ./config.sh
|
. ./config.sh
|
||||||
./preprelease.sh
|
#./preprelease.sh
|
||||||
github-release release --user "${GITHUB_USER}" \
|
github-release release --user "${GITHUB_USER}" \
|
||||||
--repo "${GITHUB_REPO}" \
|
--repo "${GITHUB_REPO}" \
|
||||||
--name "${GITHUB_NAME}" \
|
--name "${GITHUB_NAME}" \
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#Build Number for ANT. Do not edit!
|
#Build Number for ANT. Do not edit!
|
||||||
#Wed Jan 18 06:15:14 UTC 2023
|
#Thu Mar 07 13:23:49 EST 2024
|
||||||
build.number=478
|
build.number=708
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
<pathelement location="${i2plib}/i2ptunnel.jar" />
|
<pathelement location="${i2plib}/i2ptunnel.jar" />
|
||||||
<pathelement location="${i2plib}/i2psnark.jar" />
|
<pathelement location="${i2plib}/i2psnark.jar" />
|
||||||
<pathelement location="${i2plib}/mstreaming.jar" />
|
<pathelement location="${i2plib}/mstreaming.jar" />
|
||||||
|
<pathelement location="${i2plib}/desktopgui.jar" />
|
||||||
<pathelement location="${ant.home}/lib/ant.jar"/>
|
<pathelement location="${ant.home}/lib/ant.jar"/>
|
||||||
<pathelement location="${jettylib}/org.mortbay.jetty.jar"/>
|
<pathelement location="${jettylib}/org.mortbay.jetty.jar"/>
|
||||||
<pathelement location="${jettylib}/jasper-runtime.jar" />
|
<pathelement location="${jettylib}/jasper-runtime.jar" />
|
||||||
@ -40,11 +41,31 @@
|
|||||||
debug="true" deprecation="on" source="${javac.version}" target="${javac.version}"
|
debug="true" deprecation="on" source="${javac.version}" target="${javac.version}"
|
||||||
destdir="./build/obj"
|
destdir="./build/obj"
|
||||||
includeAntRuntime="false"
|
includeAntRuntime="false"
|
||||||
classpath="${i2plib}/i2p.jar:${i2plib}/i2ptunnel.jar:${i2plib}/i2psnark.jar:${i2plib}/mstreaming.jar:${i2plib}/systray.jar:${jettylib}/org.mortbay.jetty.jar:${jettylib}/jetty-util.jar:${jettylib}/jetty-xml.jar" >
|
classpath="${i2plib}/i2p.jar:${i2plib}/i2ptunnel.jar:${i2plib}/i2psnark.jar:${i2plib}/mstreaming.jar:${i2plib}/systray.jar:${i2plib}/desktopgui.jar:${jettylib}/org.mortbay.jetty.jar:${jettylib}/jetty-util.jar:${jettylib}/jetty-xml.jar" >
|
||||||
<compilerarg line="${javac.compilerargs}" />
|
<compilerarg line="${javac.compilerargs}" />
|
||||||
</javac>
|
</javac>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="pluginjar" depends="jar">
|
||||||
|
<mkdir dir="./build" />
|
||||||
|
<mkdir dir="./build/obj" />
|
||||||
|
<javac
|
||||||
|
srcdir="./plugin"
|
||||||
|
debug="true" deprecation="on" source="${javac.version}" target="${javac.version}"
|
||||||
|
destdir="./build/obj"
|
||||||
|
includeAntRuntime="false"
|
||||||
|
classpath="${i2plib}/i2p.jar:${i2plib}/i2ptunnel.jar:${i2plib}/i2psnark.jar:${i2plib}/mstreaming.jar:${i2plib}/systray.jar:${i2plib}/desktopgui.jar:${jettylib}/org.mortbay.jetty.jar:${jettylib}/jetty-util.jar:${jettylib}/jetty-xml.jar:./build/i2pfirefox.jar" >
|
||||||
|
<compilerarg line="${javac.compilerargs}" />
|
||||||
|
</javac>
|
||||||
|
<jar destfile="build/i2pfirefox-plugin.jar" basedir="./build/obj" includes="**/*.class" >
|
||||||
|
<fileset file="i2p.firefox.base.profile.zip" />
|
||||||
|
<fileset file="i2p.firefox.usability.profile.zip" />
|
||||||
|
<fileset file="i2p.chromium.base.profile.zip" />
|
||||||
|
<fileset file="i2p.chromium.usability.profile.zip" />
|
||||||
|
<fileset file="icon.png" />
|
||||||
|
</jar>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="jar" depends="builddep, compile">
|
<target name="jar" depends="builddep, compile">
|
||||||
<jar destfile="build/i2pfirefox.jar" basedir="./build/obj" includes="**/*.class" >
|
<jar destfile="build/i2pfirefox.jar" basedir="./build/obj" includes="**/*.class" >
|
||||||
<fileset file="i2p.firefox.base.profile.zip" />
|
<fileset file="i2p.firefox.base.profile.zip" />
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package net.i2p.i2pfirefox;
|
package net.i2p.i2pfirefox;
|
||||||
|
|
||||||
import java.awt.AWTException;
|
/*import java.awt.AWTException;
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Image;
|
import java.awt.Image;
|
||||||
import java.awt.Menu;
|
import java.awt.Menu;
|
||||||
@ -13,7 +13,7 @@ import java.awt.event.ActionEvent;
|
|||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import java.awt.event.MouseAdapter;
|
import java.awt.event.MouseAdapter;
|
||||||
import java.awt.event.MouseEvent;
|
import java.awt.event.MouseEvent;
|
||||||
import java.awt.event.MouseListener;
|
import java.awt.event.MouseListener;*/
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.FileWriter;
|
import java.io.FileWriter;
|
||||||
@ -46,26 +46,6 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
private final I2PChromium i2pChromium = new I2PChromium();
|
private final I2PChromium i2pChromium = new I2PChromium();
|
||||||
private final I2PGenericUnsafeBrowser i2pGeneral =
|
private final I2PGenericUnsafeBrowser i2pGeneral =
|
||||||
new I2PGenericUnsafeBrowser();
|
new I2PGenericUnsafeBrowser();
|
||||||
private final Toolkit toolkit = Toolkit.getDefaultToolkit();
|
|
||||||
private final SystemTray tray = initTray();
|
|
||||||
private final Image image = toolkit.getImage("icon.png");
|
|
||||||
private final TrayIcon icon = initIcon();
|
|
||||||
private final PopupMenu menu = initMenu();
|
|
||||||
|
|
||||||
private final Menu submenuStrict = new Menu("Strict Mode");
|
|
||||||
private final MenuItem launchRegularBrowserStrict =
|
|
||||||
new MenuItem("Launch I2P Browser");
|
|
||||||
private final MenuItem launchPrivateBrowserStrict =
|
|
||||||
new MenuItem("Launch I2P Browser - Throwaway Session");
|
|
||||||
private final Menu submenuUsability = new Menu("Usability Mode");
|
|
||||||
private final MenuItem launchRegularBrowserUsability =
|
|
||||||
new MenuItem("Launch I2P Browser");
|
|
||||||
private final MenuItem launchPrivateBrowserUsability =
|
|
||||||
new MenuItem("Launch I2P Browser - Throwaway Session");
|
|
||||||
private final MenuItem launchConfigBrowserUsability =
|
|
||||||
new MenuItem("Launch I2P Console");
|
|
||||||
private final MenuItem closeItem = new MenuItem("Close");
|
|
||||||
|
|
||||||
public boolean firefox = false;
|
public boolean firefox = false;
|
||||||
public boolean chromium = false;
|
public boolean chromium = false;
|
||||||
public boolean generic = false;
|
public boolean generic = false;
|
||||||
@ -73,29 +53,37 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
public boolean usability = false;
|
public boolean usability = false;
|
||||||
public int privateBrowsing = 0;
|
public int privateBrowsing = 0;
|
||||||
private boolean outputConfig = false;
|
private boolean outputConfig = false;
|
||||||
private boolean useSystray = true;
|
|
||||||
|
|
||||||
private void launchFirefox(int privateWindow, String[] url) {
|
public void launchFirefox(int privateWindow, String[] url) {
|
||||||
logger.info("I2PFirefox" + privateWindow);
|
String priv = privateWindow == 1 ? "private-window" : "long-profile";
|
||||||
|
logger.info("I2PFirefox" + priv);
|
||||||
i2pFirefox.usability = usability;
|
i2pFirefox.usability = usability;
|
||||||
|
if (url == null)
|
||||||
|
url = new String[] {"about:blank"};
|
||||||
if (outputConfig)
|
if (outputConfig)
|
||||||
i2pFirefox.storeFirefoxDefaults();
|
i2pFirefox.storeFirefoxDefaults();
|
||||||
i2pFirefox.launch(privateWindow, url);
|
i2pFirefox.launch(privateWindow, url);
|
||||||
}
|
}
|
||||||
private void launchChromium(int privateWindow, String[] url) {
|
public void launchChromium(int privateWindow, String[] url) {
|
||||||
logger.info("I2PChromium" + privateWindow);
|
String priv = privateWindow == 1 ? "private-window" : "long-profile";
|
||||||
|
logger.info("I2PChromium" + priv);
|
||||||
i2pChromium.usability = usability;
|
i2pChromium.usability = usability;
|
||||||
|
if (url == null)
|
||||||
|
url = new String[] {"about:blank"};
|
||||||
if (outputConfig)
|
if (outputConfig)
|
||||||
i2pChromium.storeChromiumDefaults();
|
i2pChromium.storeChromiumDefaults();
|
||||||
i2pChromium.launch(privateWindow, url);
|
i2pChromium.launch(privateWindow, url);
|
||||||
}
|
}
|
||||||
private void launchGeneric(int privateWindowInt, String[] url) {
|
private void launchGeneric(int privateWindowInt, String[] url) {
|
||||||
|
String priv = privateWindowInt == 1 ? "private-window" : "long-profile";
|
||||||
boolean privateWindow = false;
|
boolean privateWindow = false;
|
||||||
|
if (url == null)
|
||||||
|
url = new String[] {"about:blank"};
|
||||||
if (privateWindowInt == 1)
|
if (privateWindowInt == 1)
|
||||||
privateWindow = true;
|
privateWindow = true;
|
||||||
if (outputConfig)
|
if (outputConfig)
|
||||||
i2pGeneral.storeGenericDefaults();
|
i2pGeneral.storeGenericDefaults();
|
||||||
logger.info("I2PGeneric" + privateWindowInt);
|
logger.info("I2PGeneric" + priv);
|
||||||
i2pGeneral.launch(privateWindow, url);
|
i2pGeneral.launch(privateWindow, url);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,7 +93,7 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
*
|
*
|
||||||
* @since 0.0.16
|
* @since 0.0.16
|
||||||
*/
|
*/
|
||||||
public I2PBrowser() { initIconFile(); }
|
public I2PBrowser() {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct an I2PBrowser class which automatically determines which browser
|
* Construct an I2PBrowser class which automatically determines which browser
|
||||||
@ -113,10 +101,7 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
*
|
*
|
||||||
* @since 0.0.18
|
* @since 0.0.18
|
||||||
*/
|
*/
|
||||||
public I2PBrowser(String browserPath) {
|
public I2PBrowser(String browserPath) { this.BROWSER = browserPath; }
|
||||||
this.BROWSER = browserPath;
|
|
||||||
initIconFile();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBrowser(String browserPath) { this.BROWSER = browserPath; }
|
public void setBrowser(String browserPath) { this.BROWSER = browserPath; }
|
||||||
|
|
||||||
@ -164,21 +149,6 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
* @since 0.0.17
|
* @since 0.0.17
|
||||||
*/
|
*/
|
||||||
public void launch(int privateWindow, String[] url) {
|
public void launch(int privateWindow, String[] url) {
|
||||||
validateUserDir();
|
|
||||||
if (generic) {
|
|
||||||
this.launchGeneric(privateWindow, url);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ((chromium && firefox) || (!chromium && !firefox)) {
|
|
||||||
if (this.hasFirefox()) {
|
|
||||||
this.launchFirefox(privateWindow, url);
|
|
||||||
} else if (this.hasChromium()) {
|
|
||||||
this.launchChromium(privateWindow, url);
|
|
||||||
} else {
|
|
||||||
this.launchGeneric(privateWindow, url);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (chromiumFirst) {
|
if (chromiumFirst) {
|
||||||
if (chromium) {
|
if (chromium) {
|
||||||
this.launchChromium(privateWindow, url);
|
this.launchChromium(privateWindow, url);
|
||||||
@ -224,6 +194,32 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
*/
|
*/
|
||||||
public void launch() { launch(false); }
|
public void launch() { launch(false); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stop all running processes managed by the browser manager.
|
||||||
|
*
|
||||||
|
* @return true if successful, false if not
|
||||||
|
*/
|
||||||
|
public boolean stop() {
|
||||||
|
boolean r = true;
|
||||||
|
if (i2pFirefox != null)
|
||||||
|
r = i2pFirefox.stop();
|
||||||
|
if (i2pChromium != null)
|
||||||
|
r = i2pChromium.stop();
|
||||||
|
if (i2pGeneral != null)
|
||||||
|
r = i2pGeneral.stop();
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean running() {
|
||||||
|
if (i2pFirefox != null)
|
||||||
|
return i2pFirefox.running();
|
||||||
|
if (i2pChromium != null)
|
||||||
|
return i2pChromium.running();
|
||||||
|
if (i2pGeneral != null)
|
||||||
|
return i2pGeneral.running();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private String ValidURL(String inUrl) {
|
private String ValidURL(String inUrl) {
|
||||||
String[] schemes = {"http", "https"};
|
String[] schemes = {"http", "https"};
|
||||||
for (String scheme : schemes) {
|
for (String scheme : schemes) {
|
||||||
@ -239,7 +235,6 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
i2pBrowser.startup(args);
|
i2pBrowser.startup(args);
|
||||||
}
|
}
|
||||||
public ArrayList<String> parseArgs(String[] args) {
|
public ArrayList<String> parseArgs(String[] args) {
|
||||||
validateUserDir();
|
|
||||||
logger.info("I2PBrowser");
|
logger.info("I2PBrowser");
|
||||||
ArrayList<String> visitURL = new ArrayList<String>();
|
ArrayList<String> visitURL = new ArrayList<String>();
|
||||||
if (args != null) {
|
if (args != null) {
|
||||||
@ -270,9 +265,6 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
if (arg.equals("-outputconfig")) {
|
if (arg.equals("-outputconfig")) {
|
||||||
outputConfig = true;
|
outputConfig = true;
|
||||||
}
|
}
|
||||||
if (arg.equals("-nosystray")) {
|
|
||||||
useSystray = false;
|
|
||||||
}
|
|
||||||
if (arg.equals("-noproxycheck")) {
|
if (arg.equals("-noproxycheck")) {
|
||||||
logger.info("zeroing out proxy check");
|
logger.info("zeroing out proxy check");
|
||||||
this.setProxyTimeoutTime(0);
|
this.setProxyTimeoutTime(0);
|
||||||
@ -288,181 +280,14 @@ public class I2PBrowser extends I2PGenericUnsafeBrowser {
|
|||||||
public void startup(String[] args) {
|
public void startup(String[] args) {
|
||||||
ArrayList<String> visitURL = parseArgs(args);
|
ArrayList<String> visitURL = parseArgs(args);
|
||||||
try {
|
try {
|
||||||
if (useSystray) {
|
Runtime.getRuntime().addShutdownHook(new Thread() {
|
||||||
startupSystray();
|
@Override
|
||||||
|
public void run() {}
|
||||||
Runtime.getRuntime().addShutdownHook(new Thread() {
|
});
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
shutdownSystray();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logger.warning(e.toString());
|
logger.warning(e.toString());
|
||||||
}
|
}
|
||||||
this.launch(this.privateBrowsing,
|
this.launch(this.privateBrowsing,
|
||||||
visitURL.toArray(new String[visitURL.size()]));
|
visitURL.toArray(new String[visitURL.size()]));
|
||||||
}
|
}
|
||||||
protected boolean createSystrayRunningFile() {
|
|
||||||
if (!systrayRunningExternally()) {
|
|
||||||
try {
|
|
||||||
File systrayIsRunningFile =
|
|
||||||
new File(runtimeDirectory(""), "systray.running");
|
|
||||||
FileWriter myWriter = new FileWriter(systrayIsRunningFile);
|
|
||||||
myWriter.write("systray.running file created");
|
|
||||||
myWriter.close();
|
|
||||||
return true;
|
|
||||||
} catch (IOException ioe) {
|
|
||||||
logger.warning(ioe.toString());
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
protected boolean systrayRunningExternally() {
|
|
||||||
File systrayIsRunningFile =
|
|
||||||
new File(runtimeDirectory(""), "systray.running");
|
|
||||||
if (systrayIsRunningFile.exists()) {
|
|
||||||
logger.info("Systray is already running in another process: " +
|
|
||||||
systrayIsRunningFile.toString());
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
logger.info("Systray does not appear to be running");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
private SystemTray initTray() {
|
|
||||||
if (systrayRunningExternally()) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (!SystemTray.isSupported()) {
|
|
||||||
logger.warning("SystemTray is not supported");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return SystemTray.getSystemTray();
|
|
||||||
}
|
|
||||||
|
|
||||||
private PopupMenu initMenu() {
|
|
||||||
PopupMenu menu = new PopupMenu();
|
|
||||||
return menu;
|
|
||||||
}
|
|
||||||
|
|
||||||
private File initIconFile() {
|
|
||||||
File iconFile = new File(runtimeDirectory(""), "icon.png");
|
|
||||||
if (!iconFile.exists()) {
|
|
||||||
InputStream resources =
|
|
||||||
I2PBrowser.class.getClassLoader().getResourceAsStream("icon.png");
|
|
||||||
try {
|
|
||||||
OutputStream fos = new FileOutputStream(iconFile);
|
|
||||||
copy(resources, fos);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logger.warning(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return iconFile;
|
|
||||||
}
|
|
||||||
private TrayIcon initIcon() {
|
|
||||||
TrayIcon icon = new TrayIcon(image, "I2P Browser Profile Controller", menu);
|
|
||||||
icon.addMouseListener(new MouseAdapter() {
|
|
||||||
public void mouseClicked(MouseEvent e) {
|
|
||||||
if (e.getClickCount() == 2) {
|
|
||||||
String[] args = {"-usability", "-app", "http://127.0.0.1:7657"};
|
|
||||||
main(args);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
icon.setImageAutoSize(true);
|
|
||||||
return icon;
|
|
||||||
}
|
|
||||||
protected void startupSystray() {
|
|
||||||
if (!systrayRunningExternally()) {
|
|
||||||
logger.info("Setting up systray");
|
|
||||||
try {
|
|
||||||
if (useSystray) {
|
|
||||||
logger.info("Starting systray");
|
|
||||||
try {
|
|
||||||
if (systray()) {
|
|
||||||
logger.info("Systray started");
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
// TODO Auto-generated catch block
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
if (!createSystrayRunningFile()) {
|
|
||||||
logger.warning("Failed to create systray running file");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
logger.info("Adding icon to systray");
|
|
||||||
tray.add(icon);
|
|
||||||
} catch (AWTException e) {
|
|
||||||
logger.warning(e.toString());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
logger.warning("Systray is already running externally");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
protected void shutdownSystray() {
|
|
||||||
if (tray != null)
|
|
||||||
tray.remove(icon);
|
|
||||||
if (systrayRunningExternally()) {
|
|
||||||
File systrayIsRunningFile =
|
|
||||||
new File(runtimeDirectory(""), "systray.running");
|
|
||||||
systrayIsRunningFile.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public boolean systray() throws Exception {
|
|
||||||
if (tray == null)
|
|
||||||
throw new Exception("System Tray is Null Exception");
|
|
||||||
launchRegularBrowserStrict.addActionListener(new ActionListener() {
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
String[] args = {"-strict"};
|
|
||||||
main(args);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
submenuStrict.add(launchRegularBrowserStrict);
|
|
||||||
logger.info("Added strict mode browser");
|
|
||||||
launchPrivateBrowserStrict.addActionListener(new ActionListener() {
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
String[] args = {"-private", "-strict"};
|
|
||||||
main(args);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
submenuStrict.add(launchPrivateBrowserStrict);
|
|
||||||
logger.info("Added strict+private mode browser");
|
|
||||||
menu.add(submenuStrict);
|
|
||||||
logger.info("Added strict mode submenu");
|
|
||||||
launchRegularBrowserUsability.addActionListener(new ActionListener() {
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
String[] args = {"-usability"};
|
|
||||||
main(args);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
submenuUsability.add(launchRegularBrowserUsability);
|
|
||||||
logger.info("Added usability mode browser");
|
|
||||||
launchPrivateBrowserUsability.addActionListener(new ActionListener() {
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
String[] args = {"-private", "-strict"};
|
|
||||||
main(args);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
submenuUsability.add(launchPrivateBrowserUsability);
|
|
||||||
logger.info("Added usability+private mode browser");
|
|
||||||
launchConfigBrowserUsability.addActionListener(new ActionListener() {
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
String[] args = {"-usability", "-app", "http://127.0.0.1:7657"};
|
|
||||||
main(args);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
menu.add(submenuUsability);
|
|
||||||
menu.add(launchConfigBrowserUsability);
|
|
||||||
logger.info("Added config-only browser");
|
|
||||||
logger.info("Added usability mode submenu");
|
|
||||||
closeItem.addActionListener(new ActionListener() {
|
|
||||||
public void actionPerformed(ActionEvent e) { shutdownSystray(); }
|
|
||||||
});
|
|
||||||
menu.add(closeItem);
|
|
||||||
icon.setPopupMenu(menu);
|
|
||||||
logger.info("Added close menu item");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -1,188 +0,0 @@
|
|||||||
package net.i2p.i2pfirefox;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.logging.FileHandler;
|
|
||||||
import java.util.logging.Logger;
|
|
||||||
import java.util.logging.SimpleFormatter;
|
|
||||||
import net.i2p.I2PAppContext;
|
|
||||||
import net.i2p.app.ClientApp;
|
|
||||||
import net.i2p.app.ClientAppManager;
|
|
||||||
import net.i2p.app.ClientAppState;
|
|
||||||
import net.i2p.util.EepGet;
|
|
||||||
|
|
||||||
public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
|
|
||||||
private final I2PAppContext context;
|
|
||||||
private final ClientAppManager cam;
|
|
||||||
private final String[] args;
|
|
||||||
private volatile boolean got = false;
|
|
||||||
private volatile boolean shutdown = false;
|
|
||||||
public I2PBrowserPlugin(I2PAppContext context, ClientAppManager listener,
|
|
||||||
String[] args) {
|
|
||||||
this.cam = listener;
|
|
||||||
cam.notify(this, ClientAppState.UNINITIALIZED,
|
|
||||||
"Initializing Profile Manager Systray Plugin", null);
|
|
||||||
this.context = context;
|
|
||||||
this.args = args;
|
|
||||||
cam.notify(this, ClientAppState.INITIALIZED,
|
|
||||||
"Profile Manager Systray Plugin Initialized", null);
|
|
||||||
}
|
|
||||||
private File threadLogFile() {
|
|
||||||
validateUserDir();
|
|
||||||
String userDir = System.getProperty("user.dir");
|
|
||||||
File log = new File(userDir, "logs");
|
|
||||||
if (!log.exists())
|
|
||||||
log.mkdirs();
|
|
||||||
return new File(log, "browserlauncherthreadlogger.log");
|
|
||||||
}
|
|
||||||
public String getDisplayName() { return "Browser Profile Manager"; }
|
|
||||||
public String getName() { return "browserProfileManager"; }
|
|
||||||
public void shutdown(String[] args) {
|
|
||||||
this.shutdownSystray();
|
|
||||||
cam.notify(this, ClientAppState.STOPPING,
|
|
||||||
"Shutting down up profile manager systray", null);
|
|
||||||
got = true;
|
|
||||||
shutdown = true;
|
|
||||||
cam.unregister(this);
|
|
||||||
cam.notify(this, ClientAppState.STOPPED,
|
|
||||||
"Shutting down up profile manager systray", null);
|
|
||||||
}
|
|
||||||
private void downloadInBackground() throws IOException {
|
|
||||||
try {
|
|
||||||
Logger threadLogger = Logger.getLogger("browserlauncherupdatethread");
|
|
||||||
FileHandler fh = new FileHandler(threadLogFile().toString());
|
|
||||||
threadLogger.addHandler(fh);
|
|
||||||
SimpleFormatter formatter = new SimpleFormatter();
|
|
||||||
fh.setFormatter(formatter);
|
|
||||||
got = downloadTorrent();
|
|
||||||
while (!got) {
|
|
||||||
threadLogger.info("Working to download updates in the background");
|
|
||||||
if (shutdown) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
got = downloadTorrent();
|
|
||||||
try {
|
|
||||||
Thread.sleep(5000);
|
|
||||||
} catch (InterruptedException err) {
|
|
||||||
logger.warning(err.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (got) {
|
|
||||||
try {
|
|
||||||
File content = torrentFileContents();
|
|
||||||
if (content.exists()) {
|
|
||||||
content.delete();
|
|
||||||
}
|
|
||||||
} catch (IOException err) {
|
|
||||||
threadLogger.warning(err.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (IOException err) {
|
|
||||||
// just re-throw here
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public void startup() {
|
|
||||||
shutdown = false;
|
|
||||||
cam.notify(this, ClientAppState.STARTING,
|
|
||||||
"Starting up profile manager systray", null);
|
|
||||||
Runnable r = new Runnable() {
|
|
||||||
public void run() {
|
|
||||||
logger.info("Downloading in background thread");
|
|
||||||
try {
|
|
||||||
downloadInBackground();
|
|
||||||
} catch (IOException err) {
|
|
||||||
err.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
new Thread(r).start();
|
|
||||||
try {
|
|
||||||
this.startup(args);
|
|
||||||
cam.register(this);
|
|
||||||
cam.notify(this, ClientAppState.RUNNING,
|
|
||||||
"Starting up profile manager systray", null);
|
|
||||||
} catch (Exception e) {
|
|
||||||
logger.info(e.toString());
|
|
||||||
cam.notify(this, ClientAppState.START_FAILED,
|
|
||||||
"Error starting profile manager systray", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private File torrentDir() throws IOException {
|
|
||||||
File configDir = context.getConfigDir();
|
|
||||||
if (configDir == null) {
|
|
||||||
throw new IOException("The I2P Config directory is null");
|
|
||||||
}
|
|
||||||
if (!configDir.exists()) {
|
|
||||||
throw new IOException("The I2P Config directory does not exist");
|
|
||||||
}
|
|
||||||
File snarkDir = new File(configDir, "i2psnark");
|
|
||||||
if (snarkDir == null) {
|
|
||||||
throw new IOException("The Snark directory is null");
|
|
||||||
}
|
|
||||||
if (!snarkDir.exists()) {
|
|
||||||
throw new IOException("The Snark directory does not exist");
|
|
||||||
}
|
|
||||||
return snarkDir;
|
|
||||||
}
|
|
||||||
private File torrentFile() throws IOException {
|
|
||||||
try {
|
|
||||||
File torrents = torrentDir();
|
|
||||||
File torrent = new File(torrents, "i2p.plugins.firefox.torrent");
|
|
||||||
if (torrent == null) {
|
|
||||||
throw new IOException("Cannot download torrent, torrent file is null");
|
|
||||||
}
|
|
||||||
return torrent;
|
|
||||||
} catch (IOException err) {
|
|
||||||
logger.warning(err.toString());
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
private File torrentFileContents() throws IOException {
|
|
||||||
try {
|
|
||||||
File torrents = torrentDir();
|
|
||||||
File torrent = new File(torrents, "i2p.plugins.firefox");
|
|
||||||
if (torrent == null) {
|
|
||||||
throw new IOException("Torrent directory contents are null");
|
|
||||||
}
|
|
||||||
return torrent;
|
|
||||||
} catch (IOException err) {
|
|
||||||
logger.warning(err.toString());
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
private boolean downloadTorrent() {
|
|
||||||
try {
|
|
||||||
String url =
|
|
||||||
"http://idk.i2p/i2p.plugins.firefox/i2p.plugins.firefox.torrent";
|
|
||||||
String name = torrentFile().getAbsolutePath();
|
|
||||||
logger.info("Downloading " + url + " to " + name);
|
|
||||||
EepGet eepGet =
|
|
||||||
new EepGet(context, true, "127.0.0.1", 4444, 5, name, url);
|
|
||||||
if (eepGet.getNotModified()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return eepGet.fetch(60, 180, 60);
|
|
||||||
} catch (IOException err) {
|
|
||||||
logger.warning(err.toString());
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
public ClientAppState getState() {
|
|
||||||
if (shutdown && !systrayRunningExternally()) {
|
|
||||||
String msg = "Firefox profile manager systray is stopped";
|
|
||||||
logger.info(msg);
|
|
||||||
cam.notify(this, ClientAppState.STOPPED, msg, null);
|
|
||||||
return ClientAppState.STOPPED;
|
|
||||||
}
|
|
||||||
if (systrayRunningExternally()) {
|
|
||||||
String msg = "Firefox profile manager systray is running";
|
|
||||||
logger.info(msg);
|
|
||||||
cam.notify(this, ClientAppState.RUNNING, msg, null);
|
|
||||||
return ClientAppState.RUNNING;
|
|
||||||
}
|
|
||||||
return ClientAppState.FORKED; // Used as a euphemism for unknown here.
|
|
||||||
}
|
|
||||||
}
|
|
@ -29,6 +29,7 @@ import java.util.stream.Stream;
|
|||||||
public class I2PChromium extends I2PChromiumProfileUnpacker {
|
public class I2PChromium extends I2PChromiumProfileUnpacker {
|
||||||
private final String[] CHROMIUM_SEARCH_PATHS = CHROMIUM_FINDER();
|
private final String[] CHROMIUM_SEARCH_PATHS = CHROMIUM_FINDER();
|
||||||
private Process p = null;
|
private Process p = null;
|
||||||
|
private String chromePath;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct an I2PChromium class which manages an instance of Chromium and
|
* Construct an I2PChromium class which manages an instance of Chromium and
|
||||||
@ -60,34 +61,35 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
public void storeChromiumDefaults() {
|
public void storeChromiumDefaults() {
|
||||||
List<String> list = new ArrayList<String>();
|
List<String> list = new ArrayList<String>();
|
||||||
list = Arrays.asList(chromiumPathsWindows());
|
list = Arrays.asList(chromiumPathsWindows());
|
||||||
prop.setProperty("chromium.paths.windows",
|
getProperties().setProperty("chromium.paths.windows",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(chromiumPathsUnix());
|
list = Arrays.asList(chromiumPathsUnix());
|
||||||
prop.setProperty("chromium.paths.linux",
|
getProperties().setProperty("chromium.paths.linux",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(chromiumPathsOSX());
|
list = Arrays.asList(chromiumPathsOSX());
|
||||||
prop.setProperty("chromium.paths.osx",
|
getProperties().setProperty("chromium.paths.osx",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
|
|
||||||
list = Arrays.asList(chromiumBinsWindows());
|
list = Arrays.asList(chromiumBinsWindows());
|
||||||
prop.setProperty("chromium.bins.windows",
|
getProperties().setProperty("chromium.bins.windows",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(chromiumBinsUnix());
|
list = Arrays.asList(chromiumBinsUnix());
|
||||||
prop.setProperty("chromium.bins.linux",
|
getProperties().setProperty("chromium.bins.linux",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(chromiumBinsUnix());
|
list = Arrays.asList(chromiumBinsUnix());
|
||||||
prop.setProperty("chromium.bins.osx",
|
getProperties().setProperty("chromium.bins.osx",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
try (OutputStream fos = new FileOutputStream(
|
try (OutputStream fos = new FileOutputStream(
|
||||||
new File(runtimeDirectory(""), "browser.config"))) {
|
new File(runtimeDirectory(""), "browser.config"))) {
|
||||||
prop.store(fos, "Chromium Configuration Section");
|
getProperties().store(fos, "Chromium Configuration Section");
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
logger.warning(ioe.toString());
|
logger.warning(ioe.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private String[] chromiumPathsUnix() {
|
private String[] chromiumPathsUnix() {
|
||||||
String chromiumPathsProp = prop.getProperty("chromium.paths.unix");
|
String chromiumPathsProp =
|
||||||
|
getProperties().getProperty("chromium.paths.unix");
|
||||||
if (chromiumPathsProp != null)
|
if (chromiumPathsProp != null)
|
||||||
if (!chromiumPathsProp.equals(""))
|
if (!chromiumPathsProp.equals(""))
|
||||||
return chromiumPathsProp.split(",");
|
return chromiumPathsProp.split(",");
|
||||||
@ -98,12 +100,12 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
private String[] chromiumBinsUnix() {
|
private String[] chromiumBinsUnix() {
|
||||||
String chromiumPathsProp;
|
String chromiumPathsProp;
|
||||||
if (isOSX()) {
|
if (isOSX()) {
|
||||||
chromiumPathsProp = prop.getProperty("chromium.bins.osx");
|
chromiumPathsProp = getProperties().getProperty("chromium.bins.osx");
|
||||||
if (chromiumPathsProp != null)
|
if (chromiumPathsProp != null)
|
||||||
if (!chromiumPathsProp.equals(""))
|
if (!chromiumPathsProp.equals(""))
|
||||||
return chromiumPathsProp.split(",");
|
return chromiumPathsProp.split(",");
|
||||||
}
|
}
|
||||||
chromiumPathsProp = prop.getProperty("chromium.bins.unix");
|
chromiumPathsProp = getProperties().getProperty("chromium.bins.unix");
|
||||||
if (chromiumPathsProp != null)
|
if (chromiumPathsProp != null)
|
||||||
if (!chromiumPathsProp.equals(""))
|
if (!chromiumPathsProp.equals(""))
|
||||||
return chromiumPathsProp.split(",");
|
return chromiumPathsProp.split(",");
|
||||||
@ -126,7 +128,8 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
return exePath;
|
return exePath;
|
||||||
}
|
}
|
||||||
private String[] chromiumPathsOSX() {
|
private String[] chromiumPathsOSX() {
|
||||||
String chromiumPathsProp = prop.getProperty("chromium.paths.osx");
|
String chromiumPathsProp =
|
||||||
|
getProperties().getProperty("chromium.paths.osx");
|
||||||
if (chromiumPathsProp != null)
|
if (chromiumPathsProp != null)
|
||||||
if (!chromiumPathsProp.equals(""))
|
if (!chromiumPathsProp.equals(""))
|
||||||
return chromiumPathsProp.split(",");
|
return chromiumPathsProp.split(",");
|
||||||
@ -149,7 +152,8 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String[] chromiumPathsWindows() {
|
private String[] chromiumPathsWindows() {
|
||||||
String chromiumPathsProp = prop.getProperty("chromium.paths.windows");
|
String chromiumPathsProp =
|
||||||
|
getProperties().getProperty("chromium.paths.windows");
|
||||||
if (chromiumPathsProp != null)
|
if (chromiumPathsProp != null)
|
||||||
if (!chromiumPathsProp.equals(""))
|
if (!chromiumPathsProp.equals(""))
|
||||||
return chromiumPathsProp.split(",");
|
return chromiumPathsProp.split(",");
|
||||||
@ -182,7 +186,8 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
private String[] chromiumBinsWindows() {
|
private String[] chromiumBinsWindows() {
|
||||||
String chromiumPathsProp = prop.getProperty("chromium.bins.windows");
|
String chromiumPathsProp =
|
||||||
|
getProperties().getProperty("chromium.bins.windows");
|
||||||
if (chromiumPathsProp != null)
|
if (chromiumPathsProp != null)
|
||||||
if (!chromiumPathsProp.equals(""))
|
if (!chromiumPathsProp.equals(""))
|
||||||
return chromiumPathsProp.split(",");
|
return chromiumPathsProp.split(",");
|
||||||
@ -384,11 +389,13 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
File chromeFile = new File(chrome);
|
File chromeFile = new File(chrome);
|
||||||
if (chromeFile.exists()) {
|
if (chromeFile.exists()) {
|
||||||
// if it does, return it
|
// if it does, return it
|
||||||
|
chromePath = chrome;
|
||||||
return chrome;
|
return chrome;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String[] chromees = onlyValidChromiums();
|
String[] chromees = onlyValidChromiums();
|
||||||
if (chromees.length > 0) {
|
if (chromees.length > 0) {
|
||||||
|
chromePath = chromees[0];
|
||||||
return chromees[0];
|
return chromees[0];
|
||||||
} else {
|
} else {
|
||||||
return "";
|
return "";
|
||||||
@ -667,7 +674,7 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Process launchAndDetatch(int privateWindow, String[] url) {
|
public Process launchAndDetatch(int privateWindow, String[] url) {
|
||||||
validateUserDir();
|
validateUserDirectory();
|
||||||
if (waitForProxy()) {
|
if (waitForProxy()) {
|
||||||
String profileDirectory = this.profileDirectory(this.usabilityMode());
|
String profileDirectory = this.profileDirectory(this.usabilityMode());
|
||||||
if (this.validateProfileDirectory(profileDirectory)) {
|
if (this.validateProfileDirectory(profileDirectory)) {
|
||||||
@ -764,6 +771,25 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
*/
|
*/
|
||||||
public void launch() { launch(false); }
|
public void launch() { launch(false); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stop all running processes managed by the browser manager.
|
||||||
|
*
|
||||||
|
* @return true if successful, false if not
|
||||||
|
*/
|
||||||
|
public boolean stop() {
|
||||||
|
if (p != null) {
|
||||||
|
p.destroy();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean running() {
|
||||||
|
if (p != null)
|
||||||
|
return p.isAlive();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private String ValidURL(String inUrl) {
|
private String ValidURL(String inUrl) {
|
||||||
String[] schemes = {"http", "https"};
|
String[] schemes = {"http", "https"};
|
||||||
for (String scheme : schemes) {
|
for (String scheme : schemes) {
|
||||||
@ -777,7 +803,7 @@ public class I2PChromium extends I2PChromiumProfileUnpacker {
|
|||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
int privateBrowsing = 0;
|
int privateBrowsing = 0;
|
||||||
I2PChromium i2pChromium = new I2PChromium();
|
I2PChromium i2pChromium = new I2PChromium();
|
||||||
i2pChromium.validateUserDir();
|
i2pChromium.validateUserDirectory();
|
||||||
i2pChromium.logger.info("I2PChromium");
|
i2pChromium.logger.info("I2PChromium");
|
||||||
i2pChromium.logger.info("checking for private browsing");
|
i2pChromium.logger.info("checking for private browsing");
|
||||||
ArrayList<String> visitURL = new ArrayList<String>();
|
ArrayList<String> visitURL = new ArrayList<String>();
|
||||||
|
@ -33,46 +33,57 @@ import java.util.zip.ZipInputStream;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
public class I2PCommonBrowser {
|
public class I2PCommonBrowser {
|
||||||
public Properties prop = new Properties();
|
private Properties prop = new Properties();
|
||||||
public Logger logger = Logger.getLogger("browserlauncher");
|
public Logger logger = Logger.getLogger("browserlauncher");
|
||||||
private FileHandler fh;
|
private FileHandler fh;
|
||||||
static int CONFIGURED_TIMEOUT = 200;
|
int CONFIGURED_TIMEOUT = 200;
|
||||||
|
|
||||||
public I2PCommonBrowser() {
|
public I2PCommonBrowser() {
|
||||||
try {
|
try {
|
||||||
// This block configure the logger with handler and formatter
|
|
||||||
fh = new FileHandler(logFile().toString());
|
|
||||||
logger.addHandler(fh);
|
|
||||||
SimpleFormatter formatter = new SimpleFormatter();
|
|
||||||
fh.setFormatter(formatter);
|
|
||||||
// the following statement is used to log any messages
|
|
||||||
logger.info("Browser log");
|
logger.info("Browser log");
|
||||||
} catch (SecurityException e) {
|
} catch (SecurityException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
}
|
||||||
loadPropertiesFile(new File(runtimeDirectory(""), "browser.config"));
|
loadPropertiesFile(new File(runtimeDirectory(""), "browser.config"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void loadPropertiesFile(File props) {
|
/**
|
||||||
try (InputStream propsInput = new FileInputStream(props)) {
|
* Loads a properties file.
|
||||||
|
*
|
||||||
|
* @param propertiesFile the file to load
|
||||||
|
*/
|
||||||
|
public void loadPropertiesFile(File propertiesFile) {
|
||||||
|
try (InputStream inputStream = new FileInputStream(propertiesFile)) {
|
||||||
prop = new Properties();
|
prop = new Properties();
|
||||||
prop.load(propsInput);
|
prop.load(inputStream);
|
||||||
System.out.println(prop);
|
} catch (IOException exception) {
|
||||||
} catch (IOException io) {
|
logger.warning(exception.toString());
|
||||||
logger.warning(io.toString());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void validateUserDir() {
|
/**
|
||||||
|
* Retrieves the properties of the object.
|
||||||
|
*
|
||||||
|
* @return the properties of the object
|
||||||
|
*/
|
||||||
|
public Properties getProperties() { return prop; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the user directory.
|
||||||
|
*
|
||||||
|
* @param None No parameters.
|
||||||
|
* @return None No return value.
|
||||||
|
*/
|
||||||
|
public void validateUserDirectory() {
|
||||||
logger.info("Validating user directory");
|
logger.info("Validating user directory");
|
||||||
String userDir = System.getProperty("user.dir");
|
String userDir = System.getProperty("user.dir");
|
||||||
String userHome = System.getProperty("user.home");
|
String userHome = System.getProperty("user.home");
|
||||||
File userDirFile = new File(userDir);
|
File userDirFile = new File(userDir);
|
||||||
File userHomeFile = new File(userHome);
|
File userHomeFile = new File(userHome);
|
||||||
logger.info("user.dir testing !" + userHomeFile.getAbsolutePath() +
|
|
||||||
".equals(" + userDirFile.getAbsolutePath() + ")");
|
logger.info("user.dir: " + userDirFile.getAbsolutePath());
|
||||||
|
logger.info("user.home: " + userHomeFile.getAbsolutePath());
|
||||||
|
|
||||||
if (!userDirFile.getAbsolutePath().contains("Program Files")) {
|
if (!userDirFile.getAbsolutePath().contains("Program Files")) {
|
||||||
if (!userDirFile.getAbsolutePath().equals(
|
if (!userDirFile.getAbsolutePath().equals(
|
||||||
userHomeFile.getAbsolutePath())) {
|
userHomeFile.getAbsolutePath())) {
|
||||||
@ -87,8 +98,9 @@ public class I2PCommonBrowser {
|
|||||||
} else {
|
} else {
|
||||||
logger.info("user.dir is not writable");
|
logger.info("user.dir is not writable");
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
logger.info("user.dir is not actually a directory");
|
||||||
}
|
}
|
||||||
{ logger.info("user.dir is not actually a directory"); }
|
|
||||||
} else {
|
} else {
|
||||||
logger.info("user.dir does not exist");
|
logger.info("user.dir does not exist");
|
||||||
}
|
}
|
||||||
@ -98,11 +110,13 @@ public class I2PCommonBrowser {
|
|||||||
} else {
|
} else {
|
||||||
logger.info("user.dir cannot run from inside Program Files");
|
logger.info("user.dir cannot run from inside Program Files");
|
||||||
}
|
}
|
||||||
if (isWindows())
|
if (isWindows()) {
|
||||||
userHome = new File(userHome, "AppData/Local/I2P").getAbsolutePath();
|
userHome = new File(userHome, "AppData/Local/I2P").getAbsolutePath();
|
||||||
|
}
|
||||||
File defaultPathFile = new File(userHome, "i2p/i2pbrowser");
|
File defaultPathFile = new File(userHome, "i2p/i2pbrowser");
|
||||||
if (!defaultPathFile.exists())
|
if (!defaultPathFile.exists()) {
|
||||||
defaultPathFile.mkdirs();
|
defaultPathFile.mkdirs();
|
||||||
|
}
|
||||||
if (!defaultPathFile.isDirectory()) {
|
if (!defaultPathFile.isDirectory()) {
|
||||||
logger.info(
|
logger.info(
|
||||||
"default path exists and is not a directory, get it out of the way");
|
"default path exists and is not a directory, get it out of the way");
|
||||||
@ -110,160 +124,201 @@ public class I2PCommonBrowser {
|
|||||||
}
|
}
|
||||||
System.setProperty("user.dir", defaultPathFile.getAbsolutePath());
|
System.setProperty("user.dir", defaultPathFile.getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the operating system.
|
||||||
|
*
|
||||||
|
* @return the name of the operating system (Windows, Linux, BSD, Mac, or
|
||||||
|
* Unknown)
|
||||||
|
*/
|
||||||
public String getOperatingSystem() {
|
public String getOperatingSystem() {
|
||||||
String os = System.getProperty("os.name");
|
if (isWindows()) {
|
||||||
if (os.startsWith("Windows")) {
|
|
||||||
return "Windows";
|
return "Windows";
|
||||||
} else if (os.contains("Linux")) {
|
} else if (isLinux()) {
|
||||||
return "Linux";
|
return "Linux";
|
||||||
} else if (os.contains("BSD")) {
|
} else if (isBSD()) {
|
||||||
return "BSD";
|
return "BSD";
|
||||||
} else if (os.contains("Mac")) {
|
} else if (isOSX()) {
|
||||||
return "Mac";
|
return "Mac";
|
||||||
}
|
}
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines if the current operating system is Windows.
|
||||||
|
*
|
||||||
|
* @return true if the current operating system is Windows, false otherwise
|
||||||
|
*/
|
||||||
protected boolean isWindows() {
|
protected boolean isWindows() {
|
||||||
String osName = System.getProperty("os.name");
|
String osName = System.getProperty("os.name").toLowerCase();
|
||||||
logger.info("os.name" + osName);
|
return osName.contains("windows");
|
||||||
if (osName.contains("windows"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("Windows"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("WINDOWS"))
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected boolean isOSX() {
|
|
||||||
String osName = System.getProperty("os.name");
|
|
||||||
logger.info("os.name" + osName);
|
|
||||||
if (osName.contains("OSX"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("osx"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("mac"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("Mac"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("apple"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("Apple"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("Darwin"))
|
|
||||||
return true;
|
|
||||||
if (osName.contains("darwin"))
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// public void logger.info(String line) { logger.info(line); }
|
|
||||||
|
|
||||||
private File logFile() {
|
|
||||||
validateUserDir();
|
|
||||||
String userDir = System.getProperty("user.dir");
|
|
||||||
File log = new File(userDir, "logs");
|
|
||||||
if (!log.exists())
|
|
||||||
log.mkdirs();
|
|
||||||
return new File(log, "browserlauncher.log");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the runtime directory, creating it if create=true
|
* Determines if the current operating system is macOS.
|
||||||
*
|
*
|
||||||
* @param create if true, create the runtime directory if it does not exist
|
* @return true if the operating system is macOS, false otherwise
|
||||||
* @return the runtime directory, or null if it could not be created
|
*/
|
||||||
|
protected boolean isOSX() {
|
||||||
|
String osName = System.getProperty("os.name").toLowerCase();
|
||||||
|
return osName.contains("osx") || osName.contains("mac") ||
|
||||||
|
osName.contains("apple") || osName.contains("darwin");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines whether the current operating system is Linux.
|
||||||
|
*
|
||||||
|
* @return true if the operating system is Linux, false otherwise
|
||||||
|
*/
|
||||||
|
protected boolean isLinux() {
|
||||||
|
String osName = System.getProperty("os.name").toLowerCase();
|
||||||
|
return osName.contains("linux");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the current operating system is a BSD variant.
|
||||||
|
*
|
||||||
|
* @return true if the operating system is a BSD variant, false otherwise
|
||||||
|
*/
|
||||||
|
protected boolean isBSD() {
|
||||||
|
String osName = System.getProperty("os.name").toLowerCase();
|
||||||
|
return osName.contains("bsd");
|
||||||
|
}
|
||||||
|
|
||||||
|
// public void logger.info(String line) { logger.info(line); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the log file for the browser launcher.
|
||||||
|
*
|
||||||
|
* @return the log file for the browser launcher
|
||||||
|
*/
|
||||||
|
/*private File logFile() {
|
||||||
|
// validateUserDirectory();
|
||||||
|
String userDirectory = System.getProperty("user.dir");
|
||||||
|
File logDirectory = new File(userDirectory, "logs");
|
||||||
|
if (!logDirectory.exists()) {
|
||||||
|
logDirectory.mkdirs();
|
||||||
|
}
|
||||||
|
return new File(logDirectory, "browserlauncher.log");
|
||||||
|
}*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the runtime directory, creating it if create=true.
|
||||||
|
*
|
||||||
|
* @param create If true, create the runtime directory if it does not exist.
|
||||||
|
* @param override The runtime directory override.
|
||||||
|
* @return The runtime directory, or null if it could not be created.
|
||||||
* @since 0.0.19
|
* @since 0.0.19
|
||||||
*/
|
*/
|
||||||
protected File runtimeDirectory(boolean create, String override) {
|
protected File runtimeDirectory(boolean create, String override) {
|
||||||
String rtd = runtimeDirectory(override);
|
String runtimeDir = runtimeDirectory(override);
|
||||||
File rtdFile = new File(rtd);
|
File runtimeDirFile = new File(runtimeDir);
|
||||||
if (create) {
|
if (create && !runtimeDirFile.exists()) {
|
||||||
if (!rtdFile.exists()) {
|
runtimeDirFile.mkdir();
|
||||||
rtdFile.mkdir();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return new File(rtd);
|
return runtimeDirFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the correct runtime directory
|
* Returns the runtime directory path based on the given override parameter.
|
||||||
*
|
*
|
||||||
* @return the runtime directory, or null if it could not be created or found
|
* @param override the name of the environment variable to override the
|
||||||
* @since 0.0.19
|
* runtime
|
||||||
|
* directory
|
||||||
|
* @return the runtime directory path as a string
|
||||||
*/
|
*/
|
||||||
protected String runtimeDirectory(String override) {
|
protected String runtimeDirectory(String override) {
|
||||||
// get the I2P_BROWSER_DIR environment variable
|
String runtimeDir = System.getenv(override);
|
||||||
String rtd = System.getenv(override);
|
if (isDirectoryValid(runtimeDir)) {
|
||||||
// if it is not null and not empty
|
return runtimeDir;
|
||||||
if (rtd != null && !rtd.isEmpty()) {
|
|
||||||
// check if the file exists
|
|
||||||
File rtdFile = new File(rtd);
|
|
||||||
if (rtdFile.exists()) {
|
|
||||||
// if it does, return it
|
|
||||||
return rtd;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// obtain the PLUGIN environment variable
|
|
||||||
String plugin = System.getenv("PLUGIN");
|
String pluginDir = System.getenv("PLUGIN");
|
||||||
if (plugin != null && !plugin.isEmpty()) {
|
if (isDirectoryValid(pluginDir)) {
|
||||||
File pluginDir = new File(plugin);
|
return pluginDir;
|
||||||
if (pluginDir.exists()) {
|
|
||||||
return pluginDir.toString();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String userDir = System.getProperty("user.dir");
|
String userDir = System.getProperty("user.dir");
|
||||||
if (userDir != null && !userDir.isEmpty()) {
|
if (isDirectoryValid(userDir)) {
|
||||||
File userDir1 = new File(userDir);
|
return userDir;
|
||||||
if (userDir1.exists()) {
|
|
||||||
return userDir1.toString();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String homeDir = System.getProperty("user.home");
|
String homeDir = System.getProperty("user.home");
|
||||||
if (homeDir != null && !homeDir.isEmpty()) {
|
if (isDirectoryValid(homeDir)) {
|
||||||
File homeDir1 = new File(homeDir + "/.i2p");
|
String i2pDir = homeDir + "/.i2p";
|
||||||
if (homeDir1.exists()) {
|
if (isDirectoryValid(i2pDir)) {
|
||||||
return homeDir.toString();
|
return homeDir;
|
||||||
}
|
}
|
||||||
File homeDir2 = new File(homeDir + "/i2p");
|
|
||||||
if (homeDir2.exists()) {
|
String altI2pDir = homeDir + "/i2p";
|
||||||
return homeDir2.toString();
|
if (isDirectoryValid(altI2pDir)) {
|
||||||
|
return altI2pDir;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the profile directory, creating it if necessary
|
* Checks if the given directory is valid.
|
||||||
*
|
*
|
||||||
|
* @param directory the directory to check
|
||||||
|
* @return true if the directory is valid, false otherwise
|
||||||
|
*/
|
||||||
|
private boolean isDirectoryValid(String directory) {
|
||||||
|
return directory != null && !directory.isEmpty() &&
|
||||||
|
new File(directory).exists();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the profile directory, creating it if necessary.
|
||||||
|
*
|
||||||
|
* @param envVar the environment variable name
|
||||||
|
* @param browser the browser name
|
||||||
|
* @param base the base directory
|
||||||
|
* @param app indicates if it is an app directory
|
||||||
* @return the profile directory, or null if it could not be created
|
* @return the profile directory, or null if it could not be created
|
||||||
* @since 0.0.19
|
* @since 0.0.19
|
||||||
*/
|
*/
|
||||||
protected String profileDirectory(String envVar, String browser, String base,
|
protected String profileDirectory(String envVar, String browser, String base,
|
||||||
boolean app) {
|
boolean app) {
|
||||||
String pd = System.getenv(envVar);
|
String profileDir = System.getenv(envVar);
|
||||||
if (pd != null && !pd.isEmpty()) {
|
if (profileDir != null && !profileDir.isEmpty()) {
|
||||||
File pdf = new File(pd);
|
File profileDirFile = new File(profileDir);
|
||||||
if (pdf.exists() && pdf.isDirectory()) {
|
if (profileDirFile.exists() && profileDirFile.isDirectory()) {
|
||||||
return pd;
|
return profileDir;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String rtd = runtimeDirectory("");
|
String runtimeDir = runtimeDirectory("");
|
||||||
return profileDir(rtd, browser, base, app);
|
return profileDir(runtimeDir, browser, base, app);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A description of the entire Java function.
|
||||||
|
*
|
||||||
|
* @param file description of parameter
|
||||||
|
* @param browser description of parameter
|
||||||
|
* @param base description of parameter
|
||||||
|
* @param app description of parameter
|
||||||
|
* @return description of return value
|
||||||
|
*/
|
||||||
protected String profileDir(String file, String browser, String base,
|
protected String profileDir(String file, String browser, String base,
|
||||||
boolean app) {
|
boolean app) {
|
||||||
String appString = "";
|
String appString = app ? ".app" : "";
|
||||||
if (app) {
|
String profileDirName =
|
||||||
appString = ".app";
|
String.format("i2p.%s.profile.%s%s", browser, base, appString);
|
||||||
}
|
File profileDir = new File(file, profileDirName);
|
||||||
File profileDir =
|
|
||||||
new File(file, "i2p." + browser + ".profile." + base + appString);
|
|
||||||
return profileDir.getAbsolutePath();
|
return profileDir.getAbsolutePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unpacks the base profile to a specified directory.
|
||||||
|
*
|
||||||
|
* @param profileDirectory the directory where the profile will be unpacked
|
||||||
|
* @param browser the browser type
|
||||||
|
* @param base the base profile
|
||||||
|
* @return true if the profile was successfully unpacked, false otherwise
|
||||||
|
*/
|
||||||
protected boolean unpackProfile(String profileDirectory, String browser,
|
protected boolean unpackProfile(String profileDirectory, String browser,
|
||||||
String base) {
|
String base) {
|
||||||
logger.info("Unpacking base profile to " + profileDirectory);
|
logger.info("Unpacking base profile to " + profileDirectory);
|
||||||
@ -309,64 +364,101 @@ public class I2PCommonBrowser {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void copyDirectory(File sourceDirectory, File destinationDirectory,
|
/**
|
||||||
String browser, String base) throws IOException {
|
* Copy a directory from sourceDir to destDir, excluding certain files based
|
||||||
destinationDirectory = new File(destinationDirectory.toString().replace(
|
* on browser and base.
|
||||||
|
*
|
||||||
|
* @param sourceDir directory to be copied from
|
||||||
|
* @param destDir directory to be copied to
|
||||||
|
* @param browser the browser name
|
||||||
|
* @param base the base name
|
||||||
|
* @throws IOException if an I/O error occurs during copying
|
||||||
|
*/
|
||||||
|
protected void copyDirectory(File sourceDir, File destDir, String browser,
|
||||||
|
String base) throws IOException {
|
||||||
|
destDir = new File(destDir.toString().replace(
|
||||||
"i2p." + browser + "." + base + ".profile", ""));
|
"i2p." + browser + "." + base + ".profile", ""));
|
||||||
if (!destinationDirectory.exists()) {
|
if (!destDir.exists()) {
|
||||||
destinationDirectory.mkdir();
|
destDir.mkdir();
|
||||||
}
|
}
|
||||||
for (String f : sourceDirectory.list()) {
|
for (String file : sourceDir.list()) {
|
||||||
copyDirectoryCompatibilityMode(new File(sourceDirectory, f),
|
copyDirectoryCompatibilityMode(new File(sourceDir, file),
|
||||||
new File(destinationDirectory, f), browser,
|
new File(destDir, file), browser, base);
|
||||||
base);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void copyDirectoryCompatibilityMode(File source, File destination,
|
/**
|
||||||
|
* Copy a directory in compatibility mode.
|
||||||
|
*
|
||||||
|
* @param sourceDirectory the source directory to copy
|
||||||
|
* @param destinationDirectory the destination directory to copy to
|
||||||
|
* @param browser the browser
|
||||||
|
* @param base the base
|
||||||
|
* @throws IOException if an I/O error occurs
|
||||||
|
*/
|
||||||
|
private void copyDirectoryCompatibilityMode(File sourceDirectory,
|
||||||
|
File destinationDirectory,
|
||||||
String browser, String base)
|
String browser, String base)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
if (source.isDirectory()) {
|
if (sourceDirectory.isDirectory()) {
|
||||||
copyDirectory(source, destination, browser, base);
|
copyDirectory(sourceDirectory, destinationDirectory, browser, base);
|
||||||
} else {
|
} else {
|
||||||
copyFile(source, destination);
|
copyFile(sourceDirectory, destinationDirectory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies the content from the source InputStream to the target OutputStream.
|
||||||
|
*
|
||||||
|
* @param source the InputStream to copy from
|
||||||
|
* @param target the OutputStream to copy to
|
||||||
|
* @throws IOException if an I/O error occurs during the copying process
|
||||||
|
*/
|
||||||
public void copy(InputStream source, OutputStream target) throws IOException {
|
public void copy(InputStream source, OutputStream target) throws IOException {
|
||||||
byte[] buf = new byte[8192];
|
byte[] buffer = new byte[8192];
|
||||||
int length;
|
int bytesRead;
|
||||||
while ((length = source.read(buf)) != -1) {
|
while ((bytesRead = source.read(buffer)) != -1) {
|
||||||
target.write(buf, 0, length);
|
target.write(buffer, 0, bytesRead);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies a file from the source file to the destination file.
|
||||||
|
*
|
||||||
|
* @param sourceFile the source file to be copied
|
||||||
|
* @param destinationFile the destination file where the source file will be
|
||||||
|
* copied to
|
||||||
|
* @throws IOException if an I/O error occurs during the file copy process
|
||||||
|
*/
|
||||||
private void copyFile(File sourceFile, File destinationFile)
|
private void copyFile(File sourceFile, File destinationFile)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
try (InputStream in = new FileInputStream(sourceFile);
|
try (InputStream in = new FileInputStream(sourceFile);
|
||||||
OutputStream out = new FileOutputStream(destinationFile)) {
|
OutputStream out = new FileOutputStream(destinationFile)) {
|
||||||
byte[] buf = new byte[1024];
|
byte[] buffer = new byte[1024];
|
||||||
int length;
|
int length;
|
||||||
while ((length = in.read(buf)) > 0) {
|
while ((length = in.read(buffer)) > 0) {
|
||||||
out.write(buf, 0, length);
|
out.write(buffer, 0, length);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the profile for the first run.
|
||||||
|
*
|
||||||
|
* @param profileDirectory the directory of the profile
|
||||||
|
* @return true if the profile is valid for the first run, false otherwise
|
||||||
|
*/
|
||||||
public boolean validateProfileFirstRun(String profileDirectory) {
|
public boolean validateProfileFirstRun(String profileDirectory) {
|
||||||
File profileDir = new File(profileDirectory);
|
File profileDir = new File(profileDirectory);
|
||||||
if (!profileDir.exists()) {
|
if (!profileDir.exists()) {
|
||||||
logger.info("Profile directory does not exist");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!profileDir.isDirectory()) {
|
if (!profileDir.isDirectory()) {
|
||||||
logger.info("Profile directory is not a directory");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
File frf = new File(profileDir, "first-run");
|
File firstRunFile = new File(profileDir, "first-run");
|
||||||
if (frf.exists()) {
|
if (firstRunFile.exists()) {
|
||||||
frf.delete();
|
firstRunFile.delete();
|
||||||
// is a first run
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@ -392,18 +484,20 @@ public class I2PCommonBrowser {
|
|||||||
public boolean waitForProxy(int timeout) {
|
public boolean waitForProxy(int timeout) {
|
||||||
return waitForProxy(timeout, 4444);
|
return waitForProxy(timeout, 4444);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Waits for an HTTP proxy on the specified port to be ready.
|
* Waits for an HTTP proxy on the specified port to be ready.
|
||||||
* Returns false on timeout of the specified number of seconds.
|
* Returns false on timeout of the specified number of seconds.
|
||||||
*
|
*
|
||||||
* @param timeout the number of seconds to wait for the proxy to be ready.
|
* @param timeout the number of seconds to wait for the proxy to be ready.
|
||||||
* @param port the port to wait for the proxy to be ready on.
|
* @param port the port to wait for the proxy to be ready on.
|
||||||
* @return true if the proxy is ready, false if it is not.
|
* @return true if the proxy is ready, false if it is not.
|
||||||
* @since 0.0.1
|
* @since 0.0.1
|
||||||
*/
|
*/
|
||||||
public boolean waitForProxy(int timeout, int port) {
|
public boolean waitForProxy(int timeout, int port) {
|
||||||
return waitForProxy(timeout, port, "localhost");
|
return waitForProxy(timeout, port, "localhost");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Waits for an HTTP proxy on the specified port to be ready.
|
* Waits for an HTTP proxy on the specified port to be ready.
|
||||||
* Returns false on timeout of the specified number of seconds.
|
* Returns false on timeout of the specified number of seconds.
|
||||||
@ -411,19 +505,17 @@ public class I2PCommonBrowser {
|
|||||||
* returns true.
|
* returns true.
|
||||||
*
|
*
|
||||||
* @param timeout the number of seconds to wait for the proxy to be ready.
|
* @param timeout the number of seconds to wait for the proxy to be ready.
|
||||||
* @param port the port to wait for the proxy to be ready on.
|
* @param port the port to wait for the proxy to be ready on.
|
||||||
* @param host the host to wait for the proxy to be ready on.
|
* @param host the host to wait for the proxy to be ready on.
|
||||||
* @return true if the proxy is ready, false if it is not.
|
* @return true if the proxy is ready, false if it is not.
|
||||||
* @since 0.0.1
|
* @since 0.0.1
|
||||||
*/
|
*/
|
||||||
public boolean waitForProxy(int timeout, int port, String host) {
|
public boolean waitForProxy(int timeout, int port, String host) {
|
||||||
logger.info("waiting up to " + timeout + "seconds for a proxy");
|
|
||||||
if (timeout <= 0) {
|
if (timeout <= 0) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
for (int i = 0; i < timeout; i++) {
|
for (int i = 0; i < timeout; i++) {
|
||||||
logger.info("Waiting for proxy");
|
if (isPortOccupied(port, host)) {
|
||||||
if (checkifPortIsOccupied(port, host)) {
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
@ -434,15 +526,23 @@ public class I2PCommonBrowser {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
public boolean checkifPortIsOccupied(int port, String host) {
|
|
||||||
|
/**
|
||||||
|
* Determines if a given port on a specified host is occupied.
|
||||||
|
*
|
||||||
|
* @param port the port number to check
|
||||||
|
* @param host the host address to check
|
||||||
|
* @return true if the port is occupied, false otherwise
|
||||||
|
*/
|
||||||
|
public boolean isPortOccupied(int port, String host) {
|
||||||
try {
|
try {
|
||||||
Socket socket = new Socket(host, port);
|
new Socket(host, port).close();
|
||||||
socket.close();
|
|
||||||
return true;
|
return true;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Alters the proxy timeout to customized value time, in seconds.
|
* Alters the proxy timeout to customized value time, in seconds.
|
||||||
* May be zero.
|
* May be zero.
|
||||||
@ -452,36 +552,50 @@ public class I2PCommonBrowser {
|
|||||||
public void setProxyTimeoutTime(int time) { CONFIGURED_TIMEOUT = time; }
|
public void setProxyTimeoutTime(int time) { CONFIGURED_TIMEOUT = time; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Joins the elements of the given string array into a single string.
|
||||||
*
|
*
|
||||||
|
* @param arr the string array to be joined
|
||||||
|
* @return the joined string
|
||||||
*/
|
*/
|
||||||
protected String join(String[] arr) {
|
protected String join(String[] arr) {
|
||||||
StringBuilder val = new StringBuilder("");
|
StringBuilder result = new StringBuilder();
|
||||||
for (int x = 0; x < arr.length; x++) {
|
for (String item : arr) {
|
||||||
val.append(" \"");
|
result.append(" \"").append(item).append("\"");
|
||||||
val.append(arr[x]);
|
|
||||||
val.append("\"");
|
|
||||||
}
|
}
|
||||||
return val.toString();
|
return result.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sleeps for a specified number of milliseconds.
|
||||||
|
*
|
||||||
|
* @param millis the number of milliseconds to sleep
|
||||||
|
*/
|
||||||
public void sleep(int millis) {
|
public void sleep(int millis) {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(millis);
|
Thread.sleep(millis);
|
||||||
} catch (InterruptedException bad) {
|
} catch (InterruptedException e) {
|
||||||
bad.printStackTrace();
|
throw new RuntimeException(e);
|
||||||
throw new RuntimeException(bad);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public File searchFile(File file, String search) {
|
|
||||||
if (file.isDirectory()) {
|
/**
|
||||||
File[] arr = file.listFiles();
|
* Searches for a file in a given directory and its subdirectories.
|
||||||
for (File f : arr) {
|
*
|
||||||
File found = searchFile(f, search);
|
* @param directory the directory to search in
|
||||||
if (found != null)
|
* @param search the name of the file to search for
|
||||||
return found;
|
* @return the found file or null if not found
|
||||||
|
*/
|
||||||
|
public File searchFile(File directory, String search) {
|
||||||
|
if (directory.isDirectory()) {
|
||||||
|
File[] files = directory.listFiles();
|
||||||
|
for (File file : files) {
|
||||||
|
File foundFile = searchFile(file, search);
|
||||||
|
if (foundFile != null)
|
||||||
|
return foundFile;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (file.getName().equals(search)) {
|
if (directory.getName().equals(search)) {
|
||||||
return file;
|
return directory;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
@ -30,6 +30,7 @@ import java.util.stream.Stream;
|
|||||||
public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
||||||
private final String[] FIREFOX_SEARCH_PATHS = FIREFOX_FINDER();
|
private final String[] FIREFOX_SEARCH_PATHS = FIREFOX_FINDER();
|
||||||
private Process process = null;
|
private Process process = null;
|
||||||
|
private String firefoxPath;
|
||||||
public boolean usability = false;
|
public boolean usability = false;
|
||||||
|
|
||||||
private String baseMode() {
|
private String baseMode() {
|
||||||
@ -58,34 +59,34 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
public void storeFirefoxDefaults() {
|
public void storeFirefoxDefaults() {
|
||||||
List<String> list = new ArrayList<String>();
|
List<String> list = new ArrayList<String>();
|
||||||
list = Arrays.asList(firefoxPathsWindows());
|
list = Arrays.asList(firefoxPathsWindows());
|
||||||
prop.setProperty("firefox.paths.windows",
|
getProperties().setProperty("firefox.paths.windows",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(firefoxPathsUnix());
|
list = Arrays.asList(firefoxPathsUnix());
|
||||||
prop.setProperty("firefox.paths.linux",
|
getProperties().setProperty("firefox.paths.linux",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(firefoxPathsOSX());
|
list = Arrays.asList(firefoxPathsOSX());
|
||||||
prop.setProperty("firefox.paths.osx",
|
getProperties().setProperty("firefox.paths.osx",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
|
|
||||||
list = Arrays.asList(firefoxBinsWindows());
|
list = Arrays.asList(firefoxBinsWindows());
|
||||||
prop.setProperty("firefox.bins.windows",
|
getProperties().setProperty("firefox.bins.windows",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(firefoxBinsUnix());
|
list = Arrays.asList(firefoxBinsUnix());
|
||||||
prop.setProperty("firefox.bins.linux",
|
getProperties().setProperty("firefox.bins.linux",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
list = Arrays.asList(firefoxBinsUnix());
|
list = Arrays.asList(firefoxBinsUnix());
|
||||||
prop.setProperty("firefox.bins.osx",
|
getProperties().setProperty("firefox.bins.osx",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
try (OutputStream fos = new FileOutputStream(
|
try (OutputStream fos = new FileOutputStream(
|
||||||
new File(runtimeDirectory(""), "browser.config"))) {
|
new File(runtimeDirectory(""), "browser.config"))) {
|
||||||
prop.store(fos, "Firefox Configuration Section");
|
getProperties().store(fos, "Firefox Configuration Section");
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
logger.warning(ioe.toString());
|
logger.warning(ioe.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] firefoxPathsUnix() {
|
public String[] firefoxPathsUnix() {
|
||||||
String firefoxPathsProp = prop.getProperty("firefox.paths.unix");
|
String firefoxPathsProp = getProperties().getProperty("firefox.paths.unix");
|
||||||
if (firefoxPathsProp != null)
|
if (firefoxPathsProp != null)
|
||||||
if (!firefoxPathsProp.equals(""))
|
if (!firefoxPathsProp.equals(""))
|
||||||
return firefoxPathsProp.split(",");
|
return firefoxPathsProp.split(",");
|
||||||
@ -96,12 +97,12 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
public String[] firefoxBinsUnix() {
|
public String[] firefoxBinsUnix() {
|
||||||
String firefoxPathsProp;
|
String firefoxPathsProp;
|
||||||
if (isOSX()) {
|
if (isOSX()) {
|
||||||
firefoxPathsProp = prop.getProperty("firefox.bins.osx");
|
firefoxPathsProp = getProperties().getProperty("firefox.bins.osx");
|
||||||
if (firefoxPathsProp != null)
|
if (firefoxPathsProp != null)
|
||||||
if (!firefoxPathsProp.equals(""))
|
if (!firefoxPathsProp.equals(""))
|
||||||
return firefoxPathsProp.split(",");
|
return firefoxPathsProp.split(",");
|
||||||
}
|
}
|
||||||
firefoxPathsProp = prop.getProperty("firefox.bins.unix");
|
firefoxPathsProp = getProperties().getProperty("firefox.bins.unix");
|
||||||
if (firefoxPathsProp != null)
|
if (firefoxPathsProp != null)
|
||||||
if (!firefoxPathsProp.equals(""))
|
if (!firefoxPathsProp.equals(""))
|
||||||
return firefoxPathsProp.split(",");
|
return firefoxPathsProp.split(",");
|
||||||
@ -124,7 +125,7 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
return exePath;
|
return exePath;
|
||||||
}
|
}
|
||||||
public String[] firefoxPathsOSX() {
|
public String[] firefoxPathsOSX() {
|
||||||
String firefoxPathsProp = prop.getProperty("firefox.paths.osx");
|
String firefoxPathsProp = getProperties().getProperty("firefox.paths.osx");
|
||||||
if (firefoxPathsProp != null)
|
if (firefoxPathsProp != null)
|
||||||
if (!firefoxPathsProp.equals(""))
|
if (!firefoxPathsProp.equals(""))
|
||||||
return firefoxPathsProp.split(",");
|
return firefoxPathsProp.split(",");
|
||||||
@ -147,7 +148,8 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
return exePath;
|
return exePath;
|
||||||
}
|
}
|
||||||
public String[] firefoxPathsWindows() {
|
public String[] firefoxPathsWindows() {
|
||||||
String firefoxPathsProp = prop.getProperty("firefox.paths.windows");
|
String firefoxPathsProp =
|
||||||
|
getProperties().getProperty("firefox.paths.windows");
|
||||||
if (firefoxPathsProp != null)
|
if (firefoxPathsProp != null)
|
||||||
if (!firefoxPathsProp.equals(""))
|
if (!firefoxPathsProp.equals(""))
|
||||||
return firefoxPathsProp.split(",");
|
return firefoxPathsProp.split(",");
|
||||||
@ -180,7 +182,8 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
private String[] firefoxBinsWindows() {
|
private String[] firefoxBinsWindows() {
|
||||||
String firefoxPathsProp = prop.getProperty("firefox.bins.windows");
|
String firefoxPathsProp =
|
||||||
|
getProperties().getProperty("firefox.bins.windows");
|
||||||
if (firefoxPathsProp != null)
|
if (firefoxPathsProp != null)
|
||||||
if (!firefoxPathsProp.equals(""))
|
if (!firefoxPathsProp.equals(""))
|
||||||
return firefoxPathsProp.split(",");
|
return firefoxPathsProp.split(",");
|
||||||
@ -377,6 +380,9 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
* @since 0.0.1
|
* @since 0.0.1
|
||||||
*/
|
*/
|
||||||
public String topFirefox() {
|
public String topFirefox() {
|
||||||
|
if (firefoxPath != null) {
|
||||||
|
return firefoxPath;
|
||||||
|
}
|
||||||
// get the FIREFOX environment variable
|
// get the FIREFOX environment variable
|
||||||
String firefox = System.getenv("FIREFOX");
|
String firefox = System.getenv("FIREFOX");
|
||||||
// if it is not null and not empty
|
// if it is not null and not empty
|
||||||
@ -385,11 +391,13 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
File firefoxFile = new File(firefox);
|
File firefoxFile = new File(firefox);
|
||||||
if (firefoxFile.exists()) {
|
if (firefoxFile.exists()) {
|
||||||
// if it does, return it
|
// if it does, return it
|
||||||
|
firefoxPath = firefox;
|
||||||
return firefox;
|
return firefox;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String[] firefoxes = onlyValidFirefoxes();
|
String[] firefoxes = onlyValidFirefoxes();
|
||||||
if (firefoxes.length > 0) {
|
if (firefoxes.length > 0) {
|
||||||
|
firefoxPath = firefoxes[0];
|
||||||
return firefoxes[0];
|
return firefoxes[0];
|
||||||
} else {
|
} else {
|
||||||
return "";
|
return "";
|
||||||
@ -692,7 +700,7 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
return launchAndDetatch(privateWindowInt, url);
|
return launchAndDetatch(privateWindowInt, url);
|
||||||
}
|
}
|
||||||
public Process launchAndDetatch(int privateWindow, String[] url) {
|
public Process launchAndDetatch(int privateWindow, String[] url) {
|
||||||
validateUserDir();
|
validateUserDirectory();
|
||||||
boolean app = false;
|
boolean app = false;
|
||||||
if (privateWindow == 2)
|
if (privateWindow == 2)
|
||||||
app = true;
|
app = true;
|
||||||
@ -827,6 +835,25 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
*/
|
*/
|
||||||
public void launch() { launch(false); }
|
public void launch() { launch(false); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stop all running processes managed by the browser manager.
|
||||||
|
*
|
||||||
|
* @return true if successful, false if not
|
||||||
|
*/
|
||||||
|
public boolean stop() {
|
||||||
|
if (process != null) {
|
||||||
|
process.destroy();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean running() {
|
||||||
|
if (process != null)
|
||||||
|
return process.isAlive();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private String ValidURL(String inUrl) {
|
private String ValidURL(String inUrl) {
|
||||||
String[] schemes = {"http", "https"};
|
String[] schemes = {"http", "https"};
|
||||||
for (String scheme : schemes) {
|
for (String scheme : schemes) {
|
||||||
@ -841,7 +868,7 @@ public class I2PFirefox extends I2PFirefoxProfileUnpacker {
|
|||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
int privateBrowsing = 0;
|
int privateBrowsing = 0;
|
||||||
I2PFirefox i2pFirefox = new I2PFirefox();
|
I2PFirefox i2pFirefox = new I2PFirefox();
|
||||||
i2pFirefox.validateUserDir();
|
i2pFirefox.validateUserDirectory();
|
||||||
i2pFirefox.logger.info("checking for private browsing");
|
i2pFirefox.logger.info("checking for private browsing");
|
||||||
i2pFirefox.logger.info("I2PFirefox");
|
i2pFirefox.logger.info("I2PFirefox");
|
||||||
ArrayList<String> visitURL = new ArrayList<String>();
|
ArrayList<String> visitURL = new ArrayList<String>();
|
||||||
|
@ -27,21 +27,24 @@ import java.util.Scanner;
|
|||||||
public class I2PFirefoxProfileChecker extends I2PCommonBrowser {
|
public class I2PFirefoxProfileChecker extends I2PCommonBrowser {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param args unused
|
* The main method for executing the Java program.
|
||||||
|
*
|
||||||
|
* @param args the command line arguments
|
||||||
*/
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
I2PFirefoxProfileChecker pc = new I2PFirefoxProfileChecker();
|
I2PFirefoxProfileChecker profileChecker = new I2PFirefoxProfileChecker();
|
||||||
String profileDirectory = pc.profileDirectory(false, "base");
|
String profileDirectory = profileChecker.profileDirectory(false, "base");
|
||||||
if (profileDirectory == null) {
|
if (profileDirectory == null) {
|
||||||
pc.logger.info("No profile directory found");
|
profileChecker.logger.info("No profile directory found");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
pc.logger.info("Profile directory: " + profileDirectory);
|
profileChecker.logger.info("Profile directory: " + profileDirectory);
|
||||||
boolean ok = pc.validateProfileDirectory(profileDirectory);
|
boolean isProfileValid =
|
||||||
if (ok) {
|
profileChecker.validateProfileDirectory(profileDirectory);
|
||||||
pc.logger.info("Profile directory is valid");
|
if (isProfileValid) {
|
||||||
|
profileChecker.logger.info("Profile directory is valid");
|
||||||
} else {
|
} else {
|
||||||
pc.logger.info("Profile directory is invalid");
|
profileChecker.logger.info("Profile directory is invalid");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,80 +66,78 @@ public class I2PFirefoxProfileChecker extends I2PCommonBrowser {
|
|||||||
*/
|
*/
|
||||||
public boolean validateProfileDirectory(String profileDirectory) {
|
public boolean validateProfileDirectory(String profileDirectory) {
|
||||||
File profileDir = new File(profileDirectory);
|
File profileDir = new File(profileDirectory);
|
||||||
if (!profileDir.exists()) {
|
if (!profileDir.exists() || !profileDir.isDirectory() ||
|
||||||
logger.info("Profile directory does not exist");
|
!profileDir.canRead() || !profileDir.canWrite()) {
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!profileDir.isDirectory()) {
|
|
||||||
logger.info("Profile directory is not a directory");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!profileDir.canRead()) {
|
|
||||||
logger.info("Profile directory is not readable");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!profileDir.canWrite()) {
|
|
||||||
logger.info("Profile directory is not writable");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!validateFile(profileDir + "/prefs.js")) {
|
if (!validateFile(profileDir + "/prefs.js")) {
|
||||||
logger.info("prefs.js is not valid");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!validateFile(profileDir + "/user.js")) {
|
if (!validateFile(profileDir + "/user.js")) {
|
||||||
logger.info("user.js is not valid");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!validateExtensionDirectory(profileDir + "/extensions")) {
|
if (!validateExtensionDirectory(profileDir + "/extensions")) {
|
||||||
logger.info("extensions directory is invalid");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return deRestrictHTTPSAndSetupHomepage(profileDir.toString());
|
return deRestrictHTTPSAndSetupHomepage(profileDir.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verify essential values in prefs.js, user.js, and user-overrides.js
|
||||||
|
*
|
||||||
|
* @param profile profile
|
||||||
|
* @return true if successful
|
||||||
|
*/
|
||||||
private boolean deRestrictHTTPSAndSetupHomepage(String profile) {
|
private boolean deRestrictHTTPSAndSetupHomepage(String profile) {
|
||||||
// String profile = profileDirectory();
|
|
||||||
File profileDir = new File(profile);
|
File profileDir = new File(profile);
|
||||||
if (profileDir.exists()) {
|
if (profileDir.exists()) {
|
||||||
File prefOverrides = new File(profile, "prefs.js");
|
cleanUpFile(new File(profile, "prefs.js"));
|
||||||
if (prefOverrides.exists()) {
|
cleanUpFile(new File(profile, "user.js"));
|
||||||
undoHttpsOnlyMode(prefOverrides);
|
cleanUpFile(new File(profile, "user-overrides.js"));
|
||||||
undoHomepage(prefOverrides);
|
return true;
|
||||||
}
|
|
||||||
File userSettings = new File(profile, "user.js");
|
|
||||||
if (userSettings.exists()) {
|
|
||||||
undoHttpsOnlyMode(userSettings);
|
|
||||||
undoHomepage(userSettings);
|
|
||||||
}
|
|
||||||
File userOverrides = new File(profile, "user-overrides.js");
|
|
||||||
if (userOverrides.exists()) {
|
|
||||||
undoHttpsOnlyMode(userOverrides);
|
|
||||||
undoHomepage(userOverrides);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cleans up a file by undoing specific modifications if the file exists.
|
||||||
|
*
|
||||||
|
* @param file the file to be cleaned up
|
||||||
|
*/
|
||||||
|
private void cleanUpFile(File file) {
|
||||||
|
if (file.exists()) {
|
||||||
|
undoHttpsOnlyMode(file);
|
||||||
|
undoHomepage(file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Undo the HTTPS-only mode by modifying a file.
|
||||||
|
*
|
||||||
|
* @param fileToBeModified the file to be modified
|
||||||
|
* @return true if the undo operation is successful, false otherwise
|
||||||
|
*/
|
||||||
private boolean undoHttpsOnlyMode(File fileToBeModified) {
|
private boolean undoHttpsOnlyMode(File fileToBeModified) {
|
||||||
String oldString = "\"dom.security.https_only_mode\", true";
|
String oldString = "\"dom.security.https_only_mode\", true";
|
||||||
String newString = "\"dom.security.https_only_mode\", false";
|
String newString = "\"dom.security.https_only_mode\", false";
|
||||||
return undoValue(oldString, newString, fileToBeModified);
|
return undoValue(oldString, newString, fileToBeModified);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Undo the modification of the homepage in a file.
|
||||||
|
*
|
||||||
|
* @param fileToBeModified the file to be modified
|
||||||
|
* @return true if the modification was successful, otherwise false
|
||||||
|
*/
|
||||||
private boolean undoHomepage(File fileToBeModified) {
|
private boolean undoHomepage(File fileToBeModified) {
|
||||||
String oldString = "\"browser.startup.homepage\", true";
|
String oldStringToFind = "\"browser.startup.homepage\", true";
|
||||||
File file = new File("Student.txt");
|
String newStringToReplace =
|
||||||
String newString =
|
|
||||||
"\"browser.startup.homepage\", \"http://127.0.0.1:7657\"";
|
"\"browser.startup.homepage\", \"http://127.0.0.1:7657\"";
|
||||||
try {
|
try (Scanner scanner = new Scanner(fileToBeModified)) {
|
||||||
try (Scanner scanner = new Scanner(file)) {
|
while (scanner.hasNextLine()) {
|
||||||
// now read the file line by line...
|
String line = scanner.nextLine();
|
||||||
while (scanner.hasNextLine()) {
|
if (line.contains(oldStringToFind)) {
|
||||||
String line = scanner.nextLine();
|
return undoValue(line, newStringToReplace, fileToBeModified);
|
||||||
if (line.contains("browser.startup.homepage")) {
|
|
||||||
oldString = line.toString();
|
|
||||||
return undoValue(oldString, newString, fileToBeModified);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
@ -145,6 +146,15 @@ public class I2PFirefoxProfileChecker extends I2PCommonBrowser {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Undo the value by replacing the occurrences of the old string with the new
|
||||||
|
* string in the given file.
|
||||||
|
*
|
||||||
|
* @param oldString the string to be replaced
|
||||||
|
* @param newString the string to replace the old string with
|
||||||
|
* @param fileToBeModified the file to be modified
|
||||||
|
* @return true if the value was successfully undone, false otherwise
|
||||||
|
*/
|
||||||
public boolean undoValue(String oldString, String newString,
|
public boolean undoValue(String oldString, String newString,
|
||||||
File fileToBeModified) {
|
File fileToBeModified) {
|
||||||
String oldContent = "";
|
String oldContent = "";
|
||||||
@ -173,58 +183,38 @@ public class I2PFirefoxProfileChecker extends I2PCommonBrowser {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return true if the file is valid.
|
* Return true if the file is valid.
|
||||||
*
|
*
|
||||||
* @param file the file to check
|
* @param filePath the path of the file to check
|
||||||
* @return true if the file is valid, false otherwise
|
* @return true if the file is valid, false otherwise
|
||||||
* @since 0.0.1
|
* @since 0.0.1
|
||||||
*/
|
*/
|
||||||
public boolean validateFile(String file) {
|
public boolean validateFile(String filePath) {
|
||||||
File f = new File(file);
|
File file = new File(filePath);
|
||||||
if (!f.exists()) {
|
if (!file.exists() || !file.isFile() || !file.canRead() ||
|
||||||
logger.info("User JavaScript file does not exist");
|
!file.canWrite()) {
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!f.isFile()) {
|
|
||||||
logger.info("User JavaScript file is not a file");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!f.canRead()) {
|
|
||||||
logger.info("User JavaScript file is not readable");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!f.canWrite()) {
|
|
||||||
logger.info("User JavaScript file is not writable");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return true if the extension directory is valid.
|
* Validates the extension directory.
|
||||||
*
|
*
|
||||||
* @param extensionDirectory the extension directory to check
|
* @param extensionDirectory the extension directory to validate
|
||||||
* @return true if the extension directory is valid, false otherwise
|
* @return true if the extension directory is valid, false otherwise
|
||||||
* @since 0.0.1
|
* @since 0.0.1
|
||||||
*/
|
*/
|
||||||
public boolean validateExtensionDirectory(String extensionDirectory) {
|
public boolean validateExtensionDirectory(String extensionDirectory) {
|
||||||
File extensionDir = new File(extensionDirectory);
|
File extensionDir = new File(extensionDirectory);
|
||||||
if (!extensionDir.exists()) {
|
|
||||||
logger.info("Extension directory does not exist");
|
if (!extensionDir.exists() || !extensionDir.isDirectory() ||
|
||||||
return false;
|
!extensionDir.canRead() || !extensionDir.canWrite()) {
|
||||||
}
|
|
||||||
if (!extensionDir.isDirectory()) {
|
|
||||||
logger.info("Extension directory is not a directory");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!extensionDir.canRead()) {
|
|
||||||
logger.info("Extension directory is not readable");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!extensionDir.canWrite()) {
|
|
||||||
logger.info("Extension directory is not writable");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ public class I2PGenericUnsafeBrowser extends I2PCommonBrowser {
|
|||||||
// For now, we're just assuming. So don't use this until I understand the
|
// For now, we're just assuming. So don't use this until I understand the
|
||||||
// situation better, unless you think you know better.
|
// situation better, unless you think you know better.
|
||||||
private String[] browsers() {
|
private String[] browsers() {
|
||||||
String genericPathsProp = prop.getProperty("generic.bins.unix");
|
String genericPathsProp = getProperties().getProperty("generic.bins.unix");
|
||||||
if (genericPathsProp != null)
|
if (genericPathsProp != null)
|
||||||
return genericPathsProp.split(",");
|
return genericPathsProp.split(",");
|
||||||
return new String[] {
|
return new String[] {
|
||||||
@ -66,11 +66,11 @@ public class I2PGenericUnsafeBrowser extends I2PCommonBrowser {
|
|||||||
List<String> list = new ArrayList<String>();
|
List<String> list = new ArrayList<String>();
|
||||||
|
|
||||||
list = Arrays.asList(browsers());
|
list = Arrays.asList(browsers());
|
||||||
prop.setProperty("generic.bins.unix",
|
getProperties().setProperty("generic.bins.unix",
|
||||||
list.stream().collect(Collectors.joining(",")));
|
list.stream().collect(Collectors.joining(",")));
|
||||||
try (OutputStream fos = new FileOutputStream(
|
try (OutputStream fos = new FileOutputStream(
|
||||||
new File(runtimeDirectory(""), "browser.config"))) {
|
new File(runtimeDirectory(""), "browser.config"))) {
|
||||||
prop.store(fos, "Chromium Configuration Section");
|
getProperties().store(fos, "Chromium Configuration Section");
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
logger.warning(ioe.toString());
|
logger.warning(ioe.toString());
|
||||||
}
|
}
|
||||||
@ -366,7 +366,7 @@ public class I2PGenericUnsafeBrowser extends I2PCommonBrowser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Process launchAndDetatch(boolean privateWindow, String[] url) {
|
public Process launchAndDetatch(boolean privateWindow, String[] url) {
|
||||||
validateUserDir();
|
validateUserDirectory();
|
||||||
if (waitForProxy()) {
|
if (waitForProxy()) {
|
||||||
ProcessBuilder pb;
|
ProcessBuilder pb;
|
||||||
if (privateWindow) {
|
if (privateWindow) {
|
||||||
@ -404,6 +404,24 @@ public class I2PGenericUnsafeBrowser extends I2PCommonBrowser {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Stop all running processes managed by the browser manager.
|
||||||
|
*
|
||||||
|
* @return true if successful, false if not
|
||||||
|
*/
|
||||||
|
public boolean stop() {
|
||||||
|
if (p != null) {
|
||||||
|
p.destroy();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean running() {
|
||||||
|
if (p != null)
|
||||||
|
return p.isAlive();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private String ValidURL(String inUrl) {
|
private String ValidURL(String inUrl) {
|
||||||
String[] schemes = {"http", "https"};
|
String[] schemes = {"http", "https"};
|
||||||
@ -418,7 +436,7 @@ public class I2PGenericUnsafeBrowser extends I2PCommonBrowser {
|
|||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
I2PGenericUnsafeBrowser i2pBrowser = new I2PGenericUnsafeBrowser();
|
I2PGenericUnsafeBrowser i2pBrowser = new I2PGenericUnsafeBrowser();
|
||||||
i2pBrowser.validateUserDir();
|
i2pBrowser.validateUserDirectory();
|
||||||
boolean privateBrowsing = false;
|
boolean privateBrowsing = false;
|
||||||
i2pBrowser.logger.info("checking for private browsing");
|
i2pBrowser.logger.info("checking for private browsing");
|
||||||
ArrayList<String> visitURL = new ArrayList<String>();
|
ArrayList<String> visitURL = new ArrayList<String>();
|
||||||
|
@ -20,6 +20,5 @@ import javax.script.*;
|
|||||||
* @since 1.0.6
|
* @since 1.0.6
|
||||||
*/
|
*/
|
||||||
public class I2PLibreWolf {
|
public class I2PLibreWolf {
|
||||||
private static final ScriptEngineManager sem = new ScriptEngineManager();
|
// TODO: provide a librewolf updater here.
|
||||||
private final ScriptEngine ee = sem.getEngineByName("Nashorn");
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,216 @@
|
|||||||
|
package net.i2p.i2pfirefox.plugin;
|
||||||
|
|
||||||
|
import java.awt.GraphicsEnvironment;
|
||||||
|
import java.io.File;
|
||||||
|
import net.i2p.I2PAppContext;
|
||||||
|
import net.i2p.app.ClientApp;
|
||||||
|
import net.i2p.app.ClientAppManager;
|
||||||
|
import net.i2p.app.ClientAppState;
|
||||||
|
import net.i2p.app.MenuCallback;
|
||||||
|
import net.i2p.app.MenuHandle;
|
||||||
|
import net.i2p.app.MenuService;
|
||||||
|
import net.i2p.desktopgui.ExternalMain;
|
||||||
|
import net.i2p.i2pfirefox.I2PBrowser;
|
||||||
|
import net.i2p.i2pfirefox.I2PFirefox;
|
||||||
|
import net.i2p.util.I2PAppThread;
|
||||||
|
import net.i2p.util.Log;
|
||||||
|
import net.i2p.util.SystemVersion;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* I2PBrowserPlugin.java
|
||||||
|
* Copyright (C) 2022 idk <hankhill19580@gmail.com>
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the MIT License. See LICENSE.md for details.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
*
|
||||||
|
* @description I2PBrowser is a class that is used to open a browser window to
|
||||||
|
* the I2P network. It automatically detects the operating system and available
|
||||||
|
* browsers, and selects the best one to use, with Tor Browser at the top for
|
||||||
|
* Firefox and Brave at the top for Chrome.
|
||||||
|
*
|
||||||
|
* @author idk
|
||||||
|
* @since 0.0.16
|
||||||
|
*/
|
||||||
|
public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
|
||||||
|
private final I2PAppContext _context;
|
||||||
|
private final Log _log;
|
||||||
|
private final ClientAppManager _mgr;
|
||||||
|
private final String _args[];
|
||||||
|
private static final String PROP_DTG_ENABLED = "desktopgui.enabled";
|
||||||
|
private final File pluginDir;
|
||||||
|
private final File profileDir;
|
||||||
|
private MenuHandle lmhs;
|
||||||
|
private MenuHandle lmhf;
|
||||||
|
public I2PBrowserPlugin() {
|
||||||
|
_context = new I2PAppContext();
|
||||||
|
_mgr = null;
|
||||||
|
_args = new String[] {};
|
||||||
|
_log = _context.logManager().getLog(I2PBrowserPlugin.class);
|
||||||
|
pluginDir = new File(_context.getAppDir(), "plugins/i2pfirefox/");
|
||||||
|
profileDir = new File(pluginDir, "profile/");
|
||||||
|
}
|
||||||
|
public I2PBrowserPlugin(I2PAppContext ctx, ClientAppManager mgr,
|
||||||
|
String args[]) {
|
||||||
|
_context = ctx;
|
||||||
|
_mgr = mgr;
|
||||||
|
_args = args;
|
||||||
|
_log = ctx.logManager().getLog(I2PBrowserPlugin.class);
|
||||||
|
pluginDir = new File(_context.getAppDir(), "plugins/i2pfirefox/");
|
||||||
|
profileDir = new File(pluginDir, "profile/");
|
||||||
|
}
|
||||||
|
public String getDisplayName() { return "I2P Browser"; }
|
||||||
|
public String getName() { return "I2P Browser"; }
|
||||||
|
public ClientAppState getState() { return ClientAppState.STOPPED; }
|
||||||
|
public void shutdown(String[] args) {
|
||||||
|
if (!isSystrayEnabled()) {
|
||||||
|
_log.info("I2P Browser tray manager not supported");
|
||||||
|
} else {
|
||||||
|
_log.info("I2P Browser tray manager shutting down");
|
||||||
|
MenuService dtg = startTrayApp();
|
||||||
|
try {
|
||||||
|
Thread.sleep(1000);
|
||||||
|
} catch (InterruptedException ie) {
|
||||||
|
}
|
||||||
|
if (dtg != null) {
|
||||||
|
dtg.removeMenu(lmhs);
|
||||||
|
dtg.removeMenu(lmhf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
changeState(ClientAppState.STOPPED);
|
||||||
|
}
|
||||||
|
public void startup() {
|
||||||
|
changeState(ClientAppState.STOPPED);
|
||||||
|
if (!isSystrayEnabled()) {
|
||||||
|
_log.info("I2P Browser tray manager not supported");
|
||||||
|
try {
|
||||||
|
I2PBrowser i2pBrowser = new I2PBrowser(profileDir.getAbsolutePath());
|
||||||
|
String[] args = {"http://proxy.i2p"};
|
||||||
|
i2pBrowser.launchFirefox(0, args);
|
||||||
|
} catch (Exception e) {
|
||||||
|
_log.error("Error starting I2P Browser", e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
_log.info(
|
||||||
|
"Starting I2P Browser tray manager by testing http://proxy.i2p");
|
||||||
|
MenuService dtg = startTrayApp();
|
||||||
|
try {
|
||||||
|
Thread.sleep(1000);
|
||||||
|
} catch (InterruptedException ie) {
|
||||||
|
}
|
||||||
|
if (dtg != null) {
|
||||||
|
_log.info("I2P Browser integrating with I2P tray manager");
|
||||||
|
lmhs =
|
||||||
|
dtg.addMenu("Launch I2P Browser (Safe Mode)", new Starter(dtg));
|
||||||
|
dtg.showMenu(lmhs);
|
||||||
|
dtg.enableMenu(lmhs);
|
||||||
|
lmhf = dtg.addMenu("Launch I2P Browser (Flexible Mode)",
|
||||||
|
new FlexStarter(dtg));
|
||||||
|
dtg.showMenu(lmhf);
|
||||||
|
dtg.enableMenu(lmhf);
|
||||||
|
} else {
|
||||||
|
_log.info("I2P Browser tray manager not found");
|
||||||
|
}
|
||||||
|
I2PBrowser i2pBrowser = new I2PBrowser(profileDir.getAbsolutePath());
|
||||||
|
String[] args = {"http://proxy.i2p"};
|
||||||
|
i2pBrowser.launchFirefox(0, args);
|
||||||
|
} catch (Exception e) {
|
||||||
|
_log.error("Error starting I2P Browser tray manager", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copied directly from I2PSnark-standalone
|
||||||
|
private MenuService startTrayApp() {
|
||||||
|
try {
|
||||||
|
if (isSystrayEnabled()) {
|
||||||
|
System.setProperty("java.awt.headless", "false");
|
||||||
|
ExternalMain dtg =
|
||||||
|
new ExternalMain(_context, _context.clientAppManager(), null);
|
||||||
|
dtg.startup();
|
||||||
|
return dtg;
|
||||||
|
}
|
||||||
|
} catch (Throwable t) {
|
||||||
|
t.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copied directly from I2PSnark-standalone where it is used to determine
|
||||||
|
// whether to launchFirefox the tray app Our environment should basically
|
||||||
|
// never be headless, that doesn't make any sense, but something tells me I
|
||||||
|
// should leave that check in.
|
||||||
|
private boolean isSystrayEnabled() {
|
||||||
|
if (GraphicsEnvironment.isHeadless())
|
||||||
|
return false;
|
||||||
|
// default false except on OSX and Windows,
|
||||||
|
// and on Linux KDE and LXDE.
|
||||||
|
// Xubuntu XFCE works but doesn't look very good
|
||||||
|
// Ubuntu Unity was far too buggy to enable
|
||||||
|
// Ubuntu GNOME does not work, SystemTray.isSupported() returns false
|
||||||
|
String xdg = System.getenv("XDG_CURRENT_DESKTOP");
|
||||||
|
boolean dflt = SystemVersion.isWindows() || SystemVersion.isMac() ||
|
||||||
|
//"XFCE".equals(xdg) ||
|
||||||
|
"KDE".equals(xdg) || "LXDE".equals(xdg);
|
||||||
|
return _context.getProperty(PROP_DTG_ENABLED, dflt);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Callback when Start I2PBrowser is clicked in systray
|
||||||
|
* @since 0.9.61
|
||||||
|
*/
|
||||||
|
public class Starter implements MenuCallback {
|
||||||
|
private final MenuService _ms;
|
||||||
|
public Starter(MenuService ms) { _ms = ms; }
|
||||||
|
public void clicked(MenuHandle menu) {
|
||||||
|
// Thread t = new I2PAppThread(new StarterThread(),
|
||||||
|
//"I2PBrowser-Launcher start", true);
|
||||||
|
// t.start();
|
||||||
|
_log.info("I2P Browser starting up");
|
||||||
|
try {
|
||||||
|
I2PBrowser i2pBrowser = new I2PBrowser(profileDir.getAbsolutePath());
|
||||||
|
String[] args = {"http://proxy.i2p"};
|
||||||
|
i2pBrowser.launchFirefox(0, args);
|
||||||
|
} catch (Exception e) {
|
||||||
|
_log.error("Error starting I2P Browser", e);
|
||||||
|
}
|
||||||
|
_log.info("I2P Browser ran");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class FlexStarter implements MenuCallback {
|
||||||
|
private final MenuService _ms;
|
||||||
|
public FlexStarter(MenuService ms) { _ms = ms; }
|
||||||
|
public void clicked(MenuHandle menu) {
|
||||||
|
// Thread t = new I2PAppThread(new StarterThread(),
|
||||||
|
//"I2PBrowser-Launcher start", true);
|
||||||
|
// t.start();
|
||||||
|
_log.info("I2P Browser starting up");
|
||||||
|
try {
|
||||||
|
I2PBrowser i2pBrowser = new I2PBrowser(profileDir.getAbsolutePath());
|
||||||
|
i2pBrowser.usability = true;
|
||||||
|
String[] args = {"http://proxy.i2p"};
|
||||||
|
i2pBrowser.launchFirefox(0, args);
|
||||||
|
} catch (Exception e) {
|
||||||
|
_log.error("Error starting I2P Browser", e);
|
||||||
|
}
|
||||||
|
_log.info("I2P Browser ran");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private synchronized void changeState(ClientAppState state) {
|
||||||
|
if (_mgr != null)
|
||||||
|
_mgr.notify(this, state, null, null);
|
||||||
|
}
|
||||||
|
public static void main(String[] args) {
|
||||||
|
I2PBrowserPlugin plugin = new I2PBrowserPlugin();
|
||||||
|
try {
|
||||||
|
plugin.startup();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -75,8 +75,6 @@ iframe {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 36vw;
|
|
||||||
height: 64vh;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
|
ant distclean
|
||||||
|
ant jar
|
||||||
|
|
||||||
./test/test.sh
|
./test/test.sh
|
||||||
./test/test-chromium.sh
|
./test/test-chromium.sh
|
||||||
./test/test-firefox.sh
|
./test/test-firefox.sh
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && ant jar && cd ..
|
ant jar
|
||||||
|
|
||||||
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && ant jar && cd ..
|
ant jar
|
||||||
|
|
||||||
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && ant jar && cd ..
|
ant jar
|
||||||
|
|
||||||
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && ant jar && cd ..
|
ant jar
|
||||||
|
|
||||||
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile
|
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && ant jar && cd ..
|
ant jar
|
||||||
|
|
||||||
echo "Testing UNSAFE auto-selector with no private and no URL parameters."
|
echo "Testing UNSAFE auto-selector with no private and no URL parameters."
|
||||||
java -cp ./src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PGenericUnsafeBrowser 2> gen.0.err 1> gen.0.log
|
java -cp ./src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PGenericUnsafeBrowser 2> gen.0.err 1> gen.0.log
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && ant jar && cd ..
|
ant jar
|
||||||
|
|
||||||
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
rm -rf i2p.chromium.base.profile i2p.chromium.profile i2p.firefox.base.profile i2p.firefox.profile i2p.firefox.usability.profile tor-browser_en-US
|
||||||
|
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
#! /usr/bin/env sh
|
|
||||||
. ./config.sh
|
|
||||||
jpackage \
|
|
||||||
--verbose \
|
|
||||||
--type exe \
|
|
||||||
--win-dir-chooser \
|
|
||||||
--win-help-url "https://geti2p.net" \
|
|
||||||
--win-menu \
|
|
||||||
--win-menu-group "I2P Browser Configurer" \
|
|
||||||
--win-shortcut \
|
|
||||||
--win-shortcut-prompt \
|
|
||||||
--win-per-user-install \
|
|
||||||
--license-file LICENSE.md \
|
|
||||||
--icon src/icon.png \
|
|
||||||
--name i2pbrowser \
|
|
||||||
--app-version "$GITHUB_TAG" \
|
|
||||||
--input src/build \
|
|
||||||
--main-jar i2pfirefox.jar \
|
|
||||||
--main-class net.i2p.i2pfirefox.I2PBrowser
|
|
@ -1,19 +0,0 @@
|
|||||||
#! /usr/bin/env sh
|
|
||||||
. ./config.sh
|
|
||||||
mkdir -p tmp
|
|
||||||
cp -v LICENSE.md tmp/LICENSE.md
|
|
||||||
rm -rf i2pbrowser-portable
|
|
||||||
jpackage \
|
|
||||||
--verbose \
|
|
||||||
--type app-image \
|
|
||||||
--name i2pbrowser-portable \
|
|
||||||
--app-version "$GITHUB_TAG" \
|
|
||||||
--input src/build \
|
|
||||||
--main-jar i2pfirefox.jar \
|
|
||||||
--resource-dir tmp \
|
|
||||||
--icon src/icon.png \
|
|
||||||
--main-class net.i2p.i2pfirefox.I2PBrowser
|
|
||||||
rm -rf tmp
|
|
||||||
cp -v LICENSE.md i2pbrowser-portable/LICENSE.md
|
|
||||||
rm i2pbrowser-portable.zip -f
|
|
||||||
zip -r i2pbrowser-portable-${GITHUB_TAG}.zip i2pbrowser-portable
|
|
@ -4,9 +4,7 @@ git pull --all
|
|||||||
. ./config.sh
|
. ./config.sh
|
||||||
. "${HOME}/github-release-config.sh"
|
. "${HOME}/github-release-config.sh"
|
||||||
ant distclean jar
|
ant distclean jar
|
||||||
./windows.sh
|
ant windows-msi-release
|
||||||
./windows-exe.sh
|
|
||||||
./windows-portable.sh
|
|
||||||
msisum=$(sha256sum "i2pbrowser-${GITHUB_TAG}.msi")
|
msisum=$(sha256sum "i2pbrowser-${GITHUB_TAG}.msi")
|
||||||
github-release upload --user "${GITHUB_USER}" \
|
github-release upload --user "${GITHUB_USER}" \
|
||||||
--repo "${GITHUB_REPO}" \
|
--repo "${GITHUB_REPO}" \
|
||||||
@ -16,6 +14,7 @@ github-release upload --user "${GITHUB_USER}" \
|
|||||||
--file "i2pbrowser-${GITHUB_TAG}.msi" \
|
--file "i2pbrowser-${GITHUB_TAG}.msi" \
|
||||||
--replace
|
--replace
|
||||||
echo "Uploaded MSI package"
|
echo "Uploaded MSI package"
|
||||||
|
ant windows-exe-release
|
||||||
exesum=$(sha256sum "i2pbrowser-${GITHUB_TAG}.exe")
|
exesum=$(sha256sum "i2pbrowser-${GITHUB_TAG}.exe")
|
||||||
github-release upload --user "${GITHUB_USER}" \
|
github-release upload --user "${GITHUB_USER}" \
|
||||||
--repo "${GITHUB_REPO}" \
|
--repo "${GITHUB_REPO}" \
|
||||||
@ -25,6 +24,7 @@ github-release upload --user "${GITHUB_USER}" \
|
|||||||
--file "i2pbrowser-${GITHUB_TAG}.exe" \
|
--file "i2pbrowser-${GITHUB_TAG}.exe" \
|
||||||
--replace
|
--replace
|
||||||
echo "Uploaded EXE package"
|
echo "Uploaded EXE package"
|
||||||
|
ant windows-portable-release
|
||||||
zipsum=$(sha256sum "i2pbrowser-portable-${GITHUB_TAG}.zip")
|
zipsum=$(sha256sum "i2pbrowser-portable-${GITHUB_TAG}.zip")
|
||||||
github-release upload --user "${GITHUB_USER}" \
|
github-release upload --user "${GITHUB_USER}" \
|
||||||
--repo "${GITHUB_REPO}" \
|
--repo "${GITHUB_REPO}" \
|
||||||
|
19
windows.sh
19
windows.sh
@ -1,19 +0,0 @@
|
|||||||
#! /usr/bin/env sh
|
|
||||||
. ./config.sh
|
|
||||||
jpackage \
|
|
||||||
--verbose \
|
|
||||||
--type msi \
|
|
||||||
--win-dir-chooser \
|
|
||||||
--win-help-url "https://geti2p.net" \
|
|
||||||
--win-menu \
|
|
||||||
--win-menu-group "I2P Browser Configurer" \
|
|
||||||
--win-shortcut \
|
|
||||||
--win-shortcut-prompt \
|
|
||||||
--win-per-user-install \
|
|
||||||
--license-file LICENSE.md \
|
|
||||||
--icon src/icon.png \
|
|
||||||
--name i2pbrowser \
|
|
||||||
--app-version "$GITHUB_TAG" \
|
|
||||||
--input src/build \
|
|
||||||
--main-jar i2pfirefox.jar \
|
|
||||||
--main-class net.i2p.i2pfirefox.I2PBrowser
|
|
Reference in New Issue
Block a user