Skip to content

Commit

Permalink
version bump and related items for release
Browse files Browse the repository at this point in the history
  • Loading branch information
norcross committed May 18, 2016
1 parent 7d9f096 commit c25df76
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### Version 0.1.7 - 2016/05/18
* allow local HTTP calls with optional filter. props @johnbillion
* add back index.php link to main dashboard menu item
* bumped minimum WP version requirement to 4.4

#### Version 0.1.6 - 2016/04/25
* minor tweak to include CSS for new icon font

Expand Down
14 changes: 10 additions & 4 deletions airplane-mode.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* Description: Control loading of external files when developing locally
* Author: Andrew Norcross
* Author URI: http://reaktivstudios.com/
* Version: 0.1.6
* Version: 0.1.7
* Text Domain: airplane-mode
* Requires WP: 4.0
* Requires WP: 4.4
* Domain Path: languages
* GitHub Plugin URI: https://github.com/norcross/airplane-mode
*/
Expand Down Expand Up @@ -36,18 +36,22 @@
* THE SOFTWARE.
*/

// Set our base if not already defined.
if ( ! defined( 'AIRMDE_BASE' ) ) {
define( 'AIRMDE_BASE', plugin_basename( __FILE__ ) );
}

// Set our directory if not already defined.
if ( ! defined( 'AIRMDE_DIR' ) ) {
define( 'AIRMDE_DIR', plugin_dir_path( __FILE__ ) );
}

// Set our version if not already defined.
if ( ! defined( 'AIRMDE_VER' ) ) {
define( 'AIRMDE_VER', '0.1.6' );
define( 'AIRMDE_VER', '0.1.7' );
}

// Ensure the class has not already been loaded.
if ( ! class_exists( 'Airplane_Mode_Core' ) ) {

/**
Expand All @@ -56,13 +60,15 @@
class Airplane_Mode_Core {

/**
* Static property to hold our singleton instance
* Static property to hold our singleton instance.
*
* @var $instance
*/
static $instance = false;

/**
* Set a var for the number of HTTP requests.
*
* @var $http_count
*/
private $http_count = 0;
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Contributors: norcross, johnbillion, afragen, szepeviktor, chriscct7, markjaquit
Website Link: https://github.com/norcross/airplane-mode
Donate link: https://andrewnorcross.com/donate
Tags: external calls, HTTP
Requires at least: 4.0
Requires at least: 4.4
Tested up to: 4.5
Stable tag: 0.1.6
Stable tag: 0.1.7
License: MIT
License URI: http://norcross.mit-license.org/

Expand Down Expand Up @@ -43,6 +43,11 @@ Because you are a jet set developer who needs to work without internet.

== Changelog ==

= 0.1.7 - 2016/05/18
* allow local HTTP calls with optional filter. props @johnbillion
* add back index.php link to main dashboard menu item
* bumped minimum WP version requirement to 4.4

= 0.1.6 - 2016/04/25
* minor tweak to include CSS for new icon font

Expand Down

0 comments on commit c25df76

Please sign in to comment.