diff --git a/CHANGELOG b/CHANGELOG index f7042bddf..b24ec18a5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,11 @@ version 2.4-wip * Added short description on each rule on the summary page (hover to see it) #161 * Bug fix: the rule "Avoid DNS lookups when a page has few requests" was broken, couldn't tell if JS was loaded async or not #328 + +version 2.3.1 +------------------------ +* Bug fix: Fixed bug When api.exip.org is down (sitespeed stops to work) + version 2.3 ------------------------ * Put the JUnit files into a dir named /junit/ when running the sitespeed.io-junit script. WARNING: this means you need to change in Jenkins where you match the files. diff --git a/README.md b/README.md index 8d65c8868..3048b2e85 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Sitespeed.io - how speedy is your website? [![Build Status](https://secure.travis-ci.org/sitespeedio/sitespeed.io.png?branch=master)](http://travis-ci.org/sitespeedio/sitespeed.io) ============= -Sitespeed.io is an open source tool that helps you analyze and optimize your website speed and performance, based on performance best practices rules and collecting metrics using the Navigation Timing API. +Sitespeed.io is an open source tool that helps you analyze and optimize your website speed and performance, based on performance best practices rules and collecting metrics using the Navigation Timing API and User Timings. Sitespeed.io will create six different result pages: * Site summary page * Detailed site summary page @@ -10,13 +10,12 @@ Sitespeed.io will create six different result pages: * Most used assets report * Screenshots -![The site summary page](https://raw.github.com/sitespeedio/sitespeed.io/master/doc/summary-1.8.jpg) +![The site summary page](https://raw.github.com/sitespeedio/sitespeed.io/master/doc/summary-2.0.jpg) Install/run on Mac OS X ============= ```bash -$ brew tap sitespeedio/sitespeedio -$ brew install sitespeed.io +$ brew install sitespeedio/sitespeedio/sitespeed.io $ sitespeed.io -h ``` diff --git a/bin/sitespeed.io b/bin/sitespeed.io index f8a0c0e59..0c0137f6d 100755 --- a/bin/sitespeed.io +++ b/bin/sitespeed.io @@ -395,6 +395,11 @@ if [ -z "$MY_IP" ] then MY_IP='unknown' fi +## Ugly quick fix when the API is down +if [[ "$MY_IP" == *html* ]] + then + MY_IP='unknown' +fi ## Run included or local BT version if hash browsertime 2>/dev/null; then