diff --git a/.classpath b/.classpath index c4756d90..4db39efd 100644 --- a/.classpath +++ b/.classpath @@ -3,6 +3,7 @@ - + + diff --git a/BUILD b/BUILD index 0a6cb66f..4c93a408 100644 --- a/BUILD +++ b/BUILD @@ -91,6 +91,16 @@ We need to build our Java SOCKS library: ant jar cp bin/jar/asocks.jar ../Orbot/libs +We need to get the TorControl library for Java (https://svn.torproject.org/svn/torctl/trunk/doc/howto.txt): + + git clone git://git.torproject.org/git/jtorctl + cd jtorctl + mkdir bin + javac net/freehaven/tor/control/TorControlConnection.java -d bin + cd bin + jar cvf jtorctrl.jar * + cp jtorctrl.jar {Orbot Home}/libs + Finally, we'll make a proper Android package with ant and the Android App SDK: export APP_SDK=~/Documents/projects/android/android-sdk-linux_x86-1.5_r3/tools diff --git a/CHANGELOG b/CHANGELOG index 6f0da51c..2f45cc38 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,12 @@ +0.0.2 - 2009-11-27 +- Major improvement to the user interface including relative layout for different screens +- New graphics resources +- Implemented Tor Control Port using official Java library +- Added 'clear' button to the log screen +- Added 'save' and editable textbox for the settings screen +- Moved screen navigation to a pop-up menu Changes in version 0.0.1-alpha - 2009-10-21 - First code release - Major Features: Tor binary application is fully operational, UI: Start/Stop Tor, View Message Log, View Settings (torrc) - diff --git a/assets/torrc b/assets/torrc index 68601080..f3085477 100644 --- a/assets/torrc +++ b/assets/torrc @@ -52,11 +52,11 @@ DataDirectory /data/data/org.torproject.android/data ## The port on which Tor will listen for local connections from Tor ## controller applications, as documented in control-spec.txt. -#ControlPort 9051 +ControlPort 9051 ## If you enable the controlport, be sure to enable one of these ## authentication methods, to prevent attackers from accessing it. #HashedControlPassword 16:872860B76453A77D60CA2BB8C1A7042072093276A3D701AD684053EC4C -#CookieAuthentication 1 +CookieAuthentication 1 ############### This section is just for location-hidden services ### diff --git a/build.xml b/build.xml index 6d8e0ff7..2ec1d94c 100644 --- a/build.xml +++ b/build.xml @@ -1,5 +1,5 @@ - +