Skip to content

Commit

Permalink
Bump version number and add changelog info
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed May 3, 2014
1 parent f8cc551 commit d2af20d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions helpers/cmb_Meta_Box_field.php
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ public function _set_field_defaults( $args ) {
$option_types = array( 'taxonomy_select', 'taxonomy_radio', 'taxonomy_radio_inline' );
if ( in_array( $args['type'], $option_types, true ) ) {

// @todo implemention
$args['show_option_all'] = isset( $args['show_option_all'] ) && ! $args['show_option_all'] ? false : true;
$args['show_option_none'] = isset( $args['show_option_none'] ) && ! $args['show_option_none'] ? false : true;

Expand Down
4 changes: 2 additions & 2 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Bill Erickson (@billerickson / billerickson.net)
Andrew Norcross (@norcross / andrewnorcross.com)
Description: This will create metaboxes with custom fields that will blow your mind.
Version: 1.1.3
Version: 1.1.4
*/

/**
Expand Down Expand Up @@ -55,7 +55,7 @@ class cmb_Meta_Box {
* @var string
* @since 1.0.0
*/
const CMB_VERSION = '1.1.3';
const CMB_VERSION = '1.1.4';

/**
* Metabox Config array
Expand Down
7 changes: 5 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
* Bill Erickson ( [@billerickson](http://twitter.com/billerickson ) / [billerickson.net](http://billerickson.net/) )
* Andrew Norcross ( [@norcross](http://twitter.com/norcross ) / [andrewnorcross.com](http://andrewnorcross.com/) )

**Version**: 1.1.3
**Version**: 1.1.4
**Requires at least**: 3.5
**Tested up to**: 3.9-alpha
**Tested up to**: 3.9
**License**: GPLv2

## Description
Expand Down Expand Up @@ -104,13 +104,16 @@ This script is easy to install. If you can't figure it out you probably shouldn'
* Add support for custom date/time formats. Props [@Scrent](https://github.com/Scrent). ([#506](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/pull/506))
* Simplify `wysiwyg` escaping and allow it to be overridden via the `escape_cb` parameter. ([#491](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/pull/491))
* Add a 'Select/Deselect all' button for the `multicheck` field type.
* Add title option for [repeatable groups](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/wiki/Field-Types#group). Title field takes an optional replacement hash, "{#}" that will be replaced by the row number.

**Bug Fixes**

* Fixed issue where remove file button wouldn't clear the url field. ([#514](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/514))
* `wysiwyg` fields now allow underscores. Fixes some wysiwyg display issues in WordPress 3.8. Props [@lswilson](https://github.com/lswilson). ([#491](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/491))
* Nonce field should only be added once per page. ([#521](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/521))
* Fix `in_array` issue when a post does not have any saved terms for a taxonomy multicheck. ([#527](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/527))
* Fixed error: 'Uninitialized string offset: 0 in cmb_Meta_Box_field.php...`. Props [@DevinWalker](https://github.com/DevinWalker). ([#539](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/539), [#549](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/549)))
* Fix missing `file` field description. ([#543](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/543), [#547](https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress/issues/547))



Expand Down

0 comments on commit d2af20d

Please sign in to comment.