added new iitc icon to mobile (see #102)

This commit is contained in:
Philipp Schaefer 2013-04-29 13:44:30 +02:00
parent a7b04a7a72
commit e04222b450
9 changed files with 4 additions and 2 deletions

1
mobile/.gitignore vendored
View File

@ -7,4 +7,5 @@ libs/
proguard-project.txt proguard-project.txt
local.properties local.properties
assets/iitc.js assets/iitc.js
assets/user-location.user.js
assets/plugins/ assets/plugins/

View File

@ -14,7 +14,7 @@
<application <application
android:allowBackup="true" android:allowBackup="true"
android:icon="@drawable/iitc_icon" android:icon="@drawable/ic_iitcm"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme" > android:theme="@style/AppTheme" >
<activity <activity

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -18,7 +18,7 @@
<string name="pref_about_msg"> <string name="pref_about_msg">
<![CDATA[<big><b>Ingress Intel Total Conversion Mobile</b></big><br><br> <![CDATA[<big><b>Ingress Intel Total Conversion Mobile</b></big><br><br>
<b>by <a href="https://github.com/leCradle">cradle</a></b><br><br> <b>by <a href="https://github.com/leCradle">cradle</a></b><br><br>
<b>Icon by <a href="https://twitter.com/machtwerk">machtwerk</a></b><br><br> <b>Icon by <a href="http://www.ludolab.net">Giuseppe Lucido</a></b><br><br>
IITC Mobile is an optimized mobile browser for the IITC Mobile is an optimized mobile browser for the
Ingress Intel Total Conversion (IITC) userscript by <a href="https://github.com/breunigs"><b>breunigs</b></a>. Ingress Intel Total Conversion (IITC) userscript by <a href="https://github.com/breunigs"><b>breunigs</b></a>.
After Niantic asked the main developer to shut down his github project, development After Niantic asked the main developer to shut down his github project, development

View File

@ -252,6 +252,7 @@ public class IITC_Mobile extends Activity {
// update the user location marker on the map // update the user location marker on the map
public void drawMarker(Location loc) { public void drawMarker(Location loc) {
Log.d("iitcm", "update location..." + loc.toString()); Log.d("iitcm", "update location..." + loc.toString());
iitc_view.loadUrl("javascript: window.console.log('" + loc.toString() + "');");
// throw away all positions with accuracy > 100 meters // throw away all positions with accuracy > 100 meters
// should avoid gps glitches // should avoid gps glitches
if (loc.getAccuracy() < 100) { if (loc.getAccuracy() < 100) {