diff --git a/README.md b/README.md index 0e5439f..9c05378 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Airplane Mode ======================== -Current Version: 0.0.3 +Current Version: 0.0.4 ## About Control loading of external files when developing locally. WP loads certain external files (fonts, gravatar, etc) and makes external HTTP calls. This isn't usually an issue, unless you're working in an evironment without a web connection. This plugin removes / unhooks those actions to reduce load time and avoid errors due to missing files. @@ -14,6 +14,11 @@ Control loading of external files when developing locally. WP loads certain exte ## Changelog: +### Version 0.0.4 - 2015/04/02 + +* added multiple checks for all the various theme and plugin update calls. props @chriscct7 +* added HTTP counter on a per-page basis. props @szepeviktor + ### Version 0.0.3 - 2015/01/23 * added `airplane_mode_status_change` hook for functions to fire on status change diff --git a/airplane-mode.php b/airplane-mode.php index 326b57f..f529c0a 100755 --- a/airplane-mode.php +++ b/airplane-mode.php @@ -4,7 +4,7 @@ Plugin URI: http://reaktivstudios.com/ Description: Control loading of external files when developing locally Author: Andrew Norcross -Version: 0.0.3 +Version: 0.0.4 Requires WP: 3.7 Author URI: http://reaktivstudios.com/ GitHub Plugin URI: https://github.com/norcross/airplane-mode @@ -34,7 +34,7 @@ } if ( ! defined( 'AIRMDE_VER' ) ) { - define( 'AIRMDE_VER', '0.0.3' ); + define( 'AIRMDE_VER', '0.0.4' ); } /** diff --git a/readme.txt b/readme.txt index 7fbc38f..9ab0b69 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Donate link: https://andrewnorcross.com/donate Tags: external calls, HTTP Requires at least: 3.7 Tested up to: 4.1 -Stable tag: 0.0.3 +Stable tag: 0.0.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -42,6 +42,10 @@ Because you are a jet set developer who needs to work without internet. == Changelog == += 0.0.4 - 2015/04/02 = +* added multiple checks for all the various theme and plugin update calls. props @chriscct7 +* added HTTP counter on a per-page basis. props @szepeviktor + = 0.0.3 - 2015/01/23 = * added `airplane_mode_status_change` hook for functions to fire on status change * purge update related transients on disable