Skip to content

Commit

Permalink
fixes #42
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-portmen committed Sep 27, 2017
1 parent 8b37ed0 commit 9aed7bc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ exports.ids = {
'ljealnphmlekclcdoeficainfegfjgkc', // Country Flags (Opera)
'djlddpgigallklconlgapabopblddaki', // Edit with Photoshop (Chrome)
'babedbfkpnfmnopiagfocoelpfmpldkc', // Edit with Photoshop (Chrome)
'jjnoahbcdkgkepclefhfkjnpeiepdplh', // Edit with Photoshop (Chrome)
],
firefox: [
'{5610edea-88c1-4370-b93d-86aa131971d1}', // Open in IE
Expand Down
2 changes: 1 addition & 1 deletion host.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var files = [];
var sprocess = [];

var config = {
version: '0.5.6'
version: '0.5.7'
};
// closing node when parent process is killed
process.stdin.resume();
Expand Down
3 changes: 2 additions & 1 deletion linux/app/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
var fs = require('fs');
var path = require('path');

var share = process.argv.filter(a => a.startsWith('--custom-dir=')).map(a => a.split('=')[1])[0] || process.env.HOME;
var share = process.argv.filter(a => a.startsWith('--custom-dir='))
.map(a => a.split('=')[1])[0] || path.resolve(process.env.HOME, '.config');
if (share[0] === '~') {
share = path.join(process.env.HOME, share.slice(1));
}
Expand Down
2 changes: 1 addition & 1 deletion linux/uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ rm -f ~/.config/chromium/NativeMessagingHosts/com.add0n.node.json
echo " -> Removing manifest file for Mozilla Firefox"
rm -f ~/.mozilla/native-messaging-hosts/com.add0n.node.json
echo " -> Removing executables"
rm -f -r ~/com.add0n.node
rm -f -r ~/.config/com.add0n.node

echo ">>> Native Client is removed <<<".
3 changes: 2 additions & 1 deletion mac/app/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
var fs = require('fs');
var path = require('path');

var share = process.argv.filter(a => a.startsWith('--custom-dir=')).map(a => a.split('=')[1])[0] || process.env.HOME;
var share = process.argv.filter(a => a.startsWith('--custom-dir='))
.map(a => a.split('=')[1])[0] || path.resolve(process.env.HOME, '.config');
if (share[0] === '~') {
share = path.join(process.env.HOME, share.slice(1));
}
Expand Down
2 changes: 1 addition & 1 deletion mac/uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ rm -f ~/Library/Application\ Support/Chromium/NativeMessagingHosts/com.add0n.nod
echo " -> Removing manifest file for Mozilla Firefox"
rm -f ~/Library/Application\ Support/Mozilla/NativeMessagingHosts/com.add0n.node.json
echo " -> Removing executables"
rm -f -r ~/com.add0n.node
rm -f -r ~/.config/com.add0n.node

echo ">>> Native Client is removed <<<".

5 comments on commit 9aed7bc

@pblac4297
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm having a problem with getting the tor browser to work. Please note that I am new to programing, so I will need help with how to fig the issue?

@pblac4297
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please help as I'm trying to get Tor browser on Firefox, and being new at all this I need help?

@pblac4297
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One last step

For the extension to work there is one extra step. Please download, unzip and install the native client.

Click here to download the package for you OS or click here to browse all available download options.
Extract the downloaded package in a local directory
Now double-click the install.bat file

The installer script copies a few files to two different locations for your browser to be able to detect this native client. If you already have NodeJS in your system, the installed version of NodeJS will be used. So please make sure you have an up-to-date version of NodeJS installed. If you don't have this application, the portable version will be used. Read more here.

To completely remove this native client, run uninstall.bat.

To make sure the native client is accessible, click on the "Check Connection" button. If you still get this page even when the "Check Button" reports successful connection, it means the application cannot be accessed (path is not correct in the options page). If the path to the executable is correct and the native client is connected, you can debug the connection by enabling console logs.
Installation Guide:

Windows: YouTube
Mac & Linux: YouTube

This is the message that I get when I try to connect to the Tor Browser.

@pblac4297
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pblac4297
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please help as I don't have knowledge to go past this please help?

Please sign in to comment.