Skip to content

Commit

Permalink
updating guides
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-portmen committed May 1, 2017
1 parent 017a6b1 commit 7beb545
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 19 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ You can find up-to-date list as well as IDs here: https://github.com/andy-portme

Notes:

1. On Linux and Mac, installer script only copies node executable if it is not already defined in the PATH enviroment. Please make sure you have an up-to-date version of NodeJS
1. On Linux and Mac, installer script only copies node executable if it is not already defined in the PATH environment. Please make sure you have an up-to-date version of NodeJS
2. On Linux and Mac, you can define custom root directory by adding `--custom-dir=` to the installer script
Example: `./install.sh --custom-dir=~/Desktop/`
3. Removing the native client [Linux and Mac]: As of version 0.2.1, the installer prints all the directries it creates or inserts scripts in. Basically on Linux and Mac, two JSON files are inserted to predefined directories and a root directory is created which contains all the files. To remove the program simply delete the root directory and delete the two generated manifest JSON files. Path to all these files will be printed during installation
4. Removing the native client [windows]: On Windows OS, a directory is created in "Program Files" and all the files are inserted in this directory. To remove the program, simply delete this directory. Also note that two registry entries are also added so that Chrome, Opera, and Firefox browsers can find the actual executable. Path to these registry entries are also printed during installation
3. Removing the native client [Linux and Mac]: As of version 0.2.1, the installer prints all the directories it creates or inserts scripts in. Basically on Linux and Mac, two JSON files are inserted to predefined directories and a root directory is created which contains all the files. To remove the program simply delete the root directory and delete the two generated manifest JSON files. Path to all these files will be printed during installation
4. Removing the native client [windows]: On Windows OS, a directory is created in the "%LocalAPPData;" and all the files are inserted in this directory. To remove the program, simply delete this directory. Also note that two registry entries are also added so that Chrome, Opera, and Firefox browsers can find the actual executable. Path to these registry entries are also printed during installation. You can use "uninstall.bat" to remove all files and registries.
5. If you don't remember where the files are, simply run the installer one more time. It just overwrites all the files.
6. For the installer to be able to copy manifest files and to create the root directory, it needs administration (sudo) permission. If you are not comfortable to allow this permission, you can manually copy all the files
2 changes: 1 addition & 1 deletion host.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var https = lazyRequire('./follow-redirects').https;
var server, files = [], sprocess = [];

var config = {
version: '0.3.7'
version: '0.3.8'
};
// closing node when parent process is killed
process.stdin.resume();
Expand Down
4 changes: 3 additions & 1 deletion linux/ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ To install the native application
1. Open a terminal window and point it into this directory
2. run ./install.sh

If you get "No such file or directory" message, it means the current directory is not the root of the extracted directory. Read http://add0n.com/open-in.html?#faq13 page for more info.

Installation Guide:
https://www.youtube.com/watch?v=bB4Bj_APg4g
https://www.youtube.com/watch?v=bB4Bj_APg4g
4 changes: 3 additions & 1 deletion mac/ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ To install the native application
1. Open a terminal window and point it into this directory
2. run ./install.sh

If you get "No such file or directory" message, it means the current directory is not the root of the extracted directory. Read http://add0n.com/open-in.html?#faq13 page for more info.

Installation Guide:
https://www.youtube.com/watch?v=bB4Bj_APg4g
https://www.youtube.com/watch?v=bB4Bj_APg4g
34 changes: 22 additions & 12 deletions windows/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,32 @@
To install the native application:


1. Extract this downloaded ZIP file in a local directory.

2. Right-click on "install.bat" and use "Run as Administrator".



2. Double-click on "install.bat".


3. Wait for the script to display the successful message.


To uninstall the native application:

1. Right-click on "uninstall.bat" and use "Run as Administrator".

2. Wait for the script to display the successful message.


Note: the script needs administrator permission to copy files successfully.


1. Double-click on "uninstall.bat".


2. Wait for the script to display the successful message.



Note: these scripts do not need administrator permission anymore!

Installation Guide:





Installation Guide (skip the administrator permission part):


https://www.youtube.com/watch?v=18jAqTXBiZA

0 comments on commit 7beb545

Please sign in to comment.