Skip to content

Commit

Permalink
Merge pull request #288 from johnd0e/versions-up
Browse files Browse the repository at this point in the history
plugins: bump versions up (forgotten in last release)
  • Loading branch information
johnd0e committed Jan 9, 2020
2 parents 5ec280d + 213e9f4 commit 392f0ec
Show file tree
Hide file tree
Showing 18 changed files with 22 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -56,8 +56,8 @@ deploy:
secure: KoJXTxCoatpFbQgbW1VBIh1ndtQIEmj68sANI+zOs54vi9XMCG3RM4cFn4y7YsSI/kz6XcoSC30SNnqedxHMPJyjrIWvVLKDTlbJswZmGhsslrZmClw3sFROKodVI5DoI0520mAfwzQ5PInPpSEfsPZQhA9ufv1wTZ/98q2efcRPu3J6riSdOZmqJ2A+veWpID3t3P57Lcjew+P3PdmUpwC9t6Yp4oQaYX4DZvMMpqK6s8E4EfOVQptaFAxYDIlAIWxNsfIJkx3jwmLdyaSwQL/fyesQ3fZRECKZTN7RM8/2nImuBZsq4uKS3nrKpLEXFTId45ET5N0fa23KXMLMM8NW0LlATLLWju+N7dP2HCeV5w2wxh+ToAR58XciiZLIsxI1IfF8WXloPax6DmJYksEKOenMYB/y/VASi5xbEhl89kdkxAaO6hAoVqKYo+xt7y3nPGSDUf+zfJnno5lPXgF3ctVAjmRBTWUSQQ5VhAeOp2LGg8ennzSkaLKxqyIxJ7F+n7Y0/QmG0uQzmerOjEEjVBsyVawRWjZGrDlog3Pq2S0n4vnbvbtUchwp/Fapjtg1f1pWy9Bzi1tnnE4ALJEmM894izxWH4vtDQu1+nkjKtLrkxgjk5yEuPj3n95ab64UO1To/x4YlyApmLkDeZIEMd+5siBTeGlB1V05Mr4=
file_glob: true
file:
- ./build/release/IITC_Mobile-release.apk
- ./build/release/*
- ./build/release/*.apk
- ./build/release/*.zip
on:
tags: true
branch: master
2 changes: 2 additions & 0 deletions LICENSE
@@ -1,5 +1,7 @@
ISC License

Copyright © 2018-2019 Ingress Intel Total Conversion - Community Edition ("IITC-CE")
Copyright © 2013-2018 Ingress Intel Total Conversion ("IITC")
Copyright © 2013 Stefan Breunig

Permission to use, copy, modify, and/or distribute this software for
Expand Down
4 changes: 3 additions & 1 deletion build_plugin.py
Expand Up @@ -44,7 +44,9 @@ def append_line(key, value):
key = key[1:]
keys.add(key)
if key == 'version':
if settings.version_timestamp and not re.search(r'[^\d.]', value):
if not re.match(r'^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$', value):
print(f'{plugin_name}: wrong version format: {value}') # expected: major.minor.patch
elif settings.version_timestamp: # append timestamp only for well-formed version
line = line.replace(value, '{ver}.{.build_timestamp}'.format(settings, ver=value))
elif key == 'name':
if value == 'IITC: Ingress intel map total conversion':
Expand Down
2 changes: 1 addition & 1 deletion core/total-conversion-build.js
@@ -1,6 +1,6 @@
// @author jonatkins
// @name IITC: Ingress intel map total conversion
// @version 0.30
// @version 0.30.0
// @description Total conversion for the ingress intel map.
// @run-at document-end

Expand Down
2 changes: 1 addition & 1 deletion plugins/bookmarks.js
@@ -1,7 +1,7 @@
// @author ZasoGD
// @name Bookmarks for maps and portals
// @category Controls
// @version 0.2.12
// @version 0.3.0
// @description Save your favorite Maps and Portals and move the intel map with a click. Works with sync.


Expand Down
2 changes: 1 addition & 1 deletion plugins/cross-links.js
@@ -1,7 +1,7 @@
// @author mcben
// @name Cross links
// @category Draw
// @version 1.1.2
// @version 1.2.0
// @description Checks for existing links that cross planned links. Requires draw-tools plugin.


Expand Down
2 changes: 1 addition & 1 deletion plugins/distance-to-portal.js
@@ -1,7 +1,7 @@
// @author jonatkins
// @name Distance to portal
// @category Portal Info
// @version 0.1.1
// @version 0.2.0
// @description Allows your current location to be set manually, then shows the distance to the selected portal. Useful when managing portal keys.


Expand Down
2 changes: 1 addition & 1 deletion plugins/done-links.js
@@ -1,7 +1,7 @@
// @author jonatkins
// @name Done links
// @category Draw
// @version 0.0.1
// @version 0.1.0
// @description A companion to the Cross Links plugin. Highlights any links that match existing draw-tools line/polygon edges


Expand Down
2 changes: 1 addition & 1 deletion plugins/keys-on-map.js
@@ -1,7 +1,7 @@
// @author xelio
// @name Keys on map
// @category Layer
// @version 0.2.1
// @version 0.3.0
// @description Show the manually entered key counts from the 'keys' plugin on the map.


Expand Down
2 changes: 1 addition & 1 deletion plugins/keys.js
@@ -1,7 +1,7 @@
// @author xelio
// @name Keys
// @category Misc
// @version 0.3.0
// @version 0.4.0
// @description Allow manual entry of key counts for each portal. Use the 'keys-on-map' plugin to show the numbers on the map, and 'sync' to share between multiple browsers or desktop/mobile.


Expand Down
2 changes: 1 addition & 1 deletion plugins/layer-count.js
@@ -1,7 +1,7 @@
// @author fkloft
// @name Layer count
// @category Info
// @version 0.1.0
// @version 0.2.0
// @description Allow users to count nested fields


Expand Down
2 changes: 1 addition & 1 deletion plugins/linked-portals-show.js
@@ -1,7 +1,7 @@
// @author fstopienski
// @name Linked portals
// @category Portal Info
// @version 0.3.2
// @version 0.3.3
// @description Try to show the linked portals (image, name and link direction) in portal detail view and jump to linked portal on click. Some details may not be available if the linked portal is not in the current view.


Expand Down
2 changes: 1 addition & 1 deletion plugins/missions.js
@@ -1,7 +1,7 @@
// @author jonatkins
// @name Missions
// @category Info
// @version 0.1.2
// @version 0.2.0
// @description View missions. Marking progress on waypoints/missions basis. Showing mission paths on the map.


Expand Down
2 changes: 1 addition & 1 deletion plugins/player-activity-tracker.js
@@ -1,7 +1,7 @@
// @author breunigs
// @name Player activity tracker
// @category Layer
// @version 0.11.1
// @version 0.12.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.


Expand Down
2 changes: 1 addition & 1 deletion plugins/portal-level-numbers.js
@@ -1,7 +1,7 @@
// @author rongou
// @name Portal Level Numbers
// @category Layer
// @version 0.1.5
// @version 0.2.0
// @description Show portal level numbers on map.


Expand Down
2 changes: 1 addition & 1 deletion plugins/portal-names.js
@@ -1,7 +1,7 @@
// @author ZasoGD
// @name Portal Names
// @category Layer
// @version 0.1.6
// @version 0.2.0
// @description Show portal names on the map.


Expand Down
2 changes: 1 addition & 1 deletion plugins/portals-list.js
@@ -1,7 +1,7 @@
// @author teo96
// @name Portals list
// @category Info
// @version 0.2.1
// @version 0.2.2
// @description Display a sortable list of all visible portals with full details about the team, resonators, links, etc.


Expand Down
2 changes: 1 addition & 1 deletion plugins/regions.js
@@ -1,7 +1,7 @@
// @author jonatkins
// @name Ingress scoring regions
// @category Layer
// @version 0.1.2
// @version 0.2.0
// @description Show the regional scoring cells grid on the map


Expand Down

0 comments on commit 392f0ec

Please sign in to comment.