update index.html

This commit is contained in:
idk
2022-09-05 00:40:42 -04:00
parent 084ecb46ff
commit 1c1e048c50
8 changed files with 54 additions and 26 deletions

View File

@ -7,6 +7,7 @@ Description:
> I2PBrowser.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 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. > I2PBrowser.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 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 Author: idk
Parent class: I2PCommonBrowser
package: net.i2p.i2pfirefox package: net.i2p.i2pfirefox
## Dependencies ## Dependencies

View File

@ -277,7 +277,7 @@ This method has no parameters.
| url | String[] | | | url | String[] | |
### launch [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L598) ### launch [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L597)
+ Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Chromium with the profile directory. + Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Chromium with the profile directory.
+ Access: public + Access: public
@ -289,7 +289,7 @@ This method has no parameters.
| url | String[] | | | url | String[] | |
### launch [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L623) ### launch [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L622)
+ Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Chromium with the profile directory. + Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Chromium with the profile directory.
+ Access: public + Access: public
@ -300,7 +300,7 @@ This method has no parameters.
| privateWindow | boolean | | | privateWindow | boolean | |
### launch [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L632) ### launch [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L631)
+ Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Chromium with the profile directory. + Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Chromium with the profile directory.
+ Access: public + Access: public
@ -309,7 +309,7 @@ This method has no parameters.
This method has no parameters. This method has no parameters.
### ValidURL [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L634) ### ValidURL [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L633)
+ Description: + Description:
+ Access: private + Access: private
@ -321,7 +321,7 @@ This method has no parameters.
| inUrl | String | | | inUrl | String | |
### main [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L644) ### main [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L643)
+ Description: + Description:
+ Access: public + Access: public
@ -333,7 +333,7 @@ This method has no parameters.
| args | String[] | | | args | String[] | |
### sleep [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L671) ### sleep [[src]](src/java/net/i2p/i2pfirefox/I2PChromium.java#L670)
+ Description: + Description:
+ Access: private + Access: private

View File

@ -7,6 +7,7 @@ Description:
> I2PChromiumProfileChecker.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. I2PChromiumProfileChecker is a that checks if the Chromium profile directory exists and is valid. > I2PChromiumProfileChecker.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. I2PChromiumProfileChecker is a that checks if the Chromium profile directory exists and is valid.
Author: idk Author: idk
Parent class: I2PCommonBrowser
package: net.i2p.i2pfirefox package: net.i2p.i2pfirefox
## Dependencies ## Dependencies

View File

@ -24,16 +24,41 @@ package: net.i2p.i2pfirefox
<li>java.io.OutputStream</li> <li>java.io.OutputStream</li>
<li>java.nio.file.Files</li> <li>java.nio.file.Files</li>
<li>java.nio.file.StandardCopyOption</li> <li>java.nio.file.StandardCopyOption</li>
<li>java.util.logging.FileHandler</li>
<li>java.util.logging.Logger</li>
<li>java.util.logging.SimpleFormatter</li>
<li>java.util.zip.ZipEntry</li> <li>java.util.zip.ZipEntry</li>
<li>java.util.zip.ZipInputStream</li> <li>java.util.zip.ZipInputStream</li>
</ul> </ul>
</details> </details>
## No member variables in this class ## Member Variables
## Methods ## Methods
### runtimeDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L38) ### println [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L52)
+ Description:
+ Access: public
+ Modifiers: static
+ return: void
| Name | Type | Description |
| ----- | ----- | ----- |
| line | String | |
### logFile [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L54)
+ Description:
+ Access: private
+ Modifiers: static
+ return: File
This method has no parameters.
### runtimeDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L68)
+ Description: get the runtime directory creating it if create=true + Description: get the runtime directory creating it if create=true
+ Access: protected + Access: protected
@ -46,7 +71,7 @@ package: net.i2p.i2pfirefox
| override | String | | | override | String | |
### runtimeDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L55) ### runtimeDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L85)
+ Description: get the correct runtime directory + Description: get the correct runtime directory
+ Access: protected + Access: protected
@ -58,7 +83,7 @@ package: net.i2p.i2pfirefox
| override | String | | | override | String | |
### profileDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L102) ### profileDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L132)
+ Description: get the profile directory creating it if necessary + Description: get the profile directory creating it if necessary
+ Access: protected + Access: protected
@ -71,7 +96,7 @@ package: net.i2p.i2pfirefox
| browser | String | | | browser | String | |
### profileDir [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L114) ### profileDir [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L144)
+ Description: + Description:
+ Access: protected + Access: protected
@ -84,7 +109,7 @@ package: net.i2p.i2pfirefox
| browser | String | | | browser | String | |
### unpackProfile [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L120) ### unpackProfile [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L150)
+ Description: + Description:
+ Access: protected + Access: protected
@ -97,7 +122,7 @@ package: net.i2p.i2pfirefox
| base | String | | | base | String | |
### copyDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L167) ### copyDirectory [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L196)
+ Description: + Description:
+ Access: protected + Access: protected
@ -112,7 +137,7 @@ package: net.i2p.i2pfirefox
| base | String | | | base | String | |
### copyDirectoryCompatibityMode [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L183) ### copyDirectoryCompatibityMode [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L212)
+ Description: + Description:
+ Access: private + Access: private
@ -127,7 +152,7 @@ package: net.i2p.i2pfirefox
| base | String | | | base | String | |
### copyFile [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L192) ### copyFile [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L221)
+ Description: + Description:
+ Access: private + Access: private
@ -140,7 +165,7 @@ package: net.i2p.i2pfirefox
| destinationFile | File | | | destinationFile | File | |
### validateProfileFirstRun [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L203) ### validateProfileFirstRun [[src]](src/java/net/i2p/i2pfirefox/I2PCommonBrowser.java#L232)
+ Description: + Description:
+ Access: public + Access: public

