updated changelog and resource definition files
svn:r22006
This commit is contained in:
parent
49835c6ea6
commit
8d6e657708
17
AUTHORS
17
AUTHORS
|
@ -1,7 +1,7 @@
|
||||||
This file lists the authors for Orbot,
|
This file lists the authors for Orweb,
|
||||||
a free software project to provide anonymity on the Internet on Android smartphones.
|
a free software project to provide anonymity web browsing on Android smartphones.
|
||||||
|
|
||||||
For more information about Orbot, see http://openideals.com/guardian
|
For more information about Orweb, see http://guardianproject.info/apps/orweb
|
||||||
|
|
||||||
If you got this file as a part of a larger bundle,
|
If you got this file as a part of a larger bundle,
|
||||||
there are probably other authors that you should be aware of.
|
there are probably other authors that you should be aware of.
|
||||||
|
@ -12,16 +12,7 @@ Main Authors:
|
||||||
Nathan Freitas <nathan@freitas.net> developed the primary
|
Nathan Freitas <nathan@freitas.net> developed the primary
|
||||||
Android application and managed the porting of Tor to Android.
|
Android application and managed the porting of Tor to Android.
|
||||||
|
|
||||||
Jake Appelbaum <jake@appelbaum.net > regular gave Nathan a
|
|
||||||
swift kick in the rear to get this done. He has also provided
|
|
||||||
extensive guidance and review. Most recently he has been
|
|
||||||
promoted to Chief Application Resource Editor.
|
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
-------------
|
-------------
|
||||||
Nick Mathewson <nickm@freehaven.net> wrote some of the patch
|
Connell Gauld developed the original Shadow browser on which this project is based.
|
||||||
code to support the compiling of Tor and LibEvent on Android,
|
|
||||||
and generaly provided guidance in the entire effort.
|
|
||||||
|
|
||||||
Adam Langley <> made the original valiant effort to port
|
|
||||||
Tor to Android.
|
|
|
@ -6,10 +6,9 @@
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
|
||||||
<!-- <uses-permission android:name="android.permission.WRITE_SETTINGS" /> -->
|
<!-- <uses-permission android:name="android.permission.WRITE_SETTINGS" /> -->
|
||||||
|
|
||||||
<!-- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> -->
|
<!-- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> -->
|
||||||
|
|
||||||
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="false">
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
|
||||||
<activity android:name=".Orbot"
|
<activity android:name=".Orbot"
|
||||||
android:theme="@android:style/Theme.NoTitleBar"
|
android:theme="@android:style/Theme.NoTitleBar"
|
||||||
>
|
>
|
||||||
|
@ -27,7 +26,7 @@
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
|
||||||
<service android:name=".service.TorService" android:process=":remote">
|
<service android:name=".service.TorService" android:process=":remote" android:debuggable="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="org.torproject.android.service.ITorService" />
|
<action android:name="org.torproject.android.service.ITorService" />
|
||||||
<action android:name="org.torproject.android.service.TOR_SERVICE" />
|
<action android:name="org.torproject.android.service.TOR_SERVICE" />
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
|
0.0.3x - 2010-03-15
|
||||||
|
- Added Start/Stop menu item for non-touch activation
|
||||||
|
- Improved parsing and validation of settings screen
|
||||||
|
- UI now compatible with landscape mode
|
||||||
|
- Added relay support for static/publicly accessible IP devices
|
||||||
|
|
||||||
0.0.3a - 2010-02-07
|
0.0.3a - 2010-02-07
|
||||||
- Integrated iptables support for transparenty proxying of outbound port 80 and DNS
|
- Integrated iptables support for transparent proxying of outbound port 80 and DNS
|
||||||
- Privoxy is now used as HTTP Proxy server (cross-compiled to ARM)
|
- Privoxy is now used as HTTP Proxy server (cross-compiled to ARM)
|
||||||
- New UI layout and graphics
|
- New UI layout and graphics
|
||||||
- Android settings screen for generated torrc file
|
- Android settings screen for generated torrc file
|
||||||
|
|
2
README
2
README
|
@ -22,4 +22,4 @@ Tor Frequently Asked Questions:
|
||||||
|
|
||||||
***********************************************
|
***********************************************
|
||||||
|
|
||||||
/* Copyright (c) 2009, Nathan Freitas, The Guardian Project - http://openideals.com/guardian */
|
/* Copyright (c) 2009, Nathan Freitas, The Guardian Project - http://guardianproject.info */
|
||||||
|
|
|
@ -10,5 +10,5 @@
|
||||||
# Indicates whether an apk should be generated for each density.
|
# Indicates whether an apk should be generated for each density.
|
||||||
split.density=false
|
split.density=false
|
||||||
# Project target.
|
# Project target.
|
||||||
target=android-2
|
target=android-4
|
||||||
apk-configurations=
|
apk-configurations=
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
<string name="control_permission_label">start and stop Tor</string>
|
<string name="control_permission_label">start and stop Tor</string>
|
||||||
<string name="tor_proxy_service_process">torproxyservice</string>
|
<string name="tor_proxy_service_process">torproxyservice</string>
|
||||||
|
|
||||||
|
|
||||||
<string name="status_starting_up">Orbot is starting...</string>
|
<string name="status_starting_up">Orbot is starting...</string>
|
||||||
<string name="status_activated">Connected to the Tor network</string>
|
<string name="status_activated">Connected to the Tor network</string>
|
||||||
<string name="status_disabled">"Orbot is Deactivated</string>
|
<string name="status_disabled">"Orbot is Deactivated</string>
|
||||||
|
@ -27,6 +26,9 @@
|
||||||
<string name="menu_log">Log</string>
|
<string name="menu_log">Log</string>
|
||||||
<string name="menu_info">Help</string>
|
<string name="menu_info">Help</string>
|
||||||
<string name="menu_apps">Apps</string>
|
<string name="menu_apps">Apps</string>
|
||||||
|
<string name="menu_start">Start</string>
|
||||||
|
<string name="menu_stop">Stop</string>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<string name="button_help">Help</string>
|
<string name="button_help">Help</string>
|
||||||
|
|
Loading…
Reference in New Issue