Plugin Directory

Changeset 3065167


Ignore:
Timestamp:
04/05/2024 03:51:53 AM (2 years ago)
Author:
morganhvidt
Message:

Update 3.1.1

Location:
conditional-blocks
Files:
38 added
5 edited

Legend:

Unmodified
Added
Removed
  • conditional-blocks/trunk/conditional-blocks.php

    r3037642 r3065167  
    66 * Description: Conditionally change the visibility of WordPress Blocks for any reason.
    77 * Author: Conditional Blocks
    8  * Version: 3.1.0
     8 * Version: 3.1.1
    99 * License: GPL2+
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
     
    1212 *
    1313 * Requires at least:   5.5
    14  * Requires PHP:        7.0
     14 * Requires PHP:        7.4
    1515 *
    1616 * @package conditional_blocks
     
    3535 */
    3636if ( ! defined( 'CONDITIONAL_BLOCKS_VERSION' ) ) {
    37     define( 'CONDITIONAL_BLOCKS_VERSION', '3.1.0' );
     37    define( 'CONDITIONAL_BLOCKS_VERSION', '3.1.1' );
    3838}
    3939
     
    6565        $this->constants = array(
    6666            'name' => 'Conditional Blocks',
    67             'version' => '3.1.0',
     67            'version' => '3.1.1',
    6868            'slug' => plugin_basename( __FILE__, ' . php' ),
    6969            'base' => plugin_basename( __FILE__ ),
     
    108108        require_once plugin_dir_path( __FILE__ ) . 'integrations/advanced-custom-fields.php';
    109109        require_once plugin_dir_path( __FILE__ ) . 'integrations/paid-memberships-pro.php';
     110        require_once plugin_dir_path( __FILE__ ) . 'integrations/meta-box.php';
    110111    }
    111112
  • conditional-blocks/trunk/integrations/advanced-custom-fields.php

    r3037642 r3065167  
    33    private $is_acf_active = false;
    44    private $is_pro = false;
     5    private $tested_version = '6.2.8';
    56
    67    public function __construct() {
  • conditional-blocks/trunk/integrations/easy-digital-downloads.php

    r3037642 r3065167  
    33    private $is_edd_active = false;
    44    private $is_pro = false;
     5    private $tested_version = '3.2.11';
    56
    67    public function __construct() {
  • conditional-blocks/trunk/integrations/paid-memberships-pro.php

    r3037642 r3065167  
    33    private $is_pmpro_active = false;
    44    private $is_pro = false;
     5    private $tested_version = '3.0.1';
    56
    67    public function __construct() {
  • conditional-blocks/trunk/readme.txt

    r3037642 r3065167  
    44Tags: visibility, content, control, restrict, hide
    55Requires at least: 5.5
    6 Tested up to: 6.4
    7 Stable tag: 3.1.0
    8 Requires PHP: 7.0
     6Tested up to: 6.5
     7Stable tag: 3.1.1
     8Requires PHP: 7.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    134134* [Blog](https://conditionalblocks.com/blog?utm_source=wporg&utm_medium=referral&utm_campaign=readme): Read our guides and tutorials.
    135135* [Website](https://conditionalblocks.com/?utm_source=wporg&utm_medium=referral&utm_campaign=readme): Find out more about us and the PRO version.
    136 * [X (Twitter)](https://twitter.com/ConditionalBloc): Follow us on X.
     136* [X (Twitter)](https://twitter.com/ConditionalWP): Follow us on X.
    137137
    138138## MORE Block Plugins
     
    256256== Changelog ==
    257257
     258= 3.1.1 =
     259
     260Changes:
     261
     262* WordPress 6.5 Ready
     263* Improved PHP 8.3 support (Fixed notices)
     264* Fixed User Meta condition when no meta data requires checking.
     265* Improved the Post IDs condition
     266* Improved the Query String condition
     267* Minimum PHP version set to 7.4
     268
     269New:
     270* Metabox integration - Value of custom fields [PRO]
     271
    258272= 3.1.0 =
    259273
Note: See TracChangeset for help on using the changeset viewer.