Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
norcross committed Apr 2, 2015
1 parent aa7ea19 commit 9386a0e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions airplane-mode.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -34,7 +34,7 @@
}

if ( ! defined( 'AIRMDE_VER' ) ) {
define( 'AIRMDE_VER', '0.0.3' );
define( 'AIRMDE_VER', '0.0.4' );
}

/**
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9386a0e

Please sign in to comment.