release 0.7.8 to avoid hammering GitHub’s servers

This commit is contained in:
Stefan Breunig 2013-02-26 22:41:40 +01:00
parent d519957283
commit 9f044a5ff3
3 changed files with 8 additions and 7 deletions

View File

@ -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 Niantics 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 Niantics switch to HTT
- Bugfix: map base layer wasnt always remembered in Chrome
- 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: some graphics were not available due to GitHubs 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

View File

@ -19,7 +19,7 @@ IITC can be [extended with the use of plugins](https://github.com/breunigs/ingre
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)

View File

@ -1,7 +1,7 @@
// ==UserScript==
// @id ingress-intel-total-conversion@breunigs
// @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
// @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
@ -17,7 +17,7 @@
if(document.getElementsByTagName('html')[0].getAttribute('itemscope') != null)
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
window.onload = function() {};
@ -1570,12 +1570,12 @@ d+"px").css("background-color",a.isDark(e,i)?h.foreground:h.background).appendTo
function boot() {
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);
window.runOnSmartphonesBeforeBoot();
// 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;
window.iconEnl = L.Icon.Default.extend({options: { iconUrl: base + 'marker-green.png' } });