9f077dd6a2
show more portals plugin: don't boost zoom level when zoomed out - gets silly with the new getThinnedEntitiesV4 changes
2013-08-16 18:37:22 +01:00
532d8aaa26
bump version number, as another IITC release is required...
2013-08-16 18:25:53 +01:00
6b2ba1b57f
Merge branch 'master' of https://github.com/jonatkins/ingress-intel-total-conversion
2013-08-16 17:44:05 +01:00
3f1b8ba47f
increase refresh timeout considerably when zoomed out. this will reduce requests to the servers when lots of data is visible
...
also, with the new higher tile count when zoomed out (#491 ) it reduces the odds of a new refresh starting before the old ones have finished
2013-08-16 17:41:25 +01:00
92433c5d4b
merge patch from #491 , that updates things to getThinnedEntitiesV4
...
also a couple of plugins that were missed
2013-08-16 17:36:17 +01:00
7d8e583273
increase refresh delays after a move, and repeated refresh limit, to reduce unnecessary requests to the servers
2013-08-16 17:34:59 +01:00
f3aa8850b1
Merge pull request #487 from tyrope/patch-1
...
Fix ISC license link.
2013-08-15 03:34:54 -07:00
44d078ae05
Fix ISC license link.
2013-08-14 12:26:46 +02:00
f4b893bd83
update website for new release
2013-08-14 02:34:32 +01:00
e314ee8b1e
bump android version number - required for an f-droid build, and to reduce user confusion
2013-08-14 02:27:40 +01:00
c151a53285
bump plugin version numbers for thise that needed getThinnedEntntiesV3 changes
2013-08-14 02:12:47 +01:00
62a10ede52
change default refresh to 60 seconds. while the server is unstable this reduces load, and other issues
2013-08-13 21:21:02 +01:00
3ea40952ce
niantic are tweaking the web protocol. so far, seen getThinnedEntitiesV2 renamed to V3 - but no changes in request/response format?!
2013-08-13 21:11:32 +01:00
2144788c43
Merge pull request #485 from cathesaurus/master
...
Added initial version of Effective Deployment Range highlighter.
2013-08-13 11:13:08 -07:00
6a7815497c
Highlights only applied below 90% of maximum hack range.
2013-08-13 19:02:53 +01:00
11dec6aeab
Renamed plugin, and and only highlights where effective deployment distance is less than 36m.
2013-08-13 18:44:18 +01:00
a574a1fa75
Added initial version of Effective Deployment Range highlighter.
2013-08-13 17:49:16 +01:00
d822d56377
added possibility to share strings from javascript to iitc share activity (see #482 )
2013-08-13 17:03:30 +02:00
0ee98355bd
fix path to default portal image - looks like it changed on the stock site
2013-08-13 03:38:36 +01:00
3bd8d1a548
make build script only include code/*.js - otherwise temp files can catch you out
2013-08-12 17:30:09 +01:00
e1b4569f2f
bump version, in preperation for a future release
2013-08-12 00:25:25 +01:00
80fb3d0da4
update website fo9r new release
2013-08-12 00:19:45 +01:00
855ad003a2
disable splash screen on JS error and HTTP response error code ( fixes #475 )
2013-08-10 17:35:17 +02:00
e85af06559
add a couple of more nice styles to cloudmade basemap template plugin
2013-08-09 17:09:19 +01:00
b9a4f91f39
tweaks to data tile fetching and cached tiles - should end up with fresher data when the niantic servers are struggling
2013-08-08 11:56:00 +01:00
1fa95072a4
Merge pull request #457 from gluck/portal-defense
...
Added portal-defense plugin
2013-08-05 22:19:26 -07:00
a43bd3ef0c
fix resonator rendering on zoom after changing to avoid re-rendering unchanged data
...
this whole area of code could do with some restructuring really - this will do for now though...
2013-08-05 20:10:58 +01:00
b0ad122800
Merge pull request #459 from gnarf/meta-key
...
Also allow meta click on nickname for player tracker to support os x
2013-08-05 06:41:05 -07:00
72c09eb9c2
Messed up macro
2013-08-05 15:22:44 +02:00
7c218b76d1
Fixed indent and added macros
2013-08-05 15:20:41 +02:00
06869944fb
Merge branch 'master' of https://github.com/jonatkins/ingress-intel-total-conversion
2013-08-05 14:18:17 +01:00
3d7440b06a
add ent[1] - the data modification timestamp, to beforePortalReRender
...
alsoi include the previous timestamp
for #324
2013-08-05 14:16:49 +01:00
a4f11561ea
added sync plugin back to mobile build...
...
...it seems that google have fixed the temp redirect
2013-08-05 09:40:04 +02:00
94eeb5a728
in geodesic line calculation, add the final point unmodified rather than running through the maths
...
fix #471 - and is a slight optimisation
2013-08-04 20:49:58 +01:00
612e452c27
Merge branch 'master' of https://github.com/jonatkins/ingress-intel-total-conversion
2013-08-04 07:19:19 +01:00
54ebbc3896
bump version nimber in preperation for next release
...
remove maxZoom leaflet setting - as it overrides individual map layer settings - fix #466
ensure map zoom is valid for selected base layer - replicate functionality removed from current leaflet
2013-08-04 07:17:14 +01:00
661a3ece1a
removed not used imports
2013-08-04 00:51:17 +02:00
6c5cbb67cb
Merge branch 'master' of github.com:jonatkins/ingress-intel-total-conversion
2013-08-04 00:44:10 +02:00
756dabacfa
- added long click support to disable/enabled all layers
...
- some refactoring
2013-08-04 00:43:37 +02:00
124242ed86
draw tools - first pass at saving/loading drawn items in localStorage
2013-08-03 05:52:52 +01:00
e9da0150f5
fix website typo
2013-08-02 18:33:00 +01:00
55c055425b
Avoid using Object.keys(obj).length in hot code paths
...
Complexity of Object.keys(obj).length is O(n) where n is the number of
object keys. Unfortunately, JavaScript have no built-in means of
determining number of object keys in constant time. Therefore, we have
to count object keys using separate counter variable.
It may look ugly (and indeed it is), but it greatly improves smoothness
and overall feel of IITC.
2013-08-02 20:00:03 +04:00
8563498ded
fix geodesic circle radius - was scaling the radius by PI
2013-08-02 07:31:03 +01:00
16e15dfb51
first attempt at geodesic circles - for #292 (alsao see #201 and #425 )
2013-08-02 07:21:04 +01:00
b2f7989e8a
website updates
2013-08-02 04:54:19 +01:00
d97ad2a4c3
added missing notes to website
2013-08-01 00:42:23 +01:00
e910b53d1d
update website for new release
2013-08-01 00:39:10 +01:00
e7dcddb1b6
commit start of work, so no files are pending for new release
2013-08-01 00:12:46 +01:00
8a9f595373
encode portal title for gmaps url
2013-08-01 00:52:28 +02:00
3e541c3acd
add zoom to gmaps url
2013-08-01 00:37:56 +02:00