Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
75fe20d84d | |||
b5c098bb9b | |||
2c5e75ac5c |
15
CHANGES.md
15
CHANGES.md
@ -0,0 +1,15 @@
|
|||||||
|
Sun, August 7
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Wrote the Javadoc
|
||||||
|
- Embedded the Firefox profile in the Jar so it always unpacks correctly
|
||||||
|
- re-added Tor Browser support on Windows
|
||||||
|
- Fix false positives in validation routine
|
||||||
|
- Make constructors public
|
||||||
|
|
||||||
|
Saturday, August 6
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- Implemented firefox detection
|
||||||
|
- Implemented directory setup
|
||||||
|
- Implemented processBuilder generator
|
@ -28,7 +28,7 @@
|
|||||||
<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.3" />
|
<property name="release.number" value="0.0.4" />
|
||||||
|
|
||||||
<!-- make the update xpi2p -->
|
<!-- make the update xpi2p -->
|
||||||
<!-- this contains everything except i2ptunnel.config -->
|
<!-- this contains everything except i2ptunnel.config -->
|
||||||
|
@ -4,7 +4,7 @@ GITHUB_USER=eyedeekay
|
|||||||
GITHUB_REPO=i2p.plugins.firefox
|
GITHUB_REPO=i2p.plugins.firefox
|
||||||
GITHUB_NAME="Initial Release"
|
GITHUB_NAME="Initial Release"
|
||||||
GITHUB_DESCRIPTION=$(cat README.md)
|
GITHUB_DESCRIPTION=$(cat README.md)
|
||||||
GITHUB_TAG=0.0.3
|
GITHUB_TAG=0.0.4
|
||||||
ant distclean
|
ant distclean
|
||||||
cd src && \
|
cd src && \
|
||||||
ant
|
ant
|
||||||
|
@ -54,7 +54,9 @@ public class I2PFirefox {
|
|||||||
return exePath;
|
return exePath;
|
||||||
}
|
}
|
||||||
private static String[] FIND_FIREFOX_SEARCH_PATHS_WINDOWS() {
|
private static String[] FIND_FIREFOX_SEARCH_PATHS_WINDOWS() {
|
||||||
String[] path = new String[]{"C:/Program Files/Mozilla Firefox/", "C:/Program Files (x86)/Mozilla Firefox/", "C:/Program Files/Waterfox/", "C:/Program Files (x86)/Waterfox/", "C:/Program Files/Librewolf/"};
|
String userHome = System.getProperty("user.home");
|
||||||
|
String[] tbPath = new String[]{userHome + "/OneDrive/Desktop/Tor Browser/Browser/", userHome + "/Desktop/Tor Browser/Browser/"};
|
||||||
|
String[] path = new String[]{"C:/Program Files/Mozilla Firefox/", "C:/Program Files (x86)/Mozilla Firefox/", "C:/Program Files/Waterfox/", "C:/Program Files (x86)/Waterfox/", "C:/Program Files/Librewolf/", tbPath[0], tbPath[1]};
|
||||||
String[] exes = new String[]{"firefox.exe", "firefox-bin.exe", "firefox-esr.exe", "waterfox.exe", "waterfox-bin.exe", "librewolf.exe"};
|
String[] exes = new String[]{"firefox.exe", "firefox-bin.exe", "firefox-esr.exe", "waterfox.exe", "waterfox-bin.exe", "librewolf.exe"};
|
||||||
String[] exePath = new String[path.length * exes.length];
|
String[] exePath = new String[path.length * exes.length];
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
Reference in New Issue
Block a user