Skip to content

Commit

Permalink
fixed argv parsing bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
codebuff committed Mar 23, 2016
1 parent 23ab2b3 commit 98d90d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gui/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h5>
</p>
<hr/>
<p>
To check if your local ip (your unique identifier on internet) is leaking or not please visit : <a
To check if your local ip (your unique identifier on internet) is being leaked or not please visit : <a
href="https://ipleak.net" target="_blank">https://ipleak.net</a>
<br/> To avoid webrtc leaks follow instructions given at <a href="https://ipleak.net/#webrtcleak"
target="_blank">https://ipleak.net/#webrtcleak</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "KroTor - Access internet via TOR",
"short_name": "KroTor",
"description": "",
"version": "0.1.8",
"version": "0.1.9",
"manifest_version": 2,
"minimum_chrome_version": "36",
"icons": {
Expand Down
6 changes: 2 additions & 4 deletions todo.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
- authentication for proxy
- adding custom bridges
- running app in background
- advance mode (user can pass arguments directly to binary)
- adding custom bridges support
- running app in background
2 changes: 1 addition & 1 deletion tor.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function populateArgv() {
}

if (saved_settings.adv_opt != "none") {
NaClTerm.argv = NaClTerm.argv.concat([saved_settings.adv_opt])
NaClTerm.argv = NaClTerm.argv.concat(saved_settings.adv_opt.trim().split(" "));
}

}
Expand Down

0 comments on commit 98d90d2

Please sign in to comment.