release 0.7.8 to avoid hammering GitHub’s servers
This commit is contained in:
parent
d519957283
commit
9f044a5ff3
5
NEWS.md
5
NEWS.md
@ -1,5 +1,5 @@
|
|||||||
CHANGES IN 0.7.5 / 0.7.6 / 0.7.7
|
CHANGES IN 0.7.5 – 0.7.8
|
||||||
================================
|
========================
|
||||||
|
|
||||||
This is an emergency release to keep IITC working with Niantic’s switch to HTTPS. It appears they will roll it out for everyone soon, so IITC now requires HTTPS for everyone; support for HTTP was dropped to keep things sane. Additionally, the following things were changed from 0.7.1:
|
This is an emergency release to keep IITC working with Niantic’s switch to HTTPS. It appears they will roll it out for everyone soon, so IITC now requires HTTPS for everyone; support for HTTP was dropped to keep things sane. Additionally, the following things were changed from 0.7.1:
|
||||||
|
|
||||||
@ -10,6 +10,7 @@ This is an emergency release to keep IITC working with Niantic’s switch to HTT
|
|||||||
- Bugfix: map base layer wasn’t always remembered in Chrome
|
- Bugfix: map base layer wasn’t always remembered in Chrome
|
||||||
- Bugfix: QR Code rendering broken (in 0.7.5, fixed in 0.7.6)
|
- Bugfix: QR Code rendering broken (in 0.7.5, fixed in 0.7.6)
|
||||||
- Bugfix: Script broken in Firefox sometimes (fixed in 0.7.7)
|
- Bugfix: Script broken in Firefox sometimes (fixed in 0.7.7)
|
||||||
|
- Bugfix: some graphics were not available due to GitHub’s limits. Affected plugins: draw tools and player tracker. Need to update IITC and both plugins for the fix to come into effect. (fixed in 0.7.8)
|
||||||
|
|
||||||
|
|
||||||
CHANGES IN 0.7 / 0.7.1
|
CHANGES IN 0.7 / 0.7.1
|
||||||
|
@ -19,7 +19,7 @@ IITC can be [extended with the use of plugins](https://github.com/breunigs/ingre
|
|||||||
Install
|
Install
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Current version is 0.7.7. [See NEWS.md for details](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/NEWS.md).
|
Current version is 0.7.8. [See NEWS.md for details](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/NEWS.md).
|
||||||
|
|
||||||
[**INSTALL**](https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js)
|
[**INSTALL**](https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js)
|
||||||
|
|
||||||
|
8
dist/total-conversion-build.user.js
vendored
8
dist/total-conversion-build.user.js
vendored
@ -1,7 +1,7 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @id ingress-intel-total-conversion@breunigs
|
// @id ingress-intel-total-conversion@breunigs
|
||||||
// @name intel map total conversion
|
// @name intel map total conversion
|
||||||
// @version 0.7.7-2013-02-26-164913
|
// @version 0.7.8-2013-02-26-223742
|
||||||
// @namespace https://github.com/breunigs/ingress-intel-total-conversion
|
// @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
|
// @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
|
// @downloadURL https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js
|
||||||
@ -17,7 +17,7 @@
|
|||||||
if(document.getElementsByTagName('html')[0].getAttribute('itemscope') != null)
|
if(document.getElementsByTagName('html')[0].getAttribute('itemscope') != null)
|
||||||
throw('Ingress Intel Website is down, not a userscript issue.');
|
throw('Ingress Intel Website is down, not a userscript issue.');
|
||||||
|
|
||||||
window.iitcBuildDate = '2013-02-26-164913';
|
window.iitcBuildDate = '2013-02-26-223742';
|
||||||
|
|
||||||
// disable vanilla JS
|
// disable vanilla JS
|
||||||
window.onload = function() {};
|
window.onload = function() {};
|
||||||
@ -1570,12 +1570,12 @@ d+"px").css("background-color",a.isDark(e,i)?h.foreground:h.background).appendTo
|
|||||||
function boot() {
|
function boot() {
|
||||||
window.debug.console.overwriteNativeIfRequired();
|
window.debug.console.overwriteNativeIfRequired();
|
||||||
|
|
||||||
console.log('loading done, booting. Built: 2013-02-26-164913');
|
console.log('loading done, booting. Built: 2013-02-26-223742');
|
||||||
if(window.deviceID) console.log('Your device ID: ' + window.deviceID);
|
if(window.deviceID) console.log('Your device ID: ' + window.deviceID);
|
||||||
window.runOnSmartphonesBeforeBoot();
|
window.runOnSmartphonesBeforeBoot();
|
||||||
|
|
||||||
// overwrite default Leaflet Marker icon to be a neutral color
|
// overwrite default Leaflet Marker icon to be a neutral color
|
||||||
var base = 'https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/images/';
|
var base = 'http://breunigs.github.com/ingress-intel-total-conversion/dist/images/';
|
||||||
L.Icon.Default.imagePath = base;
|
L.Icon.Default.imagePath = base;
|
||||||
|
|
||||||
window.iconEnl = L.Icon.Default.extend({options: { iconUrl: base + 'marker-green.png' } });
|
window.iconEnl = L.Icon.Default.extend({options: { iconUrl: base + 'marker-green.png' } });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user