diff --git a/AndroidManifest.xml b/AndroidManifest.xml index f7284f20..363c1b1d 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -5,7 +5,7 @@ - + @@ -41,6 +41,7 @@ + diff --git a/AndroidManifest.xml.production b/AndroidManifest.xml.production index de67238e..426230bb 100644 --- a/AndroidManifest.xml.production +++ b/AndroidManifest.xml.production @@ -40,13 +40,6 @@ - - - - - - diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml index 6aa9d327..7330b62a 100644 --- a/res/values-ar/strings.xml +++ b/res/values-ar/strings.xml @@ -2,7 +2,7 @@ خدمات خفية اوربوت (Orbot) - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml index 0f32fcf6..c9b338cf 100644 --- a/res/values-de/strings.xml +++ b/res/values-de/strings.xml @@ -2,7 +2,7 @@ Versteckte Dienste Orbot - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml index 8231abb6..bfa2ca40 100644 --- a/res/values-es/strings.xml +++ b/res/values-es/strings.xml @@ -1,7 +1,7 @@ Orbot - 0.0.8 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml index 6f48a6fe..f2cbac07 100644 --- a/res/values-fa/strings.xml +++ b/res/values-fa/strings.xml @@ -2,7 +2,7 @@ سرويس هاي مخفي اوربات - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml index baaa6a90..ecc9204a 100644 --- a/res/values-nb/strings.xml +++ b/res/values-nb/strings.xml @@ -1,7 +1,8 @@ Orbot - 0.0.8 + 1.0.4 + http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml index 41ddbb46..98d1c648 100644 --- a/res/values-nl/strings.xml +++ b/res/values-nl/strings.xml @@ -2,7 +2,7 @@ Verborgen diensten Orbot - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml index 15c97960..c5a19f0e 100644 --- a/res/values-pl/strings.xml +++ b/res/values-pl/strings.xml @@ -2,7 +2,7 @@ Usługi ukryte Orbot - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml index 65da898a..7be880f6 100644 --- a/res/values-pt/strings.xml +++ b/res/values-pt/strings.xml @@ -1,7 +1,7 @@ Orbot - 0.0.8 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml index ac2daed0..f9d22511 100644 --- a/res/values-ru/strings.xml +++ b/res/values-ru/strings.xml @@ -2,7 +2,7 @@ Скрытые сервисы Orbot - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml index 0b78d024..8bd67c09 100644 --- a/res/values-sv/strings.xml +++ b/res/values-sv/strings.xml @@ -1,7 +1,7 @@ Orbot - 0.0.8 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values-zh/strings.xml b/res/values-zh/strings.xml index 7eb0d89f..5515a78e 100644 --- a/res/values-zh/strings.xml +++ b/res/values-zh/strings.xml @@ -2,7 +2,7 @@ Hidden Services Orbot - 1.0.2 + 1.0.4 http://orbot/ http://check.torproject.org https://check.torproject.org diff --git a/res/values/strings.xml b/res/values/strings.xml index bb6bcb14..f566f684 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -2,7 +2,8 @@ Hidden Services Orbot - 1.0.2 + 1.0.4 + http://orbot/ http://check.torproject.org https://check.torproject.org @@ -101,8 +102,8 @@ Orbot is ready! Hundreds of thousands of people around the world use Tor for a wide variety of reasons: journalists and bloggers, human rights workers, law enforcement officers, soldiers, corporations, citizens of repressive regimes, and just ordinary citizens... and now you are ready to, as well! - http://github.com/downloads/guardianproject/OtRChat/OtRChat-0.0.1-alpha-build6a.apk - http://github.com/downloads/guardianproject/Orweb/Orweb-0.0.1c.apk.apk + https://guardianproject/getgibber + https://guardianproject/getorweb diff --git a/src/org/torproject/android/Orbot.java b/src/org/torproject/android/Orbot.java index 9108e994..f6c8f046 100644 --- a/src/org/torproject/android/Orbot.java +++ b/src/org/torproject/android/Orbot.java @@ -319,9 +319,14 @@ public class Orbot extends Activity implements OnClickListener, TorConstants super.onResume(); - + if (getIntent() == null) + return; + String action = getIntent().getAction(); + if (action == null) + return; + if (action.equals("org.torproject.android.REQUEST_HS_PORT")) { diff --git a/src/org/torproject/android/WizardHelper.java b/src/org/torproject/android/WizardHelper.java index 2f127b06..772195bc 100644 --- a/src/org/torproject/android/WizardHelper.java +++ b/src/org/torproject/android/WizardHelper.java @@ -379,6 +379,7 @@ public class WizardHelper implements TorConstants { LayoutInflater li = LayoutInflater.from(context); View view = li.inflate(R.layout.layout_about, null); + TextView versionName = (TextView)view.findViewById(R.id.versionName); versionName.setText(R.string.app_version);