Merge branch 'master' of https://github.com/jonatkins/ingress-intel-total-conversion
This commit is contained in:
commit
e2ab17fa81
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.cradle.iitc_mobile"
|
||||
android:versionCode="30"
|
||||
android:versionName="0.4.9">
|
||||
android:versionCode="31"
|
||||
android:versionName="0.5.0">
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
|
@ -43,7 +43,7 @@ window.plugin.userLocation.setup = function() {
|
||||
marker.on('click', function(e) {
|
||||
window.console.log('marker location');
|
||||
var ll = e.target.getLatLng();
|
||||
window.androidCopy('https://maps.google.com/?q='+ll.lat+','+ll.lng+'%20('+PLAYER.nickname+')');
|
||||
window.androidCopy('https://maps.google.com/?q='+ll.lat+','+ll.lng);
|
||||
});
|
||||
|
||||
plugin.userLocation.marker = marker;
|
||||
|
@ -137,6 +137,11 @@ window.plugin.portalslist.getPortals = function() {
|
||||
if (modShortName === '') {
|
||||
mods[ind] = ['', '', ''];
|
||||
} else {
|
||||
if ((modShortName === 'S') &&
|
||||
((mod.rarity=='COMMON' && mod.stats.MITIGATION == 6) ||
|
||||
(mod.rarity=='RARE' && mod.stats.MITIGATION == 8) ||
|
||||
(mod.rarity=='VERY_RARE' && mod.stats.MITIGATION == 10)))
|
||||
modShortName=modShortName+'!';
|
||||
mods[ind] = [mod.rarity, getPlayerName(mod.installingUser), modShortName, mod.displayName];
|
||||
}
|
||||
}else { mods[ind] = ['', '', '']; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user