Compare commits

...

3 Commits
0.0.7 ... 0.0.8

3 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,7 @@ Fri, August 19
--------------
- Adds the ability to pass --private-window to Firefoxes and --incognito to Chromiums
- Switch Tor Browser to the top of the order on Windows to match i2p.firefox behavior
Mon, August 8
-------------

View File

@ -2,9 +2,9 @@
GITHUB_USER=eyedeekay
GITHUB_REPO=i2p.plugins.firefox
GITHUB_NAME="With Private Windows and Incognito support"
GITHUB_NAME="Which prioritizes Tor Browser if you have it installed and Firefox if you don't"
GITHUB_DESCRIPTION=$(cat CHANGES.md)
GITHUB_TAG=0.0.7
GITHUB_TAG=0.0.8
ant distclean
ant jar freeZip
github-release release --user "${GITHUB_USER}" \

View File

@ -63,12 +63,13 @@ public class I2PFirefox {
String[] tbPath = new String[]{new File(userHome, "/OneDrive/Desktop/Tor Browser/Browser/").toString(), new File(userHome, "/Desktop/Tor Browser/Browser/").toString()};
String[] path = new String[]{
tbPath[0], tbPath[1],
new File(programFiles, "Mozilla Firefox/").toString(),
new File(programFiles86, "Mozilla Firefox/").toString(),
new File(programFiles, "Waterfox/").toString(),
new File(programFiles86, "Waterfox/").toString(),
new File(programFiles, "Librewolf/").toString(),
tbPath[0], tbPath[1]};
};
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];
int i = 0;