Compare commits

...

2 Commits

Author SHA1 Message Date
idk
4f22360b2f update index.html 2022-08-20 20:32:55 -04:00
idk
ccfe0af3f6 update index.html 2022-08-20 20:24:35 -04:00
2 changed files with 25 additions and 3 deletions

View File

@ -43,6 +43,7 @@ add a UI element that triggers something along the lines of this:
```java
// Firefox Example
if (i2pIsRunning()) {
logger.warning("I2P is already running");
System.out.println("I2PFirefox");
@ -51,4 +52,15 @@ if (i2pIsRunning()) {
}
```
```java
// Chromium Example
if (i2pIsRunning()) {
logger.warning("I2P is already running");
System.out.println("I2PChromium");
I2PChromium i2pChromium = new I2PChromium();
i2pChromium.launch();
}
```
to add a browser management tool to it.

View File

@ -94,13 +94,13 @@
</h3>
<pre><code>
mkdir ~/tmp-i2pfirefox &amp;&amp; cd ~/tmp-i2pfirefox
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/0.0.8/i2pfirefox.zip
wget https://github.com/eyedeekay/i2p.plugins.firefox/releases/download/0.0.9/i2pfirefox.zip
unzip i2pfirefox.zip
./i2pbrowser.cmd
./i2pfirefox.cmd
#or if you want to use a Chromium
./test-chromium.sh
./i2pchromium.cmd
</code></pre>
<h3>
Building
@ -127,12 +127,22 @@ java -cp ./src/build/i2pfirefox.jar net.i2p.i2pfirefox.I2PFirefox
add a UI element that triggers something along the lines of this:
</p>
<pre><code>
// Firefox Example
if (i2pIsRunning()) {
logger.warning(&#34;I2P is already running&#34;);
System.out.println(&#34;I2PFirefox&#34;);
I2PFirefox i2pFirefox = new I2PFirefox();
i2pFirefox.launch();
}
</code></pre>
<pre><code>
// Chromium Example
if (i2pIsRunning()) {
logger.warning(&#34;I2P is already running&#34;);
System.out.println(&#34;I2PChromium&#34;);
I2PChromium i2pChromium = new I2PChromium();
i2pChromium.launch();
}
</code></pre>
<p>
to add a browser management tool to it.