Plugin Directory

Changeset 3056218


Ignore:
Timestamp:
03/21/2024 03:03:18 PM (2 years ago)
Author:
totalpressorg
Message:

5.0.4

Location:
custom-post-types
Files:
75 added
2 edited

Legend:

Unmodified
Added
Removed
  • custom-post-types/trunk/custom-post-types.php

    r3055467 r3056218  
    88Text Domain: custom-post-types
    99Domain Path: /languages/
    10 Version: 5.0.3
     10Version: 5.0.4
    1111*/
    1212
     
    2525    cpt_core();
    2626} catch ( \Exception | \Throwable $e ) {
    27     cpt_ui()->send_feedback( wp_json_encode( $e->getTrace() ) );
     27    $feedback      = array(
     28        'message' => $e->getMessage(),
     29        'trace'   => $e->getTrace(),
     30    );
     31    $feedback_json = wp_json_encode( $feedback, JSON_UNESCAPED_SLASHES );
     32    $feedback_json = str_replace( ABSPATH, '*/', $feedback_json );
     33    cpt_ui()->send_feedback( $feedback_json );
    2834    throw $e;
    2935}
  • custom-post-types/trunk/readme.txt

    r3055467 r3056218  
    55Requires at least: 4.0
    66Tested up to: 6.4
    7 Stable tag: 5.0.3
     7Stable tag: 5.0.4
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    188188== Changelog ==
    189189
     190= 5.0.4 - 2024-03-21 =
     191* FIX: improve plugin bug feedback;
     192
    190193= 5.0.3 - 2024-03-20 =
    191194* FIX: improve plugin bug feedback;
     
    241244
    242245= 4.0.7 - 2023-07-30 =
    243 * Activation/deactivation actions
     246* Activation/deactivation actions;
    244247
    245248= 4.0.6 - 2023-07-28 =
    246 * Performance improvments
     249* Performance improvments;
    247250
    248251= 4.0.5 - 2023-06-30 =
    249 * Check if attachment.sizes.thumbnail.url exists on file field (@dealespaloit)
     252* Check if attachment.sizes.thumbnail.url exists on file field (@dealespaloit);
    250253
    251254= 4.0.4 - 2023-06-12 =
    252 * Fix file field styles inside repeater field (@dealespaloit)
    253 * Prevent multiple type filter on field output
    254 * Post rel / Tax rel output aria-label
    255 
    256 = 4.0.3 =
    257 * Details on registration contents error notices
    258 * Api functions
    259 
    260 = 4.0.2 =
    261 * Support for SEO plugin (thanks to @jitka88)
    262 
    263 = 4.0.1 =
    264 * Add shortcodes for term and option fields
    265 
    266 = 4.0.0 =
    267 * New major release
    268 
    269 = 3.1.2 =
    270 * Announcement of version 4.x.x
    271 
    272 = 3.1.0 =
    273 * Add terms shortcodes to ajax loader after custom template post type changes;
    274 * Add users field groups support;
    275 * Add taxonomies field groups support;
    276 * Add options page field groups support;
    277 
    278 = 3.0.15 =
    279 * Restore UTM url params;
    280 
    281 = 3.0.14 =
    282 * Fixed wp-admin notices bug;
    283 
    284 = 3.0.12 =
    285 * Fixed $ is not a function;
    286 * Up to wp 6.0;
    287 
    288 = 3.0.11 =
    289 * Fix multiple select bug;
    290 * Add parent name to post/term relation field;
    291 
    292 = 3.0.10 =
    293 * Add autoresize option to WYSIWYG editor field type
    294 * Remove placeholder option from WYSIWYG editor field type
    295 * Add post-id field to shortocdes
    296 
    297 = 3.0.9 =
    298 * Fixed required fields (thanks to @kubilaytuglu)
    299 
    300 = 3.0.8 =
    301 * Use core TinyMCE for wysiwyg field type
    302 * Restore php 5.6 compatibility (thanks to @mr.fye)
    303 
    304 = 3.0.7 =
    305 * Fixed repeater bug on field config
    306 
    307 = 3.0.6 =
    308 * Fixed lodash bug (media & customizer screen)
    309 
    310 = 3.0.5 =
    311 * Remove plugin assets from customizer screen
    312 
    313 = 3.0.4 =
    314 * Compatibility for old PHP
    315 
    316 = 3.0.3 =
    317 * Fixed bug in title and count when deleting management content
    318 * Fixed jQuery bug
    319 
    320 = 3.0.2 =
    321 * Customize the permalink base of cpt and taxs
    322 
    323 = 3.0.1 =
    324 * New release of the plugin that introduces many changes
    325 
    326 = 2.1.19 =
    327 * Add hierarchical args for custom taxonomies registration.
    328 * Add custom-fields supports args for custom post types registration.
    329 
    330 = 2.1.18 =
    331 * Add Pointfinder compatibility.
    332 
    333 = 2.1.17 =
    334 * Fix: Add automatic flush rewrite rules for new registered cpt.
    335 
    336 = 2.1.16 =
    337 * Fix “The link you followed has expired.” advice when close the support banner.
    338 
    339 = 2.1.15 =
    340 * Remove "Fantastic plugins notices".
    341 * Improve plugin notices logic.
    342 * Test up WP 5.6.
    343 
    344 = 2.1.14 =
    345 * Fix rewrite rules for created elements.
    346 * Rename some labels.
    347 * Improve notices feature.
    348 
    349 = 2.1.13 =
    350 * Fix double field options (special thanks to @megalux).
    351 
    352 = 2.1.12 =
    353 * Fix double field options (special thanks to @megalux).
    354 
    355 = 2.1.11 =
    356 * Add author supports for created post types (thanks to @athifroihan).
    357 
    358 = 2.1.10 =
    359 * Fix bug when try to save empty meta value (special thanks to @megalux).
    360 
    361 = 2.1.9 =
    362 * Fix bug for required input when edit field groups.
    363 
    364 = 2.1.8 =
    365 * Fix bug on checkbox field type (at least one value is required in the field options).
    366 
    367 = 2.1.7 =
    368 * Add "textarea (no editor)" field type.
    369 
    370 = 2.1.6 =
    371 * Add "textarea + TinyMCE" field type. (REMOVED)
    372 
    373 = 2.1.5 =
    374 * Fix developer website links.
    375 
    376 = 2.1.4 =
    377 * Add Kadence WP themes compatibility.
    378 
    379 = 2.1.3 =
    380 * Fix capabilities bug for custom field (thanks to @orp7).
    381 
    382 = 2.1.2 =
    383 * Add Aardvark compatibility.
    384 * Add Hueman compatibility.
    385 
    386 = 2.1.1 =
    387 * Add Flatsome compatibility.
    388 
    389 = 2.1.0 =
    390 * Fix OceanWP compatibility.
    391 
    392 = 2.0.9 =
    393 * Add BuddyBoss compatibility.
    394 
    395 = 2.0.8 =
    396 * Add Enfold compatibility.
    397 
    398 = 2.0.7 =
    399 * Fix PRO bugs.
    400 
    401 = 2.0.6 =
    402 * Add X theme themes compatibility.
    403 
    404 = 2.0.5 =
    405 * Fix some bugs.
    406 * Add qaengine & secretum themes compatibility.
    407 
    408 = 2.0.4 =
    409 * Fix some bugs.
    410 * Add checkbox list field type.
    411 
    412 = 2.0.3 =
    413 * Fix some bugs.
    414 
    415 = 2.0.2 =
    416 * Fix some bugs.
    417 
    418 = 2.0.1 =
    419 * Add sanitize function to content id value.
    420 
    421 = 2.0.0 =
    422 * Add API support.
    423 * New UI.
    424 * Add id field for custom content.
    425 * Move metadata from child array to unique metadata.
    426 
    427 = 1.3.7 =
    428 * Fix hierarchical bug for cpt (thanks to @llis).
    429 
    430 = 1.3.6 =
    431 * Fix child themes bug (thanks to @ecoist).
    432 
    433 = 1.3.5 =
    434 * Update template core functions.
    435 
    436 = 1.3.4 =
    437 * Add while(){} theme compatibility for custom templates.
    438 
    439 = 1.3.3 =
    440 * Add OceanWP theme compatibility for custom templates.
    441 
    442 = 1.3.2 =
    443 * Add do_shortcode() for custom field "content".
    444 
    445 = 1.3.1 =
    446 * Add "Advanced views" for tax customizations.
    447 
    448 = 1.3.0 =
    449 * Added custom field: "Relationship between posts".
    450 * Customized templates also for "Articles" and "Pages".
    451 * Custom fields management optimization.
    452 
    453 = 1.2.7 =
    454 * Add custom fields block for Gutenberg.
    455 
    456 = 1.2.6 =
    457 * Add Blocksy theme compatibility for custom templates and fixes same bugs.
    458 
    459 = 1.2.5 =
    460 * Enable builder for template, fixed custom template core, fixed admin notices for template.
    461 
    462 = 1.2.4 =
    463 * Enabled single post taxonomies metabox for Gutenberg.
    464 
    465 = 1.2.3 =
    466 * Enabled Gutenberg for custom templates.
    467 
    468 = 1.2.2 =
    469 * Fix date/time output format like general options, add show_in_rest support for gutenberg.
    470 
    471 = 1.2.1 =
    472 * Add "Advanced views" for advanced customizations.
    473 
    474 = 1.2.0 =
    475 * Add Astra theme compatibility for custom templates.
    476 
    477 = 1.1.2 =
    478 * The custom templates functionality has been extended to 70% of the themes.
    479 
    480 = 1.1.1 =
    481 * fix custom templates bugs.
    482 
    483 = 1.1.0 =
    484 * BETA. Add custom templates compatibility only for AVADA theme.
    485 
    486 = 1.0.6 =
    487 * Text corrections.
    488 
    489 = 1.0.5 =
    490 * Fixed some bugs.
    491 
    492 = 1.0.4 =
    493 * Fixed a javascript bug when multiple upload file input are in same post type create/edit page.
    494 
    495 = 1.0.3 =
    496 * Fixed some bugs.
    497 
    498 = 1.0.2 =
    499 * Fixed some bugs.
    500 * Add php dev functions.
    501 * Update readme.txt of the plugin.
    502 
    503 = 1.0.1 =
    504 * Introduce file fields.
    505 * Fixed some bugs.
    506 * Update readme.txt of the plugin.
    507 
    508 = 1.0.0 =
    509 * Introduce fields manager.
    510 * Fixed some bugs.
    511 * Update readme.txt of the plugin.
    512 
    513 = 0.2.0 =
    514 * First stable version.
    515 * Fixed some bugs.
    516 * Added columns to the dashboard.
    517 * Fixed the sanitizes function for post types and taxonomies names.
    518 * Update readme.txt of the plugin.
    519 
    520 = 0.1.3 =
    521 * Fix bugs and add modal for support us.
    522 
    523 = 0.1.2 =
    524 * Fix load_plugin_textdomain and add Italian lang (Language and Bug).
    525 
    526 = 0.1.1 =
    527 * First fix (Language and Bug).
    528 
    529 = 0.1.0 =
    530 * Improve ux.
     255* Fix file field styles inside repeater field (@dealespaloit);
     256* Prevent multiple type filter on field output;
     257* Post rel / Tax rel output aria-label;
     258
     259= Previous versions changelog =
     260* Refer to v5.0.0 readme.txt (https://downloads.wordpress.org/plugin/custom-post-types.5.0.0.zip);
    531261
    532262== Frequently Asked Questions ==
Note: See TracChangeset for help on using the changeset viewer.