release 0.7.1 to fix the portal rendering issue. Fixes #278, fixes #283

This commit is contained in:
Stefan Breunig 2013-02-23 23:58:24 +01:00
parent 8875f37629
commit ff560ab3ca
2 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,7 @@
CHANGES IN 0.7 CHANGES IN 0.7 / 0.7.1
============== ======================
- 0.7.1 fixes an oversight that prevented some portals from showing (by saithis)
### General ### General
- from now on there will be [nightly builds](https://www.dropbox.com/sh/lt9p0s40kt3cs6m/3xzpyiVBnF) available. You need to manually update them if you want to stay on nightly. You should be offered to update to the next release version, though. Be sure to [have read the guide on how to report bugs](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/HACKING.md#how-do-i-report-bugs) before using a nightly version. - from now on there will be [nightly builds](https://www.dropbox.com/sh/lt9p0s40kt3cs6m/3xzpyiVBnF) available. You need to manually update them if you want to stay on nightly. You should be offered to update to the next release version, though. Be sure to [have read the guide on how to report bugs](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/HACKING.md#how-do-i-report-bugs) before using a nightly version.

View File

@ -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-2013-02-23-141531 // @version 0.7.1-2013-02-23-235612
// @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
@ -15,7 +15,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-23-141531'; window.iitcBuildDate = '2013-02-23-235612';
// disable vanilla JS // disable vanilla JS
window.onload = function() {}; window.onload = function() {};
@ -294,7 +294,7 @@ if(typeof window.plugin !== 'function') window.plugin = function() {};
window._hooks = {} window._hooks = {}
window.VALID_HOOKS = ['portalAdded', 'portalDetailsUpdated', window.VALID_HOOKS = ['portalAdded', 'portalDetailsUpdated',
'publicChatDataAvailable', 'portalDataLoaded']; 'publicChatDataAvailable', 'portalDataLoaded', 'beforePortalReRender'];
window.runHooks = function(event, data) { window.runHooks = function(event, data) {
if(VALID_HOOKS.indexOf(event) === -1) throw('Unknown event type: ' + event); if(VALID_HOOKS.indexOf(event) === -1) throw('Unknown event type: ' + event);