From 705a35a58b63b6b8fc77edc8f20ef7e6610f7a90 Mon Sep 17 00:00:00 2001 From: Alexander Danilov Date: Thu, 22 Feb 2024 13:46:30 +0600 Subject: [PATCH] Bump versions and update the changelist --- core/total-conversion-build.js | 11 +++++++++-- mobile/app/build.gradle | 2 +- plugins/bookmarks.js | 6 +++++- plugins/draw-tools.js | 6 +++++- plugins/farms-find.js | 6 +++++- plugins/link-show-direction.js | 2 +- plugins/machina-tools.js | 10 +++++++++- plugins/missions.js | 6 +++++- plugins/multi-projects-extension.js | 6 +++++- plugins/player-activity-tracker.js | 6 +++++- plugins/player-level-guess.js | 6 +++++- plugins/portal-counts.js | 10 +++++++++- plugins/portals-list.js | 10 +++++++++- plugins/privacy-view.js | 6 +++++- plugins/regions.js | 6 +++++- plugins/scoreboard.js | 6 +++++- plugins/sync.js | 10 +++++++++- 17 files changed, 97 insertions(+), 18 deletions(-) diff --git a/core/total-conversion-build.js b/core/total-conversion-build.js index e043661ad..30254b0b8 100644 --- a/core/total-conversion-build.js +++ b/core/total-conversion-build.js @@ -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 @@ -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', diff --git a/mobile/app/build.gradle b/mobile/app/build.gradle index 16136ebd7..f2462b13f 100644 --- a/mobile/app/build.gradle +++ b/mobile/app/build.gradle @@ -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 { diff --git a/plugins/bookmarks.js b/plugins/bookmarks.js index cd1c52261..0bd4f0751 100644 --- a/plugins/bookmarks.js +++ b/plugins/bookmarks.js @@ -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'], diff --git a/plugins/draw-tools.js b/plugins/draw-tools.js index b693b11a9..aabb5be18 100644 --- a/plugins/draw-tools.js +++ b/plugins/draw-tools.js @@ -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'], diff --git a/plugins/farms-find.js b/plugins/farms-find.js index 315f7dfb5..fc96a5d2e 100644 --- a/plugins/farms-find.js +++ b/plugins/farms-find.js @@ -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'], diff --git a/plugins/link-show-direction.js b/plugins/link-show-direction.js index 9fd91c055..aab54b1ba 100644 --- a/plugins/link-show-direction.js +++ b/plugins/link-show-direction.js @@ -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', diff --git a/plugins/machina-tools.js b/plugins/machina-tools.js index 7f42b5799..881355ed4 100644 --- a/plugins/machina-tools.js +++ b/plugins/machina-tools.js @@ -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'], diff --git a/plugins/missions.js b/plugins/missions.js index 0677e7e98..ab256985c 100644 --- a/plugins/missions.js +++ b/plugins/missions.js @@ -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'], diff --git a/plugins/multi-projects-extension.js b/plugins/multi-projects-extension.js index 854c480d4..9dc564658 100644 --- a/plugins/multi-projects-extension.js +++ b/plugins/multi-projects-extension.js @@ -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'], diff --git a/plugins/player-activity-tracker.js b/plugins/player-activity-tracker.js index fe62c1999..b7fc4a130 100644 --- a/plugins/player-activity-tracker.js +++ b/plugins/player-activity-tracker.js @@ -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'], diff --git a/plugins/player-level-guess.js b/plugins/player-level-guess.js index 9e542b19c..e9ae627a2 100644 --- a/plugins/player-level-guess.js +++ b/plugins/player-level-guess.js @@ -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'], diff --git a/plugins/portal-counts.js b/plugins/portal-counts.js index c8c640c72..3a0f31926 100644 --- a/plugins/portal-counts.js +++ b/plugins/portal-counts.js @@ -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 = { diff --git a/plugins/portals-list.js b/plugins/portals-list.js index d7b8c002b..105ad9137 100644 --- a/plugins/portals-list.js +++ b/plugins/portals-list.js @@ -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() {}; diff --git a/plugins/privacy-view.js b/plugins/privacy-view.js index fa7032b62..037fe35b6 100644 --- a/plugins/privacy-view.js +++ b/plugins/privacy-view.js @@ -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'], diff --git a/plugins/regions.js b/plugins/regions.js index b57589297..e48252654 100644 --- a/plugins/regions.js +++ b/plugins/regions.js @@ -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'], diff --git a/plugins/scoreboard.js b/plugins/scoreboard.js index ccd5fc051..3ad5c34b2 100644 --- a/plugins/scoreboard.js +++ b/plugins/scoreboard.js @@ -1,6 +1,6 @@ // @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. @@ -8,6 +8,10 @@ /* 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'], diff --git a/plugins/sync.js b/plugins/sync.js index 20d8301c2..d333ccf71 100644 --- a/plugins/sync.js +++ b/plugins/sync.js @@ -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: