Custom Post Type UI - Version 1.3.1

Version Description

  • 2016-3-25 =
  • Fixed: Logic issue for default values of public parameter for taxonomies added in 1.3.0.
Download this release

Release Info

Developer tw2113
Plugin Icon 128x128 Custom Post Type UI
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3.0 to 1.3.1

Files changed (2) hide show
  1. custom-post-type-ui.php +2 -2
  2. readme.txt +7 -9
custom-post-type-ui.php CHANGED
@@ -13,7 +13,7 @@ Plugin Name: Custom Post Type UI
13
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
14
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
15
  Author: WebDevStudios
16
- Version: 1.3.0
17
  Author URI: https://webdevstudios.com/
18
  Text Domain: custom-post-type-ui
19
  Domain Path: /languages
@@ -479,7 +479,7 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
479
  $taxonomy['query_var'] = $taxonomy['query_var_slug'];
480
  }
481
 
482
- $public = ( ! empty( $taxonomy['public'] ) && false !== get_disp_boolean( $taxonomy['public'] ) ) ? true : false;
483
 
484
  $show_admin_column = ( ! empty( $taxonomy['show_admin_column'] ) && false !== get_disp_boolean( $taxonomy['show_admin_column'] ) ) ? true : false;
485
 
13
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
14
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
15
  Author: WebDevStudios
16
+ Version: 1.3.1
17
  Author URI: https://webdevstudios.com/
18
  Text Domain: custom-post-type-ui
19
  Domain Path: /languages
479
  $taxonomy['query_var'] = $taxonomy['query_var_slug'];
480
  }
481
 
482
+ $public = ( ! empty( $taxonomy['public'] ) && false === get_disp_boolean( $taxonomy['public'] ) ) ? false : true;
483
 
484
  $show_admin_column = ( ! empty( $taxonomy['show_admin_column'] ) && false !== get_disp_boolean( $taxonomy['show_admin_column'] ) ) ? true : false;
485
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 4.2
6
  Tested up to: 4.5
7
- Stable tag: 1.3.0
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -30,6 +30,9 @@ All official development on this plugin is on GitHub. Version bumps will still b
30
 
31
  == Changelog ==
32
 
 
 
 
33
  = 1.3.0 - 2016-3-24 =
34
  * Added: "CPTUI_VERSION" constant and deprecated "CPT_VERSION".
35
  * Added: "Public" parameter for taxonomies
@@ -61,10 +64,6 @@ All official development on this plugin is on GitHub. Version bumps will still b
61
  * Added: new CPTUI_VERSION constant to match naming of other current constants.
62
  * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
63
 
64
- = 1.2.4 =
65
- * Added: new CPTUI_VERSION constant to match naming of other current constants.
66
- * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
67
-
68
  = 1.2.3 - 2016-01-31 =
69
  * Fixed: copy/paste error with admin css. Props hinaloe.
70
 
@@ -195,6 +194,9 @@ All official development on this plugin is on GitHub. Version bumps will still b
195
 
196
  == Upgrade Notice ==
197
 
 
 
 
198
  = 1.3.0 =
199
  * Added: "CPTUI_VERSION" constant and deprecated "CPT_VERSION".
200
  * Added: "Public" parameter for taxonomies
@@ -226,10 +228,6 @@ All official development on this plugin is on GitHub. Version bumps will still b
226
  * Added: new CPTUI_VERSION constant to match naming of other current constants.
227
  * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
228
 
229
- = 1.2.4 =
230
- * Added: new CPTUI_VERSION constant to match naming of other current constants.
231
- * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
232
-
233
  = 1.2.3 =
234
  * Fixed: copy/paste error with admin css. Props hinaloe.
235
 
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 4.2
6
  Tested up to: 4.5
7
+ Stable tag: 1.3.1
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
30
 
31
  == Changelog ==
32
 
33
+ = 1.3.1 - 2016-3-25 =
34
+ * Fixed: Logic issue for default values of `public` parameter for taxonomies added in 1.3.0.
35
+
36
  = 1.3.0 - 2016-3-24 =
37
  * Added: "CPTUI_VERSION" constant and deprecated "CPT_VERSION".
38
  * Added: "Public" parameter for taxonomies
64
  * Added: new CPTUI_VERSION constant to match naming of other current constants.
65
  * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
66
 
 
 
 
 
67
  = 1.2.3 - 2016-01-31 =
68
  * Fixed: copy/paste error with admin css. Props hinaloe.
69
 
194
 
195
  == Upgrade Notice ==
196
 
197
+ = 1.3.1 - 2016-3-25 =
198
+ * Fixed: Logic issue for default values of `public` parameter for taxonomies added in 1.3.0.
199
+
200
  = 1.3.0 =
201
  * Added: "CPTUI_VERSION" constant and deprecated "CPT_VERSION".
202
  * Added: "Public" parameter for taxonomies
228
  * Added: new CPTUI_VERSION constant to match naming of other current constants.
229
  * Added: CPTUI_VERSION constant to cptui.css string for cache busting.
230
 
 
 
 
 
231
  = 1.2.3 =
232
  * Fixed: copy/paste error with admin css. Props hinaloe.
233