Skip to content

Commit

Permalink
Merge pull request #704 from modos189/v0.38.0
Browse files Browse the repository at this point in the history
Bump versions and update the changelist
  • Loading branch information
modos189 committed Feb 22, 2024
2 parents 2ad152b + 705a35a commit 5ea68dc
Show file tree
Hide file tree
Showing 17 changed files with 97 additions and 18 deletions.
11 changes: 9 additions & 2 deletions core/total-conversion-build.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @author jonatkins
// @name IITC: Ingress intel map total conversion
// @version 0.37.1
// @version 0.38.0
// @description Total conversion for the ingress intel map.
// @run-at document-end

Expand All @@ -12,7 +12,14 @@ window.script_info = plugin_info;
window.script_info.changelog = [
{
version: '0.38.0',
changes: ['Function marked deprecated: portalApGainMaths, getPortalApGain, potentialPortalLevel, findPortalLatLng'],
changes: [
'Function marked deprecated: portalApGainMaths, getPortalApGain, potentialPortalLevel, findPortalLatLng',
'Added Filters API (`IITC.filters`)',
'Added Toolbox API (`IITC.toolbox`)',
'Added Google Maps Roads+Transit map',
'Added the ability to search using a scanner link or GUID',
'Added conversion of new comm messages to the old style',
],
},
{
version: '0.37.1',
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.37.1"
versionName "0.38.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
Expand Down
6 changes: 5 additions & 1 deletion plugins/bookmarks.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author ZasoGD
// @name Bookmarks for maps and portals
// @category Controls
// @version 0.4.3
// @version 0.4.4
// @description Save your favorite Maps and Portals and move the intel map with a click. Works with sync. Supports Multi-Project-Extension

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

var changelog = [
{
version: '0.4.4',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.4.3',
changes: ['Extracted "formatDistance" function for global use'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/draw-tools.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author breunigs
// @name Draw tools
// @category Draw
// @version 0.10.1
// @version 0.10.2
// @description Allow drawing things onto the current map so you may plan your next move. Supports Multi-Project-Extension.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.10.2',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.10.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/farms-find.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author 949
// @name Find farms on map
// @category Layer
// @version 1.4.2
// @version 1.4.3
// @description Show farms by minimum level

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '1.4.3',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '1.4.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
2 changes: 1 addition & 1 deletion plugins/link-show-direction.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
var changelog = [
{
version: '0.2.3',
changes: ['Default value for link show direction mode was set to Static near origin'],
changes: ['Default value for link show direction mode was set to Static near origin', 'IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.2.2',
Expand Down
10 changes: 9 additions & 1 deletion plugins/machina-tools.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
// @name Machina Tools
// @author Perringaiden
// @category Misc
// @version 0.8.1
// @version 0.9.0
// @description Machina investigation tools - 2 new layers to see possible Machina spread and portal detail links to display Machina cluster information and to navigate to parent or seed Machina portal

/* exported setup, changelog --eslint */
/* global , digits, L, map, dialog, getPortalLinks, portalDetail, turf, IITC */

var changelog = [
{
version: '0.9.0',
changes: [
'Added max link length table to both cluster dialogs',
'Also new layer with max lengths accumulated while moving map (reset only with reload)',
'IITC.toolbox API is used to create plugin buttons',
],
},
{
version: '0.8.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/missions.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author jonatkins
// @name Missions
// @category Info
// @version 0.3.1
// @version 0.3.2
// @description View missions. Marking progress on waypoints/missions basis. Showing mission paths on the map.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.3.2',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.3.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/multi-projects-extension.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author ZasoGD
// @name Multi Projects Extension
// @category Controls
// @version 0.1.2
// @version 0.1.3
// @description Create separated projects in some plugins.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.1.3',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.1.2',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/player-activity-tracker.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author breunigs
// @name Player activity tracker
// @category Layer
// @version 0.12.3
// @version 0.13.0
// @description Draw trails for the path a user took onto the map based on status messages in COMMs. Uses up to three hours of data. Does not request chat data on its own, even if that would be useful.

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

var changelog = [
{
version: '0.13.0',
changes: ['Removed unused and obsolete code'],
},
{
version: '0.12.3',
changes: ['Update for new COMM messages'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/player-level-guess.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author breunigs
// @name Player level guess
// @category Info
// @version 0.5.8
// @version 0.5.9
// @description Try to determine player levels from the data available in the current view.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.5.9',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.5.8',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
10 changes: 9 additions & 1 deletion plugins/portal-counts.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
// @author yenky
// @name Portal count
// @category Info
// @version 0.2.3
// @version 0.2.4
// @description Display a list of all localized portals by level and faction.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.2.4',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
];

// use own namespace for plugin
window.plugin.portalcounts = {
Expand Down
10 changes: 9 additions & 1 deletion plugins/portals-list.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
// @author teo96
// @name Portals list
// @category Info
// @version 0.4.2
// @version 0.4.3
// @description Display a sortable list of all visible portals with full details about the team, resonators, links, etc.

/* global IITC, plugin -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.4.3',
changes: ['Moved "portalApGainMaths" function from core to portalList plugin', 'IITC.toolbox API is used to create plugin buttons'],
},
];

// use own namespace for plugin
window.plugin.portalslist = function() {};
Expand Down
6 changes: 5 additions & 1 deletion plugins/privacy-view.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author johnd0e
// @name Privacy view on Intel
// @category Misc
// @version 1.1.1
// @version 1.2.0
// @description Hide info from intel which shouldn't leak to players of the other faction.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '1.2.0',
changes: ['IITC.toolbox API is used to create plugin buttons and refactoring'],
},
{
version: '1.1.1',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/regions.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author jonatkins
// @name Ingress scoring regions
// @category Layer
// @version 0.3.0
// @version 0.3.1
// @description Show the regional scoring cells grid on the map

/* global S2 */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.3.1',
changes: ['fixed region names'],
},
{
version: '0.3.0',
changes: ['a fix in the hilbercurve calculation', 'fix region-search by enhance the cell-id'],
Expand Down
6 changes: 5 additions & 1 deletion plugins/scoreboard.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
// @author Costaspap
// @name Localized scoreboard
// @version 0.3.3
// @version 0.3.4
// @category Info
// @description Display a scoreboard about all visible portals with statistics about both teams,like average portal level,link & field counts etc.

/* global IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.3.4',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
{
version: '0.3.3',
changes: ['Version upgrade due to a change in the wrapper: added plugin icon'],
Expand Down
10 changes: 9 additions & 1 deletion plugins/sync.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
// @author xelio
// @name Sync
// @category Misc
// @version 0.5.0
// @version 0.5.1
// @description Sync data between clients via Google Drive API. Only syncs data from specific plugins (currently: Keys, Bookmarks, Uniques). Sign in via the 'Sync' link. Data is synchronized every 3 minutes.

/* global gapi, IITC -- eslint */
/* exported setup, changelog --eslint */

var changelog = [
{
version: '0.5.1',
changes: ['IITC.toolbox API is used to create plugin buttons'],
},
];

////////////////////////////////////////////////////////////////////////
// Notice for developers:
Expand Down

0 comments on commit 5ea68dc

Please sign in to comment.