first pass of fixes for 2014-05-23

still need to fix name changes in response for portal details
This commit is contained in:
Jon Atkins
2014-05-23 22:21:36 +01:00
parent 4cc3cbbfc5
commit 589fd83b93
4 changed files with 33 additions and 33 deletions

View File

@ -2,7 +2,7 @@
// @id iitc-plugin-guess-player-levels@breunigs
// @name IITC plugin: guess player level
// @category Info
// @version 0.5.2.@@DATETIMEVERSION@@
// @version 0.5.3.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@
@ -189,7 +189,7 @@ window.plugin.guessPlayerLevels.extractChatData = function(data) {
attackData[nick][timestamp].push(portal);
}
data.raw.result.forEach(function(msg) {
data.raw.success.forEach(function(msg) {
var plext = msg[2].plext;
// search for "x deployed an Ly Resonator on z"

View File

@ -2,7 +2,7 @@
// @id iitc-plugin-player-tracker@breunigs
// @name IITC Plugin: Player tracker
// @category Layer
// @version 0.10.2.@@DATETIMEVERSION@@
// @version 0.10.3.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@
@ -144,7 +144,7 @@ window.plugin.playerTracker.eventHasLatLng = function(ev, lat, lng) {
window.plugin.playerTracker.processNewData = function(data) {
var limit = plugin.playerTracker.getLimit();
$.each(data.raw.result, function(ind, json) {
$.each(data.raw.success, function(ind, json) {
// skip old data
if(json[1] < limit) return true;