Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
modos189 committed Aug 2, 2023
1 parent a730f6a commit 231dd1c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
1 change: 1 addition & 0 deletions core/total-conversion-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ window.script_info.changelog = [
'Timestamp added to link and field data',
'Added scanner link to info panel',
'Sorted sidebar links',
'Added window.formatDistance function for global use, which was previously in the bookmarks plugin',
],
},
];
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.35.1"
versionName "0.36.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
Expand Down
10 changes: 9 additions & 1 deletion plugins/bookmarks.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
// @author ZasoGD
// @name Bookmarks for maps and portals
// @category Controls
// @version 0.4.2
// @version 0.4.3
// @description Save your favorite Maps and Portals and move the intel map with a click. Works with sync. Supports Multi-Project-Extension

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

var changelog = [
{
version: '0.4.3',
changes: ['Extracted "formatDistance" function for global use'],
},
];

/* **********************************************************************
Expand Down
19 changes: 13 additions & 6 deletions plugins/regions.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
// @author jonatkins
// @name Ingress scoring regions
// @category Layer
// @version 0.2.1
// @version 0.3.0
// @description Show the regional scoring cells grid on the map

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

var changelog = [
{
version: '0.3.0',
changes: ['a fix in the hilbercurve calculation', 'fix region-search by enhance the cell-id'],
},
];

// use own namespace for plugin
window.plugin.regions = function() {};
Expand Down Expand Up @@ -82,20 +89,20 @@ window.plugin.regions.search = function(query) {
return string.match(window.plugin.regions.REGEXP);
});
if(!matches.every(function(match) { return match !== null; })) return;

var currentCell = window.plugin.regions.regionName(S2.S2Cell.FromLatLng(map.getCenter(), 6));

matches.forEach(function(match) {
if(!match[1])
match[1] = currentCell.substr(0, 2);
else
match[1] = match[1].toUpperCase();

if(!match[2])
match[2] = currentCell.substr(2,2);

match[3] = match[3].toUpperCase();

var result = window.plugin.regions.getSearchResult(match);
if(result) query.addResult(result);
});
Expand Down

0 comments on commit 231dd1c

Please sign in to comment.