View File

@ -293,7 +293,7 @@ This method has no parameters.
| url | String[] | | | url | String[] | |
### launch [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L511) ### launch [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L510)
+ Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Firefox with the profile directory. + Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Firefox with the profile directory.
+ Access: public + Access: public
@ -305,7 +305,7 @@ This method has no parameters.
| url | String[] | | | url | String[] | |
### launch [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L535) ### launch [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L534)
+ Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Firefox with the profile directory. + Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Firefox with the profile directory.
+ Access: public + Access: public
@ -316,7 +316,7 @@ This method has no parameters.
| privateWindow | boolean | | | privateWindow | boolean | |
### launch [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L545) ### launch [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L544)
+ Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Firefox with the profile directory. Uses a semi-permanent profile. + Description: Populates a profile directory with a proxy configuration. Waits for an HTTP proxy on the port 4444 to be ready. Launches Firefox with the profile directory. Uses a semi-permanent profile.
+ Access: public + Access: public
@ -325,7 +325,7 @@ This method has no parameters.
This method has no parameters. This method has no parameters.
### ValidURL [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L547) ### ValidURL [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L546)
+ Description: + Description:
+ Access: private + Access: private
@ -337,7 +337,7 @@ This method has no parameters.
| inUrl | String | | | inUrl | String | |
### main [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L558) ### main [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L557)
+ Description: + Description:
+ Access: public + Access: public
@ -349,7 +349,7 @@ This method has no parameters.
| args | String[] | | | args | String[] | |
### sleep [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L586) ### sleep [[src]](src/java/net/i2p/i2pfirefox/I2PFirefox.java#L585)
+ Description: + Description:
+ Access: private + Access: private

View File

@ -7,6 +7,7 @@ Description:
> I2PFirefoxProfileChecker.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. I2PFirefoxProfileChecker is a that checks if the Firefox profile directory exists and is valid. > I2PFirefoxProfileChecker.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. I2PFirefoxProfileChecker is a that checks if the Firefox profile directory exists and is valid.
Author: idk Author: idk
Parent class: I2PCommonBrowser
package: net.i2p.i2pfirefox package: net.i2p.i2pfirefox
## Dependencies ## Dependencies

View File

@ -204,7 +204,7 @@ This method has no parameters.
| url | String[] | | | url | String[] | |
### sleep [[src]](src/java/net/i2p/i2pfirefox/I2PGenericUnsafeBrowser.java#L367) ### sleep [[src]](src/java/net/i2p/i2pfirefox/I2PGenericUnsafeBrowser.java#L366)
+ Description: + Description:
+ Access: private + Access: private
@ -216,7 +216,7 @@ This method has no parameters.
| millis | int | | | millis | int | |
### ValidURL [[src]](src/java/net/i2p/i2pfirefox/I2PGenericUnsafeBrowser.java#L375) ### ValidURL [[src]](src/java/net/i2p/i2pfirefox/I2PGenericUnsafeBrowser.java#L374)
+ Description: + Description:
+ Access: private + Access: private
@ -228,7 +228,7 @@ This method has no parameters.
| inUrl | String | | | inUrl | String | |
### checkifPortIsOccupied [[src]](src/java/net/i2p/i2pfirefox/I2PGenericUnsafeBrowser.java#L385) ### checkifPortIsOccupied [[src]](src/java/net/i2p/i2pfirefox/I2PGenericUnsafeBrowser.java#L384)
+ Description: + Description:
+ Access: private + Access: private

View File

@ -317,7 +317,7 @@ Linux(because the top command will be run and the script will exit).\n\nBoth det
<delete dir="plugin/eepsite/docroot/torrents/" /> <delete dir="plugin/eepsite/docroot/torrents/" />
<!-- get version number --> <!-- get version number -->
<buildnumber file="scripts/build.number" /> <buildnumber file="scripts/build.number" />
<property name="release.number" value="0.0.24" /> <property name="release.number" value="0.0.25" />
<!-- make the update xpi2p --> <!-- make the update xpi2p -->
<!-- this contains everything except i2ptunnel.config --> <!-- this contains everything except i2ptunnel.config -->