Skip to content

Commit

Permalink
Preparing version 1.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhatta committed Nov 19, 2018
1 parent 8ba3e60 commit db42c4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The old Ant build system is still available, but works with Java 8 only.
To start the Orchid SOCKS5 proxy, perform the following:

```
java -jar Orchid-v1.0.2.jar
java -jar Orchid-v1.0.3.jar
```

To test Orchid, you can tell your web browser to use Orchid as a SOCKS5 proxy (the default listening port is `9150`) - however it is important to note that Orchid + your browser is **NOT** a secure replacement for [the Tor Browser Bundle](https://www.torproject.org/projects/torbrowser.htm), which has many other enhancements beyond Tor.
Expand All @@ -52,7 +52,7 @@ For example, with Mozilla Firefox, by default, DNS lookups are not sent over a c
Orchid also includes a "dashboard" feature to observe information about the internal state of Tor. To start the dashboard, set the following property when the JAR is run like:

```
java -Dcom.subgraph.orchid.dashboard.port=10000 -jar Orchid-v1.0.2.jar
java -Dcom.subgraph.orchid.dashboard.port=10000 -jar Orchid-v1.0.3.jar
```

To access the dashboard, just connect to the port (for this example `10000`) with netcat.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/demo/ApplicationProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class ApplicationProperties {
private static final String NAME = "Orchid";
private static final String VERSION = "1.0.2";
private static final String VERSION = "1.0.3";
private static SysLog LOGGING_THRESHOLD = SysLog.INFORMATIONAL;
private static boolean USE_COMPRESSION = false;
private static boolean ENFORCE_SSL_CERTIFICATES = true;
Expand Down

0 comments on commit db42c4f

Please sign in to comment.