From 2b9eeef9505c14dd86aa1df55f8a1e90a83bf6ea Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Mon, 11 Feb 2013 05:44:12 +0000 Subject: [PATCH 1/6] change portal level number shadows, so they simulate a solid outline --- style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 45145173..81147f30 100644 --- a/style.css +++ b/style.css @@ -369,7 +369,8 @@ h3 { font-size: 40px; position: absolute; right: 10px; - text-shadow: 0 0 2px #000000, 0 0 5px #ffffff; + /* simulate an outline with multiple shadows */ + text-shadow: -2px -2px #000000, 2px -2px #000000, -2px 2px #000000, 2px 2px #000000; top: 100px; } From 318057fd1b0166ec5ab5dc6f273db6390976ceef Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Mon, 11 Feb 2013 05:48:50 +0000 Subject: [PATCH 2/6] added self to Contributors --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba4c719d..bf1db66e 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,8 @@ Contributors [Scrool](https://github.com/Scrool), [sorgo](https://github.com/sorgo), [Xelio](https://github.com/Xelio), -[ZauberNerd](https://github.com/ZauberNerd) - +[ZauberNerd](https://github.com/ZauberNerd), +[jonatkins](https://github.com/jonatkins) Hacking ------- From 750d01afcf6c326b0410d9fcef3ec118a21af039 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Thu, 14 Feb 2013 18:58:48 +0000 Subject: [PATCH 3/6] fix permalink zoom level --- code/utils_misc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/utils_misc.js b/code/utils_misc.js index ef3a02f1..cef63b13 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -207,7 +207,7 @@ window.setPermaLink = function(elm) { var c = map.getCenter(); var lat = Math.round(c.lat*1E6); var lng = Math.round(c.lng*1E6); - var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + map.getZoom(); + var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + (map.getZoom()+1); $(elm).attr('href', 'http://www.ingress.com/intel?' + qry); } From 64a78076d8958485e93ee620dc3d4357f6da050f Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Thu, 14 Feb 2013 18:59:58 +0000 Subject: [PATCH 4/6] fix permalink zoom level --- code/utils_misc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/utils_misc.js b/code/utils_misc.js index cef63b13..77b4ee62 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -207,7 +207,7 @@ window.setPermaLink = function(elm) { var c = map.getCenter(); var lat = Math.round(c.lat*1E6); var lng = Math.round(c.lng*1E6); - var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + (map.getZoom()+1); + var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + (map.getZoom()-1); $(elm).attr('href', 'http://www.ingress.com/intel?' + qry); } From 6709c77705d6129235de5e6e18312834a9fc478a Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Fri, 15 Feb 2013 01:30:34 +0000 Subject: [PATCH 5/6] reordered contrib so alphabetical --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31dc5567..62aaea19 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,7 @@ Please do! [epf](https://github.com/epf), [integ3r](https://github.com/integ3r), [JasonMillward](https://github.com/JasonMillward), +[jonatkins](https://github.com/jonatkins), [mledoze](https://github.com/mledoze), [OshiHidra](https://github.com/OshiHidra), [phoenixsong6](https://github.com/phoenixsong6), @@ -87,8 +88,7 @@ Please do! [sorgo](https://github.com/sorgo), [vita10gy](https://github.com/vita10gy), [Xelio](https://github.com/Xelio), -[ZauberNerd](https://github.com/ZauberNerd), -[jonatkins](https://github.com/jonatkins) +[ZauberNerd](https://github.com/ZauberNerd) Hacking ------- From d08f87baac9e78470807a578bf935b5553db14fe Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Mon, 11 Feb 2013 05:48:50 +0000 Subject: [PATCH 6/6] added self to Contributors --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbd153fc..31dc5567 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,8 @@ Please do! [sorgo](https://github.com/sorgo), [vita10gy](https://github.com/vita10gy), [Xelio](https://github.com/Xelio), -[ZauberNerd](https://github.com/ZauberNerd) - +[ZauberNerd](https://github.com/ZauberNerd), +[jonatkins](https://github.com/jonatkins) Hacking -------