Changeset 3472889
- Timestamp:
- 03/02/2026 04:13:51 PM (4 weeks ago)
- Location:
- slider-blocks
- Files:
-
- 6 edited
- 1 copied
-
tags/2.11.4 (copied) (copied from slider-blocks/trunk)
-
tags/2.11.4/includes/Blocks/BlocksCategory.php (modified) (1 diff)
-
tags/2.11.4/readme.txt (modified) (2 diffs)
-
tags/2.11.4/slider-blocks.php (modified) (2 diffs)
-
trunk/includes/Blocks/BlocksCategory.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/slider-blocks.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slider-blocks/tags/2.11.4/includes/Blocks/BlocksCategory.php
r3469920 r3472889 42 42 * @return array<int, array<string, mixed>> Modified block categories. 43 43 */ 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', 47 57 'title' => __( 'GutSlider Blocks', 'slider-blocks' ), 48 ) ;58 ) ); 49 59 50 return array_merge( array( $new_category ), $categories );60 return $categories; 51 61 } 52 62 } -
slider-blocks/tags/2.11.4/readme.txt
r3472371 r3472889 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 Stable tag: 2.11. 36 Stable tag: 2.11.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 102 102 103 103 == Changelog == 104 105 = 2.11.4 = 106 * Fixed: Bricksbuilder conflict issue 107 104 108 = 2.11.3 = 105 109 * Fixed: Dynamic block fatal error fixed -
slider-blocks/tags/2.11.4/slider-blocks.php
r3472371 r3472889 5 5 * Requires at least: 6.5 6 6 * Requires PHP: 7.4 7 * Version: 2.11. 37 * Version: 2.11.4 8 8 * Author: Binsaifullah 9 9 * License: GPLv2 or later … … 24 24 * @var string 25 25 */ 26 define( 'GUTSLIDER_VERSION', '2.11. 3' );26 define( 'GUTSLIDER_VERSION', '2.11.4' ); 27 27 28 28 /** -
slider-blocks/trunk/includes/Blocks/BlocksCategory.php
r3469920 r3472889 42 42 * @return array<int, array<string, mixed>> Modified block categories. 43 43 */ 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', 47 57 'title' => __( 'GutSlider Blocks', 'slider-blocks' ), 48 ) ;58 ) ); 49 59 50 return array_merge( array( $new_category ), $categories );60 return $categories; 51 61 } 52 62 } -
slider-blocks/trunk/readme.txt
r3472371 r3472889 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 Stable tag: 2.11. 36 Stable tag: 2.11.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 102 102 103 103 == Changelog == 104 105 = 2.11.4 = 106 * Fixed: Bricksbuilder conflict issue 107 104 108 = 2.11.3 = 105 109 * Fixed: Dynamic block fatal error fixed -
slider-blocks/trunk/slider-blocks.php
r3472371 r3472889 5 5 * Requires at least: 6.5 6 6 * Requires PHP: 7.4 7 * Version: 2.11. 37 * Version: 2.11.4 8 8 * Author: Binsaifullah 9 9 * License: GPLv2 or later … … 24 24 * @var string 25 25 */ 26 define( 'GUTSLIDER_VERSION', '2.11. 3' );26 define( 'GUTSLIDER_VERSION', '2.11.4' ); 27 27 28 28 /**
Note: See TracChangeset
for help on using the changeset viewer.