Plugin Directory

Changeset 3492761


Ignore:
Timestamp:
03/27/2026 03:28:34 PM (20 hours ago)
Author:
dreamtheme
Message:

Release 1.4.1

Location:
better-block-editor
Files:
1 deleted
4 edited
30 copied

Legend:

Unmodified
Added
Removed
  • better-block-editor/tags/1.4.1/Core/BundledAssetsManager.php

    r3492699 r3492761  
    132132
    133133        return wp_add_inline_script( $handle, $js, 'before' );
     134    }
     135
     136    /**
     137     * Backward compatibility method to add inline JS code just after bundle code (see wp_add_inline_script())
     138     *
     139     * @deprecated since version 1.4.0. Use add_inline_js_to_footer() instead.
     140     *
     141     * @param string $bundle_name Bundle name (see self::*_BUNDLE) to add code with appropriate hook
     142     * @param string $js JS code to be added as inline script
     143     *
     144     * @return bool
     145     */
     146    public function add_inline_js_after_bundle( $bundle_name, $js ): bool {
     147        return $this->add_inline_js_to_footer( $bundle_name, $js );
    134148    }
    135149
  • better-block-editor/tags/1.4.1/better-block-editor.php

    r3492699 r3492761  
    55 * Requires at least: 6.8
    66 * Requires PHP:      7.4
    7  * Version:           1.4.0
     7 * Version:           1.4.1
    88 * Author:            Dream-Theme
    99 * License:           GPLv2 or later
     
    2121require_once __DIR__ . '/plugin.php';
    2222
    23 define( 'WPBBE_VERSION', '1.4.0' );
     23define( 'WPBBE_VERSION', '1.4.1' );
    2424
    2525define( 'WPBBE_FILE', __FILE__ );
  • better-block-editor/tags/1.4.1/readme.txt

    r3492699 r3492761  
    55Tested up to:      6.9
    66Requires PHP:      7.4
    7 Stable tag:        1.4.0
     7Stable tag:        1.4.1
    88License:           GPLv2 or later
    99License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    6969* User Guide — [https://docs.wpbbe.io/](https://docs.wpbbe.io/)
    7070== Changelog ==
     71= 1.4.1 (27-03-2026) =
     721. Fixed a fatal error caused by a rare combination of plugins.
    7173= 1.4.0 (27-03-2026) =
    72741. Improved Better Block Editor settings interface.
  • better-block-editor/tags/1.4.1/vendor/composer/installed.php

    r3492699 r3492761  
    22    'root' => array(
    33        'name' => 'dream-theme/better-block-editor',
    4         'pretty_version' => 'v1.4.0',
    5         'version' => '1.4.0.0',
    6         'reference' => '694e99ca742cbf09a53c056940dca8a28f513cd3',
     4        'pretty_version' => 'v1.4.1',
     5        'version' => '1.4.1.0',
     6        'reference' => 'c3e2beb149f1962ace713691709acc16619c7fdc',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'dream-theme/better-block-editor' => array(
    23             'pretty_version' => 'v1.4.0',
    24             'version' => '1.4.0.0',
    25             'reference' => '694e99ca742cbf09a53c056940dca8a28f513cd3',
     23            'pretty_version' => 'v1.4.1',
     24            'version' => '1.4.1.0',
     25            'reference' => 'c3e2beb149f1962ace713691709acc16619c7fdc',
    2626            'type' => 'project',
    2727            'install_path' => __DIR__ . '/../../',
  • better-block-editor/trunk/Core/BundledAssetsManager.php

    r3492699 r3492761  
    132132
    133133        return wp_add_inline_script( $handle, $js, 'before' );
     134    }
     135
     136    /**
     137     * Backward compatibility method to add inline JS code just after bundle code (see wp_add_inline_script())
     138     *
     139     * @deprecated since version 1.4.0. Use add_inline_js_to_footer() instead.
     140     *
     141     * @param string $bundle_name Bundle name (see self::*_BUNDLE) to add code with appropriate hook
     142     * @param string $js JS code to be added as inline script
     143     *
     144     * @return bool
     145     */
     146    public function add_inline_js_after_bundle( $bundle_name, $js ): bool {
     147        return $this->add_inline_js_to_footer( $bundle_name, $js );
    134148    }
    135149
  • better-block-editor/trunk/better-block-editor.php

    r3492699 r3492761  
    55 * Requires at least: 6.8
    66 * Requires PHP:      7.4
    7  * Version:           1.4.0
     7 * Version:           1.4.1
    88 * Author:            Dream-Theme
    99 * License:           GPLv2 or later
     
    2121require_once __DIR__ . '/plugin.php';
    2222
    23 define( 'WPBBE_VERSION', '1.4.0' );
     23define( 'WPBBE_VERSION', '1.4.1' );
    2424
    2525define( 'WPBBE_FILE', __FILE__ );
  • better-block-editor/trunk/readme.txt

    r3492699 r3492761  
    55Tested up to:      6.9
    66Requires PHP:      7.4
    7 Stable tag:        1.4.0
     7Stable tag:        1.4.1
    88License:           GPLv2 or later
    99License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    6969* User Guide — [https://docs.wpbbe.io/](https://docs.wpbbe.io/)
    7070== Changelog ==
     71= 1.4.1 (27-03-2026) =
     721. Fixed a fatal error caused by a rare combination of plugins.
    7173= 1.4.0 (27-03-2026) =
    72741. Improved Better Block Editor settings interface.
  • better-block-editor/trunk/vendor/composer/installed.php

    r3492699 r3492761  
    22    'root' => array(
    33        'name' => 'dream-theme/better-block-editor',
    4         'pretty_version' => 'v1.4.0',
    5         'version' => '1.4.0.0',
    6         'reference' => '694e99ca742cbf09a53c056940dca8a28f513cd3',
     4        'pretty_version' => 'v1.4.1',
     5        'version' => '1.4.1.0',
     6        'reference' => 'c3e2beb149f1962ace713691709acc16619c7fdc',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'dream-theme/better-block-editor' => array(
    23             'pretty_version' => 'v1.4.0',
    24             'version' => '1.4.0.0',
    25             'reference' => '694e99ca742cbf09a53c056940dca8a28f513cd3',
     23            'pretty_version' => 'v1.4.1',
     24            'version' => '1.4.1.0',
     25            'reference' => 'c3e2beb149f1962ace713691709acc16619c7fdc',
    2626            'type' => 'project',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.