update plugin URLS for my branch + dist server

bump version numbers for this reason
also, allow plugins for both http and https URLs, in preperation for supporting both
This commit is contained in:
Jon Atkins 2013-03-16 19:59:46 +00:00
parent 64f4f57068
commit 1d4d125605
15 changed files with 4053 additions and 68 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
USER DOCUMENTATION MOVED! USER DOCUMENTATION MOVED!
========================= =========================
[The plugins list has been moved to the wiki. Please see there!](https://github.com/breunigs/ingress-intel-total-conversion/wiki/Plugins) [The plugins list has been moved to the wiki. Please see there!](https://github.com/jonatkins/ingress-intel-total-conversion/wiki/Plugins)
What follows is developer documentation only. What follows is developer documentation only.
@ -14,7 +14,7 @@ Hacking
Plugins may be developed in the same way as the total conversion script. Plugins may provide features tailored to specific needs and are allowed to change things as they see fit. You can provide them separately or submit a pull request to have them managed in this repository. Plugins may be developed in the same way as the total conversion script. Plugins may provide features tailored to specific needs and are allowed to change things as they see fit. You can provide them separately or submit a pull request to have them managed in this repository.
If you think a hook in the main script is required, simply open a bug report. If you think a hook in the main script is required, simply open a bug report.
You can use the guess player level script as an example to get you started. Just update the names and the part between `// PLUGIN START` and `// PLUGIN END` and you should be able to develop your plugin. The other code ensures your plugin is executed after the main script. [Read the common HACKING.md file for general tips and requirements](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/HACKING.md#hacking). You can use the guess player level script as an example to get you started. Just update the names and the part between `// PLUGIN START` and `// PLUGIN END` and you should be able to develop your plugin. The other code ensures your plugin is executed after the main script. [Read the common HACKING.md file for general tips and requirements](https://github.com/jonatkins/ingress-intel-total-conversion/blob/gh-pages/HACKING.md#hacking).
If you happen the write general purpose functions for your plugin, consider adding them to the main script instead. For example, if you write a `getResoCountFromPortal(details)` function it may be very well added to `code/portal_info.js`. If you happen the write general purpose functions for your plugin, consider adding them to the main script instead. For example, if you write a `getResoCountFromPortal(details)` function it may be very well added to `code/portal_info.js`.
@ -27,4 +27,4 @@ If you have external dependencies put them into `external/` and add a version nu
Available Hooks Available Hooks
--------------- ---------------
Available hooks are documented in the code. Please refer to the [boilerplate explanation in `hooks.js`](https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/code/hooks.js) to see which are available and how to listen for them. If you need additional hooks, open bug reports (preferably with patches attached). Available hooks are documented in the code. Please refer to the [boilerplate explanation in `hooks.js`](https://raw.github.com/jonatkins/ingress-intel-total-conversion/gh-pages/code/hooks.js) to see which are available and how to listen for them. If you need additional hooks, open bug reports (preferably with patches attached).

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-ap-list@xelio // @id iitc-plugin-ap-list@xelio
// @name iitc: AP List // @name iitc: AP List
// @version 0.4 // @version 0.4.1
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/ap-list.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/ap-list.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/ap-list.user.js // @downloadURL http://iitc.jonatkins.com/plugins/ap-list.user.js
// @description List top 10 portals by AP of either faction. Other functions and controls please refer to the Userguide. (https://github.com/breunigs/ingress-intel-total-conversion/wiki/Userguide-%28Main-Vanilla-IITC%29#wiki-pluginsAPListUserGuide) // @description List top 10 portals by AP of either faction. Other functions and controls please refer to the Userguide. (https://github.com/breunigs/ingress-intel-total-conversion/wiki/Userguide-%28Main-Vanilla-IITC%29#wiki-pluginsAPListUserGuide)
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-compute-ap-stats@Hollow011 // @id iitc-plugin-compute-ap-stats@Hollow011
// @name iitc: Compute AP statistics // @name iitc: Compute AP statistics
// @version 0.3 // @version 0.3.1
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/compute-ap-stats.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/compute-ap-stats.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/compute-ap-stats.user.js // @downloadURL http://iitc.jonatkins.com/plugins/compute-ap-stats.user.js
// @description Tries to determine overal AP stats for the current zoom // @description Tries to determine overal AP stats for the current zoom
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-draw-tools@breunigs // @id iitc-plugin-draw-tools@breunigs
// @name iitc: draw tools // @name iitc: draw tools
// @version 0.2.2 // @version 0.2.3
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/draw-tools.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/draw-tools.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/draw-tools.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/draw-tools.user.js
// @description Allows you to draw things into the current map so you may plan your next move // @description Allows you to draw things into the current map so you may plan your next move
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-guess-player-levels@breunigs // @id iitc-plugin-guess-player-levels@breunigs
// @name iitc: guess player level // @name iitc: guess player level
// @version 0.3 // @version 0.3.1
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/guess-player-levels.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/guess-player-levels.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/guess-player-levels.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/guess-player-levels.user.js
// @description Tries to determine player levels from the data available in the current view // @description Tries to determine player levels from the data available in the current view
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,12 +1,14 @@
// ==UserScript== // ==UserScript==
// @id max-links@boombuler // @id max-links@boombuler
// @name iitc: Max-Links-Plugin // @name iitc: Max-Links-Plugin
// @version 0.2 // @version 0.2.1
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/max-links.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/max-links.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/max-links.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/max-links.user.js
// @description Calculates how to link the portals to create the maximum number of fields. // @description Calculates how to link the portals to create the maximum number of fields.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-player-tracker@breunigs // @id iitc-plugin-player-tracker@breunigs
// @name iitc: player tracker // @name iitc: player tracker
// @version 0.7.1 // @version 0.7.2
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/player-tracker.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/player-tracker.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/player-tracker.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/player-tracker.user.js
// @description draws trails for the path a user went onto the map. Only draws the last hour. Does not request chat data on its own, even if that would be useful. // @description draws trails for the path a user went onto the map. Only draws the last hour. Does not request chat data on its own, even if that would be useful.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-render-limit-increase@jonatkins // @id iitc-plugin-render-limit-increase@jonatkins
// @name iitc: render limit increase // @name iitc: render limit increase
// @version 0.1.1 // @version 0.1.2
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/render-limit-increase.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/render-limit-increase.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/render-limit-increase.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/render-limit-increase.user.js
// @description Increase the render limits, so less likely to be hit in higher density areas // @description Increase the render limits, so less likely to be hit in higher density areas
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-reso-energy-pct-in-portal-detail@xelio // @id iitc-plugin-reso-energy-pct-in-portal-detail@xelio
// @name iitc: reso energy pct in portal detail // @name iitc: reso energy pct in portal detail
// @version 0.1.1 // @version 0.1.2
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/reso-energy-pct-in-portal-detail.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/reso-energy-pct-in-portal-detail.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/reso-energy-pct-in-portal-detail.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/reso-energy-pct-in-portal-detail.user.js
// @description Show resonator energy percentage on resonator energy bar in portal detail panel. // @description Show resonator energy percentage on resonator energy bar in portal detail panel.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-resonator-display-zoom-level-decrease@xelio // @id iitc-plugin-resonator-display-zoom-level-decrease@xelio
// @name iitc: resonator display zoom level decrease // @name iitc: resonator display zoom level decrease
// @version 1.0.1 // @version 1.0.2
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/resonator-display-zoom-level-decrease.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/resonator-display-zoom-level-decrease.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/resonator-display-zoom-level-decrease.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/resonator-display-zoom-level-decrease.user.js
// @description Resonator start display earlier // @description Resonator start display earlier
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-scale-bar@breunigs // @id iitc-plugin-scale-bar@breunigs
// @name iitc: scale bar // @name iitc: scale bar
// @version 0.1 // @version 0.1.1
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/scale-bar.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/scale-bar.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/scale-bar.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/scale-bar.user.js
// @description shows scale bar on the map // @description shows scale bar on the map
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-scoreboard@vita10gy // @id iitc-plugin-scoreboard@vita10gy
// @name iitc: show a localized scoreboard. // @name iitc: show a localized scoreboard.
// @version 0.1.3 // @version 0.1.4
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/scoreboard.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/scoreboard.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/scoreboard.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/scoreboard.user.js
// @description A localized scoreboard. // @description A localized scoreboard.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-show-address@vita10gy // @id iitc-plugin-show-address@vita10gy
// @name iitc: show portal address in sidebar // @name iitc: show portal address in sidebar
// @version 0.2.1 // @version 0.2.2
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/show-address.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/show-address.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/show-address.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/show-address.user.js
// @description Portal address will show in the sidebar. // @description Portal address will show in the sidebar.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {

View File

@ -1,13 +1,15 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-show-portal-weakness@vita10gy // @id iitc-plugin-show-portal-weakness@vita10gy
// @name iitc: show portal weakness // @name iitc: show portal weakness
// @version 0.6 // @version 0.6.1
// @namespace https://github.com/breunigs/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/show-portal-weakness.user.js // @updateURL http://iitc.jonatkins.com/dist/plugins/show-portal-weakness.user.js
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/plugins/show-portal-weakness.user.js // @downloadURL http://iitc.jonatkins.com/dist/plugins/show-portal-weakness.user.js
// @description Uses the fill color of the portals to denote if the portal is weak (Needs recharging, missing a resonator, needs shields) Red, needs energy and shields. Orange, only needs energy (either recharge or resonators). Yellow, only needs shields. // @description Uses the fill color of the portals to denote if the portal is weak (Needs recharging, missing a resonator, needs shields) Red, needs energy and shields. Orange, only needs energy (either recharge or resonators). Yellow, only needs shields.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// ==/UserScript== // ==/UserScript==
function wrapper() { function wrapper() {