Changeset 3103726
- Timestamp:
- 06/17/2024 07:18:02 PM (22 months ago)
- Location:
- custom-post-type-ui
- Files:
-
- 55 added
- 6 deleted
- 4 edited
-
tags/1.17.0 (added)
-
tags/1.17.0/LICENSE (added)
-
tags/1.17.0/build (added)
-
tags/1.17.0/build/cptui-styles.css (added)
-
tags/1.17.0/build/cptui-styles.css.map (added)
-
tags/1.17.0/build/cptui-styles.min.css (added)
-
tags/1.17.0/build/cptui.asset.php (added)
-
tags/1.17.0/build/cptui.js (added)
-
tags/1.17.0/build/cptui.js.map (added)
-
tags/1.17.0/build/cptui.min.js (added)
-
tags/1.17.0/build/cptui.min.js.map (added)
-
tags/1.17.0/build/dashiconsPicker.asset.php (added)
-
tags/1.17.0/build/dashiconsPicker.js (added)
-
tags/1.17.0/build/dashiconsPicker.js.map (added)
-
tags/1.17.0/build/dashiconsPicker.min.js (added)
-
tags/1.17.0/build/dashiconsPicker.min.js.map (added)
-
tags/1.17.0/classes (added)
-
tags/1.17.0/classes/class.cptui_admin_ui.php (added)
-
tags/1.17.0/classes/class.cptui_debug_info.php (added)
-
tags/1.17.0/custom-post-type-ui.php (added)
-
tags/1.17.0/external (added)
-
tags/1.17.0/external/wpgraphql.php (added)
-
tags/1.17.0/images (added)
-
tags/1.17.0/images/cptui-icon-173x173.png (added)
-
tags/1.17.0/images/wds_ads (added)
-
tags/1.17.0/images/wds_ads/buddypages.png (added)
-
tags/1.17.0/images/wds_ads/cptui-extended.png (added)
-
tags/1.17.0/images/wds_ads/instago.png (added)
-
tags/1.17.0/images/wds_ads/wp-search-with-algolia-pro.png (added)
-
tags/1.17.0/inc (added)
-
tags/1.17.0/inc/about.php (added)
-
tags/1.17.0/inc/listings.php (added)
-
tags/1.17.0/inc/post-types.php (added)
-
tags/1.17.0/inc/support.php (added)
-
tags/1.17.0/inc/taxonomies.php (added)
-
tags/1.17.0/inc/tools-sections (added)
-
tags/1.17.0/inc/tools-sections/tools-debug.php (added)
-
tags/1.17.0/inc/tools-sections/tools-get-code.php (added)
-
tags/1.17.0/inc/tools-sections/tools-post-types.php (added)
-
tags/1.17.0/inc/tools-sections/tools-taxonomies.php (added)
-
tags/1.17.0/inc/tools.php (added)
-
tags/1.17.0/inc/utility.php (added)
-
tags/1.17.0/inc/wp-cli.php (added)
-
tags/1.17.0/readme.txt (added)
-
tags/1.17.0/wpml-config.xml (added)
-
trunk/build/cptui-scripts.js (deleted)
-
trunk/build/cptui-scripts.min.js (deleted)
-
trunk/build/cptui-scripts.min.js.map (deleted)
-
trunk/build/cptui.asset.php (added)
-
trunk/build/cptui.js (added)
-
trunk/build/cptui.js.map (added)
-
trunk/build/cptui.min.js (added)
-
trunk/build/cptui.min.js.map (added)
-
trunk/build/dashicons-picker.js (deleted)
-
trunk/build/dashicons-picker.min.js (deleted)
-
trunk/build/dashicons-picker.min.js.map (deleted)
-
trunk/build/dashiconsPicker.asset.php (added)
-
trunk/build/dashiconsPicker.js (added)
-
trunk/build/dashiconsPicker.js.map (added)
-
trunk/build/dashiconsPicker.min.js (added)
-
trunk/build/dashiconsPicker.min.js.map (added)
-
trunk/custom-post-type-ui.php (modified) (3 diffs)
-
trunk/inc/post-types.php (modified) (2 diffs)
-
trunk/inc/taxonomies.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-post-type-ui/trunk/custom-post-type-ui.php
r3067146 r3103726 17 17 * Description: Admin UI panel for registering custom post types and taxonomies 18 18 * Author: WebDevStudios 19 * Version: 1.1 6.019 * Version: 1.17.0 20 20 * Author URI: https://webdevstudios.com/ 21 21 * Text Domain: custom-post-type-ui 22 22 * Domain Path: /languages 23 23 * License: GPL-2.0+ 24 * Requires at least: 6. 324 * Requires at least: 6.5 25 25 * Requires PHP: 7.4 26 26 */ … … 34 34 } 35 35 36 define( 'CPT_VERSION', '1.1 6.0' ); // Left for legacy purposes.37 define( 'CPTUI_VERSION', '1.1 6.0' );36 define( 'CPT_VERSION', '1.17.0' ); // Left for legacy purposes. 37 define( 'CPTUI_VERSION', '1.17.0' ); 38 38 define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) ); 39 39 … … 247 247 } 248 248 $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; 249 wp_register_script( 'cptui', plugins_url( "build/cptui -scripts{$min}.js", __FILE__ ), [ 'jquery', 'jquery-ui-dialog', 'postbox' ], CPTUI_VERSION, true );250 wp_register_script( 'dashicons-picker', plugins_url( "build/dashicons -picker{$min}.js", __FILE__ ), [ 'jquery'], '1.0.0', true );249 wp_register_script( 'cptui', plugins_url( "build/cptui{$min}.js", __FILE__ ), [ 'jquery', 'jquery-ui-dialog', 'postbox' ], CPTUI_VERSION, true ); 250 wp_register_script( 'dashicons-picker', plugins_url( "build/dashiconsPicker{$min}.js", __FILE__ ), [ 'jquery'], '1.0.0', true ); 251 251 wp_register_style( 'cptui-css', plugins_url( "build/cptui-styles{$min}.css", __FILE__ ), [ 'wp-jquery-ui-dialog' ], CPTUI_VERSION ); 252 252 } -
custom-post-type-ui/trunk/inc/post-types.php
r2990099 r3103726 323 323 esc_html__( 'Populate additional labels based on chosen labels', 'custom-post-type-ui' ) : 324 324 esc_html__( 'Populate missing labels based on chosen labels', 'custom-post-type-ui' ); 325 echo $ui->get_tr_ end(); // phpcs:ignore.325 echo $ui->get_tr_start( [ 'id' => 'autolabels', 'style' => 'display:none;' ] ); // phpcs:ignore. 326 326 echo $ui->get_th_start() . esc_html__( 'Auto-populate labels', 'custom-post-type-ui' ) . $ui->get_th_end(); // phpcs:ignore. 327 327 echo $ui->get_td_start(); // phpcs:ignore. … … 2220 2220 2221 2221 $reserved = [ 2222 'action', 2223 'attachment', 2224 'author', 2225 'custom_css', 2226 'customize_changeset', 2227 'fields', 2228 'nav_menu_item', 2229 'oembed_cache', 2230 'order', 2231 'page', 2222 2232 'post', 2223 'page', 2224 'attachment', 2233 'post_type', 2225 2234 'revision', 2226 'nav_menu_item', 2227 'action', 2228 'order', 2235 'sidebars', 2229 2236 'theme', 2230 2237 'themes', 2231 'fields',2232 'custom_css',2233 'customize_changeset',2234 'author',2235 'post_type',2236 'oembed_cache',2237 2238 'user_request', 2238 2239 'wp_block', 2240 'wp_global_styles', 2241 'wp_navigation', 2239 2242 'wp_template', 2240 2243 'wp_template_part', 2241 'wp_global_styles',2242 'wp_navigation',2243 2244 ]; 2244 2245 -
custom-post-type-ui/trunk/inc/taxonomies.php
r3067146 r3103726 327 327 esc_html__( 'Populate additional labels based on chosen labels', 'custom-post-type-ui' ) : 328 328 esc_html__( 'Populate missing labels based on chosen labels', 'custom-post-type-ui' ); 329 echo $ui->get_tr_ end(); // phpcs:ignore.329 echo $ui->get_tr_start( [ 'id' => 'autolabels', 'style' => 'display:none;' ] ); // phpcs:ignore. 330 330 echo $ui->get_th_start() . esc_html__( 'Auto-populate labels', 'custom-post-type-ui' ) . $ui->get_th_end(); // phpcs:ignore. 331 331 echo $ui->get_td_start(); // phpcs:ignore. -
custom-post-type-ui/trunk/readme.txt
r3067146 r3103726 2 2 Contributors: webdevstudios, pluginize, tw2113, williamsba1 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056 4 Tags: custom post types, post type, taxonomy, content types, CPT, CMS, post, types, custom5 Requires at least: 6. 34 Tags: custom post types, post type, taxonomy, content types, types 5 Requires at least: 6.5 6 6 Tested up to: 6.5 7 Stable tag: 1.1 6.07 Stable tag: 1.17.0 8 8 License: GPL-2.0+ 9 9 Requires PHP: 7.4 … … 32 32 33 33 == Changelog == 34 35 = 1.17.0 - 2024-06-17 = 36 * Added: "sidebars" as a reserved slug for post types. 37 * Added: Blueprint for trying Custom Post Type UI on wordpress.org before installation. 38 * Updated: Reworked javascript files to be more modular with the build process. 34 39 35 40 = 1.16.0 - 2024-04-08 = … … 95 100 * Updated: Plugin branding. 96 101 97 = 1.12.1 - 2022-05-16 = 98 * Fixed: JSON decoding issues around WP-CLI import. 102 == Upgrade Notice == 99 103 100 = 1.12.0 - 2022-05-09 = 101 * Added: Tested on WordPress 6.0. 102 * Added: Auto-check, but not force, "page-attributes" when setting a post type as hierarchical. 103 * Added: "rest_namespace" parameters for both post types and taxonomies. 104 * Added: "register_meta_box_cb" parameter for post types. 105 * Fixed: undefined index notices for "can_export". 106 * Updated: list of reserved taxonomy names with more that are considered reserved. 107 * Updated: readme descriptions and screenshots. 108 109 = 1.11.2 - 2022-03-21 = 110 * Fixed: Unintended reuse of `$delete_with_user` variable and `can_export` option. Props @bogutskyy 111 * Fixed: PHP notices around `sort` array index. 112 113 = 1.11.1 - 2022-03-18 = 114 * Fixed: Errors and warnings around array_key_exists() and bool values 115 116 = 1.11.0 - 2022-03-17 = 117 * Added: "sort" argument for taxonomies. 118 * Added: "can export" argument for post types 119 * Added: New taxonomy labels from WordPress 5.9 120 * Added: Custom option to set "Enter title here" value for post types. 121 * Added: Notes around "exclude from search" argument for post types and taxonomy term archives. 122 * Added: Notes around taxonomy "hierarchical" option regarding category vs tag behavior. 123 * Updated: Reserved post type slugs from recent WordPress releases. 124 * Fixed: PHP warnings around foreach loops in cptui_published_post_format_fix() 125 126 == Upgrade Notice == 104 = 1.17.0 - 2024-06-17 = 105 * Added: "sidebars" as a reserved slug for post types. 106 * Added: Blueprint for trying Custom Post Type UI on wordpress.org before installation. 107 * Updated: Reworked javascript files to be more modular with the build process. 127 108 128 109 = 1.16.0 - 2024-04-08 = … … 188 169 * Updated: Plugin branding. 189 170 190 = 1.12.1 - 2022-05-16 =191 * Fixed: JSON decoding issues around WP-CLI import.192 193 = 1.12.0 - 2022-05-09 =194 * Added: Tested on WordPress 6.0.195 * Added: Auto-check, but not force, "page-attributes" when setting a post type as hierarchical.196 * Added: "rest_namespace" parameters for both post types and taxonomies.197 * Added: "register_meta_box_cb" parameter for post types.198 * Fixed: undefined index notices for "can_export".199 * Updated: list of reserved taxonomy names with more that are considered reserved.200 * Updated: readme descriptions and screenshots.201 202 = 1.11.2 - 2022-03-21 =203 * Fixed: Unintended reuse of `$delete_with_user` variable and `can_export` option. Props @bogutskyy204 * Fixed: PHP notices around `sort` array index.205 206 = 1.11.1 - 2022-03-18 =207 * Fixed: Errors and warnings around array_key_exists() and bool values208 209 = 1.11.0 - 2022-03-17 =210 * Added: "sort" argument for taxonomies.211 * Added: "can export" argument for post types212 * Added: New taxonomy labels from WordPress 5.9213 * Added: Custom option to set "Enter title here" value for post types.214 * Added: Notes around "exclude from search" argument for post types and taxonomy term archives.215 * Added: Notes around taxonomy "hierarchical" option regarding category vs tag behavior.216 * Updated: Reserved post type slugs from recent WordPress releases.217 * Fixed: PHP warnings around foreach loops in cptui_published_post_format_fix()218 219 171 == Installation == 220 172
Note: See TracChangeset
for help on using the changeset viewer.