Skip to content

Commit

Permalink
Prep for 1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mae829 committed Aug 10, 2017
1 parent 89e52e8 commit 552df39
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.

### Bug Fixes
## 1.2 - 06-15-2016

### Enhancements
* Use OOP for all features
* Properly checks for CMB2 and deactivates if CMB2 is not found (throws warning alert when deactivation occurs)
* Tabs no longer have FOUC, now have same standard as WP tabs

### Bug Fixes
* Fix for exclusion by slug
* Removed tab nav from Edit Media (Attachment) screen
* Check for Post Type name instead of just the slug
* Only load assets when CMB2 assets are loaded as well (no need for overloading admin when CMB2 was not even used on page/plugin)

## 1.1 - 05-02-2016

### Enhancements
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ CMB2 EXPANSION is a plugin which adds features to the plugin [CMB2](https://gith
1. Place the CMB2 EXPANSION directory inside of your plugins directory (typically /wp-content/plugins).
2. Activate plugin through the Plugins Admin page

### 1.2 - 06-15-2016
#### Enhancements
* Use OOP for all features
* Properly checks for CMB2 and deactivates if CMB2 is not found (throws warning alert when deactivation occurs)
* Tabs no longer have FOUC, now have same standard as WP tabs

#### Bug Fixes
* Fix for exclusion by slug
* Removed tab nav from Edit Media (Attachment) screen
* Check for Post Type name instead of just the slug
* Only load assets when CMB2 assets are loaded as well (no need for overloading admin when CMB2 was not even used on page/plugin)

### 1.1 - 05-02-2016

#### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions cmb2-expansion.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: CMB2 Expansion
* Description: Expansion plugin for CMB2
* Version: 1.1
* Version: 1.2
* Author: Mike Estrada
* Author URI: https://bleucellar.com/
*/
Expand All @@ -13,7 +13,7 @@
define( 'CMB2_EXP_DIR', plugin_dir_path(__FILE__) );
define( 'CMB2_EXP_URL', plugin_dir_url(__FILE__) );
define( 'CMB2_EXP_BASE', plugin_basename( __FILE__ ) );
define( 'CMB2_EXP_VERSION', '1.1' );
define( 'CMB2_EXP_VERSION', '1.2' );

// check if CMB2 class is defined (possibly use the PRE ACTIVATION hook)
function cmb2_expansion_plugin_init() {
Expand Down

0 comments on commit 552df39

Please sign in to comment.