Plugin Directory

Changeset 3472889


Ignore:
Timestamp:
03/02/2026 04:13:51 PM (4 weeks ago)
Author:
binsaifullah
Message:

Update to version 2.11.4 from GitHub

Location:
slider-blocks
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • slider-blocks/tags/2.11.4/includes/Blocks/BlocksCategory.php

    r3469920 r3472889  
    4242     * @return array<int, array<string, mixed>> Modified block categories.
    4343     */
    44     public function register_block_category( array $categories, \WP_Block_Editor_Context $context ): array {
    45         $new_category = array(
    46             'slug'  => 'slider-blocks',
     44    // public function register_block_category( array $categories, \WP_Block_Editor_Context $context ): array {
     45    //  $new_category = array(
     46    //      'slug'  => 'slider-blocks',
     47    //      'title' => __( 'GutSlider Blocks', 'slider-blocks' ),
     48    //  );
     49
     50    //  return array_merge( array( $new_category ), $categories );
     51    // }
     52
     53    public function register_block_category( $categories, $post ) {
     54   
     55        array_unshift( $categories, array(
     56            'slug'  => 'slider-blocks',
    4757            'title' => __( 'GutSlider Blocks', 'slider-blocks' ),
    48         );
     58        ) );
    4959
    50         return array_merge( array( $new_category ), $categories );
     60        return $categories;
    5161    }
    5262}
  • slider-blocks/tags/2.11.4/readme.txt

    r3472371 r3472889  
    44Requires at least: 6.5
    55Tested up to: 6.9
    6 Stable tag: 2.11.3
     6Stable tag: 2.11.4
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    102102
    103103== Changelog ==
     104
     105= 2.11.4 =
     106* Fixed: Bricksbuilder conflict issue
     107
    104108= 2.11.3 =
    105109* Fixed: Dynamic block fatal error fixed
  • slider-blocks/tags/2.11.4/slider-blocks.php

    r3472371 r3472889  
    55 * Requires at least: 6.5
    66 * Requires PHP:      7.4
    7  * Version:           2.11.3
     7 * Version:           2.11.4
    88 * Author:            Binsaifullah
    99 * License:           GPLv2 or later
     
    2424 * @var string
    2525 */
    26 define( 'GUTSLIDER_VERSION', '2.11.3' );
     26define( 'GUTSLIDER_VERSION', '2.11.4' );
    2727
    2828/**
  • slider-blocks/trunk/includes/Blocks/BlocksCategory.php

    r3469920 r3472889  
    4242     * @return array<int, array<string, mixed>> Modified block categories.
    4343     */
    44     public function register_block_category( array $categories, \WP_Block_Editor_Context $context ): array {
    45         $new_category = array(
    46             'slug'  => 'slider-blocks',
     44    // public function register_block_category( array $categories, \WP_Block_Editor_Context $context ): array {
     45    //  $new_category = array(
     46    //      'slug'  => 'slider-blocks',
     47    //      'title' => __( 'GutSlider Blocks', 'slider-blocks' ),
     48    //  );
     49
     50    //  return array_merge( array( $new_category ), $categories );
     51    // }
     52
     53    public function register_block_category( $categories, $post ) {
     54   
     55        array_unshift( $categories, array(
     56            'slug'  => 'slider-blocks',
    4757            'title' => __( 'GutSlider Blocks', 'slider-blocks' ),
    48         );
     58        ) );
    4959
    50         return array_merge( array( $new_category ), $categories );
     60        return $categories;
    5161    }
    5262}
  • slider-blocks/trunk/readme.txt

    r3472371 r3472889  
    44Requires at least: 6.5
    55Tested up to: 6.9
    6 Stable tag: 2.11.3
     6Stable tag: 2.11.4
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    102102
    103103== Changelog ==
     104
     105= 2.11.4 =
     106* Fixed: Bricksbuilder conflict issue
     107
    104108= 2.11.3 =
    105109* Fixed: Dynamic block fatal error fixed
  • slider-blocks/trunk/slider-blocks.php

    r3472371 r3472889  
    55 * Requires at least: 6.5
    66 * Requires PHP:      7.4
    7  * Version:           2.11.3
     7 * Version:           2.11.4
    88 * Author:            Binsaifullah
    99 * License:           GPLv2 or later
     
    2424 * @var string
    2525 */
    26 define( 'GUTSLIDER_VERSION', '2.11.3' );
     26define( 'GUTSLIDER_VERSION', '2.11.4' );
    2727
    2828/**
Note: See TracChangeset for help on using the changeset viewer.