diff --git a/README.md b/README.md
index 7d616c1224..8f441a836e 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
+
[](https://travis-ci.org/bitsquare/bitsquare)
@@ -14,7 +14,7 @@ There are no central points of control or failure in the Bitsquare network. Ther
Because the fiat money portion of any trade must be transferred via traditional means such as a wire transfer, Bitsquare incorporates first-class support for human arbitration to resolve any errors or disputes.
-You can read about all of this and more in the [overview](http://bitsquare.io/images/overview.png), [whitepaper](https://docs.google.com/document/d/1d3EiWZdaM89-P6MVhS53unXv2-pDpSFsN3W4kCGXKgY/edit#), [arbitration](https://docs.google.com/document/d/1LJCRFdtM2Jn2Oiv49qRXwBDG8HZD0Hiedy8tNjErHps/edit) and [risk analysis](https://docs.google.com/document/d/1sHwU7K7C8Nl-fS4Z6X88L-NVJ_WBiKnsSpYpYfyqUXA/edit) documents. Several [screencasts](https://www.youtube.com/playlist?list=PLXvC3iNe_di9bL1A5xyAKI2PzNg8jU092) are available as well.
+You can read about all of this and more in the [overview](https://bitsquare.io/images/overview.png), [whitepaper](https://docs.google.com/document/d/1d3EiWZdaM89-P6MVhS53unXv2-pDpSFsN3W4kCGXKgY/edit#), [arbitration](https://docs.google.com/document/d/1LJCRFdtM2Jn2Oiv49qRXwBDG8HZD0Hiedy8tNjErHps/edit) and [risk analysis](https://docs.google.com/document/d/1sHwU7K7C8Nl-fS4Z6X88L-NVJ_WBiKnsSpYpYfyqUXA/edit) documents. Several [screencasts](https://www.youtube.com/playlist?list=PLXvC3iNe_di9bL1A5xyAKI2PzNg8jU092) are available as well.
Status
diff --git a/src/main/java/io/bitsquare/gui/main/help/Help.java b/src/main/java/io/bitsquare/gui/main/help/Help.java
index d7d9263b52..7df24472cf 100644
--- a/src/main/java/io/bitsquare/gui/main/help/Help.java
+++ b/src/main/java/io/bitsquare/gui/main/help/Help.java
@@ -17,7 +17,6 @@
package io.bitsquare.gui.main.help;
-import io.bitsquare.BitSquare;
import io.bitsquare.BitSquareUI;
import java.net.MalformedURLException;
@@ -44,8 +43,8 @@ public class Help {
public static void openWindow(HelpId id) {
try {
- URL url = new URL("http://bitsquare.io/help.html?" + id);
- // URL url = new URL("https://github.com/bitsquare/bitsquare/wiki/?" + id);
+ URL url = new URL("https://docs.bitsquare.io/0.1.0-SNAPSHOT/userguide/index.html");
+ // URL url = new URL("https://docs.bitsquare.io/0.1.0-SNAPSHOT/userguide/index.html#" + id);
WebView webView;
if (helpWindow == null) {
helpWindow = new Stage();