fkloft
eba7d388a0
Enable IITC on mission permalink
...
Hint: to change a lot of scripts, execute this:
sed -r '/\/\/ @match\s+http:\/\/www.ingress.com\/intel/r /tmp/includefile' -i~ *.user.js
`/tmp/includefile` should contain these lines: (no trailing newline!)
// @include https://www.ingress.com/mission/ *
// @include http://www.ingress.com/mission/ *
// @match https://www.ingress.com/mission/ *
// @match http://www.ingress.com/mission/ *
2015-04-13 17:28:30 +02:00
fkloft
79953c6494
[missions] show distance to mission (using distance-to-portal)
2015-04-12 02:07:14 +02:00
fkloft
735a0fee85
[missions] use webkit vendor prefix for transform (Android doesn't yet support unprefixed transforms)
2015-04-12 02:06:15 +02:00
fkloft
d7ce5b2c58
[mission] show mission type
2015-04-12 01:11:30 +02:00
fkloft
9b951fbc7c
[missions] draw trace to portals, even if they aren't currently loaded
2015-04-12 00:34:17 +02:00
fkloft
8ac1305110
[missions] use DOM instead of HTML string manipulation
2015-04-12 00:18:41 +02:00
fkloft
8fff4e3be9
[missions] fix indentation; typo
2015-04-11 20:35:04 +02:00
fkloft
da0c866ac3
Remove call to plugin.drawTools.setOptions from bookmarks
...
- setOptions is usually only called once: when booting drawTools
- no need to call it repeatedly
- known to break a third party plugin (which we don't support, but no reason to make it hard)
2015-04-10 21:02:36 +02:00
fkloft
06124dda83
Merge pull request #967 from imsaguy/patch-1
...
Basic style edits
2015-04-09 03:21:05 +02:00
Jon Atkins
c7595c85f8
add missing <aside> needed for correct styles
2015-04-07 21:59:05 +01:00
Jon Atkins
977482a2f5
minor tweaks to wording - less verbose
2015-04-07 21:55:17 +01:00
Joseph Verburg
c6750a2615
Full mission support, uses proper requests and data to provide a mission interface just like the normal intel map. There are a few extras:
...
- Mark finished/visited waypoints.
- Mark finished missions.
- Allow event hooks :).
- Show portal status(level and health)
2015-04-03 14:12:10 +02:00
imsaguy
f6246f840c
Basic style edits
...
This is just to cleanup the code to follow proper coding styles.
2015-03-31 15:33:11 -05:00
Jon Atkins
5298c98fdd
minor api change for chat callbacks, and plugins fixed to use the new changes
...
(which broke after today's niantic site update anyway)
2015-03-20 20:53:45 +00:00
Jon Atkins
1dae89b4bc
mission plugin: initial basic highlighter
...
debug highlighter: remove unknown_10/11 highlighters - not needed any more
2015-03-12 20:26:53 +00:00
Jon Atkins
d96ee8de50
distance-to-portal: fix case where current location is not set
2015-03-09 00:04:55 +00:00
Jon Atkins
7157eceae3
distance-to-portal plugin: integrate with portals list
2015-03-09 00:02:29 +00:00
Jon Atkins
22ef6a62a1
indentation fix
2015-03-04 01:03:30 +00:00
Jon Atkins
58b9d1c7d3
hide ownership plugin: use core IITC function to get style, rather than hard-coding the parameters
2015-03-03 20:24:40 +00:00
Jon Atkins
5756db7623
oops - change new plugin @id firld
2015-02-28 05:15:16 +00:00
Jon Atkins
ef7640de6a
debug highlighter plugin: a place for experimental/temporary highlighters
...
currently, highlighters for the unknown_10/11 flags recently added to the portal data
2015-02-28 04:47:03 +00:00
Jon Atkins
b42b19b983
player tracker: guess player levels integration: remove special case for L8, as in the earlier commit for guess player levels - this plugin does it's own formatting
2015-02-27 02:03:43 +00:00
Jon Atkins
b42fbe8574
guess-player-levels - remove special case for level 8 - since the new levels, 8 is the min guessed level, not the final level limit
...
of course, given all activity is based on L8 and lower gear, it'll never guess any higher...
2015-02-27 01:14:26 +00:00
Jon Atkins
1afc04b45c
player tracher search - ignore leading @ character, to give reasonable behaviour when used like the old search system
2015-02-27 00:26:50 +00:00
Jon Atkins
0ce0a22c1b
Merge branch 'master' of https://github.com/jonatkins/ingress-intel-total-conversion
2015-02-23 19:18:07 +00:00
Jon Atkins
b0006ae5ad
zaprange plugin: has had broken team support for a while - fixed
...
https://plus.google.com/104096045622750660984/posts/DMT25KG6ZFo
2015-02-23 19:16:46 +00:00
fkloft
7987a459eb
[regions] instead of trying all cells, calculate x/y from distance according to the Hilbert curve
...
also, refactoring to reduce duplicate code for level 4/6 cells
2015-02-23 13:13:03 +01:00
fkloft
a98809ccd5
[regions] extended search
...
- support search for multiple cells separated by "," or ";"
- allow omitting the first two components of the cell name
- search for 4x4 cluster by omitting the last component
- icon for results
2015-02-22 20:07:48 +01:00
Jon Atkins
76ca083ad7
region search: don't force match to start/end of string
2015-02-22 00:41:34 +00:00
Jon Atkins
81e7251af9
regions plugin: support the new search api, for easy cell searching
2015-02-22 00:32:26 +00:00
fkloft
d53c31c2dd
[show-linked-portals] different border styles for incoming and outgoign links
2015-02-21 22:38:37 +01:00
fkloft
f6273d5644
[show-linked-portals] highlight portal and link
2015-02-21 22:38:37 +01:00
Jon Atkins
badcdbdb18
add core functions to create a generic marker icon, of a specified colour.
...
use it for the new portal distance current location marker, and search result marker
2015-02-21 17:08:04 +00:00
fkloft
d55d363112
[distance-to-portal] add vendor-prefixes to transformations and implement updating the distance without re-rendering all portal details
...
Firefox supports 'transform' without prefix, but Android still requires '-webkit-'. To be sure, include properties with '-moz-', '-webkit-' and without prefix.
2015-02-21 14:19:33 +01:00
fkloft
9c534c8898
[distance-to-portal] also show bearing
2015-02-21 14:02:01 +01:00
fkloft
227d1b18ac
[draw-tools] don't open dialog more than once
2015-02-21 14:01:09 +01:00
Jon Atkins
9397171030
plugin: distance-to-portal
...
new plugin: manually set your location, then the distance to the selected portal is shown
intended to aid key management when at home (select a portal, find key in inventory by distance rather than name)
2015-02-21 05:21:59 +00:00
Jon Atkins
3aed769081
debug plugin: add totle to clarify which data is map data, and which is portal detail data
2015-02-16 19:30:00 +00:00
fkloft
2e1a5fd1ae
[show-linked-portals] show preview on hover
2015-02-15 19:43:18 +01:00
fkloft
c58438e4c4
[show-linked-portals] mostly rewritten
2015-02-15 19:29:35 +01:00
fkloft
bcc3b52e5c
[show-linked-portals] cleanup
...
(formatting, remove useless function, remove handler replacement that doesn't exist any more)
2015-02-15 12:21:05 +01:00
fkloft
22b58b790d
[player-tracker] use markup for seach results and prevent chat from handling events
2015-02-14 14:51:47 +01:00
fkloft
9e72abb7cb
[bookmarks-by-zaso] escape HTML in search results
2015-02-14 14:51:47 +01:00
fkloft
b15f521bd0
[bookmarks-by-zaso] make bookmarks searchable
2015-02-12 17:55:29 +01:00
fkloft
754dfc6192
[player-tracker] open popup when clicking on a player
2015-02-12 16:38:10 +01:00
fkloft
4dd877fdb8
[player-tracker] Use new search
2015-02-12 16:30:57 +01:00
fkloft
5e22ea5b72
fix speech-search
2015-02-12 16:06:48 +01:00
Galfinite
82a30aa71c
Player Level typo
2015-02-10 12:34:25 -07:00
Jon Atkins
02199d2f1b
plugin guess-player-levels: take account of reso max deploy range when guessing level from attack notifications - which also means this is now an accurate guess
2015-02-09 18:44:42 +00:00
Jon Atkins
0bb8dc5ddb
needs-recharge highlighter: tweaks to the colours/opacity used - makes it easier to see things.
2015-02-09 13:54:18 +00:00