release 0.7.5. This is an emergency release to fix complete breakage for the upcoming https rollout

This commit is contained in:
Stefan Breunig 2013-02-26 01:09:52 +01:00
parent b8a06545dc
commit 8ff667e45f
5 changed files with 337 additions and 182 deletions

15
NEWS.md
View File

@ -1,5 +1,17 @@
CHANGES IN 0.7.5
================
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:
- Feature: the “gmaps” link for each portal has been replaced with a “poslinks” one. It offers Google Maps, OpenStreetMap and QR-Codes for easy transfer to your mobile phone (by Merovius).
- Feature: the exact capture time is now shown in a tooltip in the portal details (by j16sdiz)
- Change: most scripts are now included in the UserScript directly. Was the easiest solution to the HTTPS issue.
- Change: minor improvements when render limit is about to be hit.
- Bugfix: map base layer wasnt always remembered in Chrome
CHANGES IN 0.7 / 0.7.1 CHANGES IN 0.7 / 0.7.1
====================== ----------------------
- 0.7.1 fixes an oversight that prevented some portals from showing (by saithis) - 0.7.1 fixes an oversight that prevented some portals from showing (by saithis)
@ -51,7 +63,6 @@ CHANGES IN 0.6 / 0.61
- **SECURITY**: Chat was vulnerable to XSS attacks. Update as soon as - **SECURITY**: Chat was vulnerable to XSS attacks. Update as soon as
possible. possible.
- Feature: [**more plugins**](https://github.com/breunigs/ingress-intel-total-conversion/tree/gh-pages/plugins#readme) - Feature: [**more plugins**](https://github.com/breunigs/ingress-intel-total-conversion/tree/gh-pages/plugins#readme)
- weakened portals: highlights portals with few resonators or ones - weakened portals: highlights portals with few resonators or ones
that are decayed, making it easier to see where that are decayed, making it easier to see where

View File

@ -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.1. [See NEWS.md for details](https://github.com/breunigs/ingress-intel-total-conversion/blob/gh-pages/NEWS.md). Current version is 0.7.5. [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)
@ -40,7 +40,9 @@ Current version is 0.7.1. [See NEWS.md for details](https://github.com/breunigs/
- Confirm once again. - Confirm once again.
- Reload page. - Reload page.
*Note:* Tampermonkey is optional. However, it offers auto-update, shows correct version numbers and installing user scripts is much easier. If you have installed the scripts directly into Chrome before, I recommend you switch to Tampermonkey. To do so, uninstall the IITC scripts and click each install link again. Follow the procedure explained above. **NOTE: You still need to manually update IITC with Tampermonkey.** There is a bug in the current stable release. It has been fixed in Tampermonkeys development version. Until it is released, you need to manually update IITC.
*Note:* Tampermonkey is optional. However, it ~~offers auto-update~~, shows correct version numbers and installing user scripts is much easier. If you have installed the scripts directly into Chrome before, I recommend you switch to Tampermonkey. To do so, uninstall the IITC scripts and click each install link again. Follow the procedure explained above.
### Opera ### Opera
- Download the script: [download](https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js) - Download the script: [download](https://raw.github.com/breunigs/ingress-intel-total-conversion/gh-pages/dist/total-conversion-build.user.js)

File diff suppressed because one or more lines are too long

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.1-@@BUILDDATE@@ // @version 0.7.5-@@BUILDDATE@@
// @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

View File

@ -1,10 +0,0 @@
#!/bin/sh
./build.py
cp iitc-debug.user.js dist/total-conversion-build.user.js
cp style.css dist/style.css
cp external/* dist/
rm -r dist/images/
cp -r images/ dist/images/
echo 'Change path of style.css to dist/style.css'