Skip to content

Commit

Permalink
Merge pull request #677 from modos189/v0.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
modos189 authored Oct 18, 2023
2 parents 23b70fc + afad3a7 commit 896ff9f
Show file tree
Hide file tree
Showing 59 changed files with 580 additions and 127 deletions.
6 changes: 5 additions & 1 deletion core/total-conversion-build.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
// @author jonatkins
// @name IITC: Ingress intel map total conversion
// @version 0.36.1
// @version 0.37.0
// @description Total conversion for the ingress intel map.
// @run-at document-end


window.script_info = plugin_info;
window.script_info.changelog = [
{
version: '0.37.0',
changes: ['Keep COMM message team in parsed data as player.team may differ from team'],
},
{
version: '0.36.1',
changes: ['Revert sorted sidebar links'],
Expand Down
2 changes: 1 addition & 1 deletion mobile/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
minSdkVersion 17
targetSdkVersion 29
versionCode = getVersionCodeTimeStamps()
versionName "0.36.1"
versionName "0.37.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
Expand Down
12 changes: 10 additions & 2 deletions plugins/ap-stats.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// @author Hollow011
// @name Available AP statistics
// @category Info
// @version 0.4.2
// @version 0.4.3
// @description Displays the per-team AP gains available in the current view.

/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.4.3',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
window.plugin.compAPStats = function() {};
Expand Down Expand Up @@ -51,7 +59,7 @@ window.plugin.compAPStats.update = function (hasFinished) {
window.plugin.compAPStats.updateNoPortals(hasFinished);
return;
}

var result = window.plugin.compAPStats.compAPStats();
var loading = hasFinished ? '' : 'Loading...';

Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-bing.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author johnd0e
// @name Bing maps
// @category Map Tiles
// @version 0.3.1
// @version 0.3.2
// @description Add the bing.com map layers.

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.3.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var mapBing = {};

Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-blank.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author jonatkins
// @name Blank map
// @category Map Tiles
// @version 0.1.3
// @version 0.1.4
// @description Add a blank map layer - no roads or other features.

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.1.4',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var mapTileBlank = {};

Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-gaode.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author johnd0e
// @name Gaode (高德地图) / AutoNavi map
// @category Map Tiles
// @version 0.1.1
// @version 0.1.2
// @description Map layers from AutoNavi / Gaode (高德地图)

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.1.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var mapGaode = {};

Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-google-gray.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author jacob1123
// @name Gray Google map
// @category Map Tiles
// @version 0.1.4
// @version 0.1.5
// @description Add a simplified gray Version of Google map tiles as an optional layer.

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.1.5',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var grayGMaps = {};

Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-kartverket.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author johnd0e
// @name Kartverket.no maps (Norway)
// @category Map Tiles
// @version 0.2.2
// @version 0.2.3
// @description Add Kartverket.no map layers.

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.2.3',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var mapKartverket = {};

Expand Down
6 changes: 5 additions & 1 deletion plugins/basemap-openstreetmap.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @author jonatkins
// @name OpenStreetMap.org map
// @category Map Tiles
// @version 0.1.2
// @version 0.1.4
// @description Add the native OpenStreetMap.org map tiles as an optional layer.

/* exported setup, changelog --eslint */
Expand All @@ -12,6 +12,10 @@ var mapOpenStreetMap = {};
window.plugin.mapOpenStreetMap = mapOpenStreetMap;

var changelog = [
{
version: '0.1.4',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
{
version: '0.1.3',
changes: ['Update OSM tile provider', 'Add CyclOSM tiles', 'Expose config'],
Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-stamen.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author jonatkins
// @name Stamen.com map layers
// @category Map Tiles
// @version 0.2.2
// @version 0.2.3
// @description Add the 'Toner' and 'Watercolor' map layers from maps.stamen.com.

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.2.3',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var mapStamen = {};

Expand Down
12 changes: 10 additions & 2 deletions plugins/basemap-yandex.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// @author johnd0e
// @name Yandex maps
// @category Map Tiles
// @version 0.3.1
// @version 0.3.2
// @description Add Yandex.com (Russian/Русский) map layers

/* exported setup --eslint */
/* exported setup, changelog --eslint */
/* global L, layerChooser */

var changelog = [
{
version: '0.3.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
var mapYandex = {};

Expand Down
10 changes: 9 additions & 1 deletion plugins/cache-portals-on-map.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// @author jonatkins
// @name Cache viewed portals on map
// @category Cache
// @version 0.1.0
// @version 0.1.1
// @description Cache the details of recently viewed portals and use this to populate the map when possible

/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.1.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
window.plugin.cachePortalDetailsOnMap = function() {};
Expand Down
10 changes: 9 additions & 1 deletion plugins/cross-links.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// @author mcben
// @name Cross links
// @category Draw
// @version 1.3.1
// @version 1.3.2
// @description Checks for existing links that cross planned links. Requires draw-tools plugin.

/* exported setup, changelog --eslint */

var changelog = [
{
version: '1.3.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

window.plugin.crossLinks = function () { };

Expand Down
11 changes: 10 additions & 1 deletion plugins/debug-console.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
// @author jaiperdu
// @name Debug console tab
// @category Debug
// @version 0.1.0
// @version 0.1.1
// @description Add a debug console tab

/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.1.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

var debugTab = {};

// DEBUGGING TOOLS ///////////////////////////////////////////////////
Expand Down
10 changes: 9 additions & 1 deletion plugins/distance-to-portal.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// @author jonatkins
// @name Distance to portal
// @category Portal Info
// @version 0.2.0
// @version 0.2.1
// @description Allows your current location to be set manually, then shows the distance to the selected portal. Useful when managing portal keys.

/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.2.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// use own namespace for plugin
window.plugin.distanceToPortal = function() {};
Expand Down
10 changes: 9 additions & 1 deletion plugins/done-links.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// @author jonatkins
// @name Done links
// @category Draw
// @version 0.1.1
// @version 0.1.2
// @description A companion to the Cross Links plugin. Highlights any links that match existing draw-tools line/polygon edges

/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.1.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

window.plugin.doneLinks = function() {};

Expand Down
10 changes: 9 additions & 1 deletion plugins/draw-tools.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// @author breunigs
// @name Draw tools
// @category Draw
// @version 0.10.0
// @version 0.10.1
// @description Allow drawing things onto the current map so you may plan your next move. Supports Multi-Project-Extension.

/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.10.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
},
];

// HOOK: pluginDrawTools
// custom hook for draw tools to share it's activity with other plugins
Expand Down
Loading

0 comments on commit 896ff9f

Please sign in to comment.