release v0.51 which contains some fixes for recent breakages
This commit is contained in:
10
NEWS.md
10
NEWS.md
@ -1,5 +1,5 @@
|
||||
CHANGES IN 0.5
|
||||
==============
|
||||
CHANGES IN 0.5 / 0.51
|
||||
=====================
|
||||
|
||||
- Feature: draw resonators on map on high zoom levels (by Xelio)
|
||||
- Feature: show AP if portal is taken down (by Pirozek)
|
||||
@ -32,6 +32,12 @@ CHANGES IN 0.5
|
||||
- Plugin: guess-player-levels now also shows guessed level in tooltip
|
||||
|
||||
|
||||
Additional fixes in 0.51:
|
||||
- Bugfix: sidebar not visible in Chrome
|
||||
- Bugfix: layer chooser not usable if sidebar collapsed
|
||||
- Bugfix: range link not working
|
||||
|
||||
|
||||
|
||||
CHANGES IN 0.4
|
||||
--------------
|
||||
|
@ -37,7 +37,7 @@ Features
|
||||
Install
|
||||
-------
|
||||
|
||||
Current version is 0.5. See [NEWS.md](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/NEWS.md) for details.
|
||||
Current version is 0.51. See [NEWS.md](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/NEWS.md) for details.
|
||||
|
||||
[**INSTALL**](https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js)
|
||||
|
||||
|
14
dist/total-conversion-build.user.js
vendored
14
dist/total-conversion-build.user.js
vendored
@ -1,7 +1,7 @@
|
||||
// ==UserScript==
|
||||
// @id ingress-intel-total-conversion@breunigs
|
||||
// @name intel map total conversion
|
||||
// @version 0.5-2013-02-11-174634
|
||||
// @name intel map total conversion v0.51
|
||||
// @version 0.51-2013-02-11-193316
|
||||
// @namespace https://github.com/breunigs/ingress-intel-total-conversion
|
||||
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||
@ -55,7 +55,7 @@ for(var i = 0; i < d.length; i++) {
|
||||
document.getElementsByTagName('head')[0].innerHTML = ''
|
||||
//~ + '<link rel="stylesheet" type="text/css" href="http://0.0.0.0:8000/style.css"/>'
|
||||
+ '<title>Ingress Intel Map</title>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://breunigs.github.com/ingress-intel-total-conversion/dist/style.css?2013-02-11-174634"/>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://breunigs.github.com/ingress-intel-total-conversion/dist/style.css?2013-02-11-193316"/>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.css"/>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Coda"/>';
|
||||
|
||||
@ -1212,14 +1212,14 @@ window.setupPlayerStat = function() {
|
||||
window.setupSidebarToggle = function() {
|
||||
$('#sidebartoggle').on('click', function() {
|
||||
var toggle = $('#sidebartoggle');
|
||||
var sidebar = $('#sidebar');
|
||||
var sidebar = $('#scrollwrapper');
|
||||
if(sidebar.is(':visible')) {
|
||||
sidebar.hide();
|
||||
sidebar.hide().css('z-index', 1);
|
||||
$('.leaflet-right').css('margin-right','0');
|
||||
toggle.html('<span class="toggle open"></span>');
|
||||
toggle.css('right', '0');
|
||||
} else {
|
||||
sidebar.show();
|
||||
sidebar.css('z-index', 1001).show();
|
||||
$('.leaflet-right').css('margin-right', SIDEBAR_WIDTH+1+'px');
|
||||
toggle.html('<span class="toggle close"></span>');
|
||||
toggle.css('right', SIDEBAR_WIDTH+1+'px');
|
||||
@ -1976,7 +1976,7 @@ window.chat.postMsg = function() {
|
||||
window.getRangeText = function(d) {
|
||||
var range = getPortalRange(d);
|
||||
return ['range',
|
||||
+ '<a onclick="window.rangeLinkClick()">'
|
||||
'<a onclick="window.rangeLinkClick()">'
|
||||
+ (range > 1000
|
||||
? Math.round(range/1000) + ' km'
|
||||
: Math.round(range) + ' m')
|
||||
|
4
main.js
4
main.js
@ -1,7 +1,7 @@
|
||||
// ==UserScript==
|
||||
// @id ingress-intel-total-conversion@breunigs
|
||||
// @name intel map total conversion
|
||||
// @version 0.5-@@BUILDDATE@@
|
||||
// @name intel map total conversion v0.51
|
||||
// @version 0.51-@@BUILDDATE@@
|
||||
// @namespace https://github.com/breunigs/ingress-intel-total-conversion
|
||||
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||
|
@ -1,7 +1,7 @@
|
||||
// ==UserScript==
|
||||
// @id ingress-intel-total-conversion@breunigs
|
||||
// @name intel map total conversion
|
||||
// @version 0.5-2013-02-11-174634
|
||||
// @name intel map total conversion v0.51
|
||||
// @version 0.51-2013-02-11-193316
|
||||
// @namespace https://github.com/breunigs/ingress-intel-total-conversion
|
||||
// @updateURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||
@ -55,7 +55,7 @@ for(var i = 0; i < d.length; i++) {
|
||||
document.getElementsByTagName('head')[0].innerHTML = ''
|
||||
//~ + '<link rel="stylesheet" type="text/css" href="http://0.0.0.0:8000/style.css"/>'
|
||||
+ '<title>Ingress Intel Map</title>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://breunigs.github.com/ingress-intel-total-conversion/dist/style.css?2013-02-11-174634"/>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://breunigs.github.com/ingress-intel-total-conversion/dist/style.css?2013-02-11-193316"/>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.css"/>'
|
||||
+ '<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Coda"/>';
|
||||
|
||||
@ -1212,14 +1212,14 @@ window.setupPlayerStat = function() {
|
||||
window.setupSidebarToggle = function() {
|
||||
$('#sidebartoggle').on('click', function() {
|
||||
var toggle = $('#sidebartoggle');
|
||||
var sidebar = $('#sidebar');
|
||||
var sidebar = $('#scrollwrapper');
|
||||
if(sidebar.is(':visible')) {
|
||||
sidebar.hide();
|
||||
sidebar.hide().css('z-index', 1);
|
||||
$('.leaflet-right').css('margin-right','0');
|
||||
toggle.html('<span class="toggle open"></span>');
|
||||
toggle.css('right', '0');
|
||||
} else {
|
||||
sidebar.show();
|
||||
sidebar.css('z-index', 1001).show();
|
||||
$('.leaflet-right').css('margin-right', SIDEBAR_WIDTH+1+'px');
|
||||
toggle.html('<span class="toggle close"></span>');
|
||||
toggle.css('right', SIDEBAR_WIDTH+1+'px');
|
||||
@ -1976,7 +1976,7 @@ window.chat.postMsg = function() {
|
||||
window.getRangeText = function(d) {
|
||||
var range = getPortalRange(d);
|
||||
return ['range',
|
||||
+ '<a onclick="window.rangeLinkClick()">'
|
||||
'<a onclick="window.rangeLinkClick()">'
|
||||
+ (range > 1000
|
||||
? Math.round(range/1000) + ' km'
|
||||
: Math.round(range) + ' m')
|
||||
|
Reference in New Issue
Block a user