Plugin Directory

Changeset 3267148


Ignore:
Timestamp:
04/05/2025 05:54:50 AM (9 months ago)
Author:
aurooba
Message:

release 0.1.3

Location:
superlist-block
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • superlist-block/tags/0.1.3/readme.txt

    r3267137 r3267148  
    55Tested up to:      6.7.2
    66Requires PHP:      7.0
    7 Stable tag:        0.1.1
     7Stable tag:        0.1.3
    88License:           GPL-2.0-or-later
    99License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    5959== Changelog ==
    6060
     61= 0.1.3 =
     62* Fix semantic output for lists without markers
     63* Mark plugin as tested with WordPress 6.7.2
     64
    6165= 0.1.1 =
    6266* Fix registration bug that was causing the block to not install correctly
  • superlist-block/tags/0.1.3/superlist-block.php

    r3267137 r3267148  
    55 * Requires at least: 5.9
    66 * Requires PHP:      7.0
    7  * Version:           0.1.1
     7 * Version:           0.1.3
    88 * Author:            Aurooba Ahmed
    99 * Author URI:        https://aurooba.com
     
    1212 * Text Domain:       superlist-block
    1313 *
    14  * @package           superlist-block
     14 * @package superlist-block
    1515 */
    1616
    17 if ( ! defined( 'SUPERLIST_BLOCK_PLUGIN_FILE' ) ) {
    18     define( 'SUPERLIST_BLOCK_PLUGIN_FILE', __FILE__ );
     17if (! defined('SUPERLIST_BLOCK_PLUGIN_FILE') ) {
     18    define('SUPERLIST_BLOCK_PLUGIN_FILE', __FILE__);
    1919}
    2020
     
    2626 * @see https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/writing-your-first-block-type/
    2727 */
    28 function create_block_superlist_block_block_init() {
    29     register_block_type( plugin_dir_path( SUPERLIST_BLOCK_PLUGIN_FILE ) . 'build/superlist' );
    30     register_block_type( plugin_dir_path( SUPERLIST_BLOCK_PLUGIN_FILE ) . 'build/superlist-item' );
     28function create_block_superlist_block_block_init()
     29{
     30    register_block_type(plugin_dir_path(SUPERLIST_BLOCK_PLUGIN_FILE) . 'build/superlist');
     31    register_block_type(plugin_dir_path(SUPERLIST_BLOCK_PLUGIN_FILE) . 'build/superlist-item');
    3132
    32     // Load available translations.
    33     wp_set_script_translations( 'createwithrani-superlist-block-editor-script-js', 'superlist-block' );
     33    // Load available translations.
     34    wp_set_script_translations('createwithrani-superlist-block-editor-script-js', 'superlist-block');
    3435}
    35 add_action( 'init', 'create_block_superlist_block_block_init' );
     36add_action('init', 'create_block_superlist_block_block_init');
  • superlist-block/trunk/readme.txt

    r3267129 r3267148  
    55Tested up to:      6.7.2
    66Requires PHP:      7.0
    7 Stable tag:        0.1.1
     7Stable tag:        0.1.3
    88License:           GPL-2.0-or-later
    99License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    5959== Changelog ==
    6060
     61= 0.1.3 =
     62* Fix semantic output for lists without markers
     63* Mark plugin as tested with WordPress 6.7.2
     64
    6165= 0.1.1 =
    6266* Fix registration bug that was causing the block to not install correctly
  • superlist-block/trunk/superlist-block.php

    r2896079 r3267148  
    55 * Requires at least: 5.9
    66 * Requires PHP:      7.0
    7  * Version:           0.1.1
     7 * Version:           0.1.3
    88 * Author:            Aurooba Ahmed
    99 * Author URI:        https://aurooba.com
     
    1212 * Text Domain:       superlist-block
    1313 *
    14  * @package           superlist-block
     14 * @package superlist-block
    1515 */
    1616
    17 if ( ! defined( 'SUPERLIST_BLOCK_PLUGIN_FILE' ) ) {
    18     define( 'SUPERLIST_BLOCK_PLUGIN_FILE', __FILE__ );
     17if (! defined('SUPERLIST_BLOCK_PLUGIN_FILE') ) {
     18    define('SUPERLIST_BLOCK_PLUGIN_FILE', __FILE__);
    1919}
    2020
     
    2626 * @see https://developer.wordpress.org/block-editor/how-to-guides/block-tutorial/writing-your-first-block-type/
    2727 */
    28 function create_block_superlist_block_block_init() {
    29     register_block_type( plugin_dir_path( SUPERLIST_BLOCK_PLUGIN_FILE ) . 'build/superlist' );
    30     register_block_type( plugin_dir_path( SUPERLIST_BLOCK_PLUGIN_FILE ) . 'build/superlist-item' );
     28function create_block_superlist_block_block_init()
     29{
     30    register_block_type(plugin_dir_path(SUPERLIST_BLOCK_PLUGIN_FILE) . 'build/superlist');
     31    register_block_type(plugin_dir_path(SUPERLIST_BLOCK_PLUGIN_FILE) . 'build/superlist-item');
    3132
    32     // Load available translations.
    33     wp_set_script_translations( 'createwithrani-superlist-block-editor-script-js', 'superlist-block' );
     33    // Load available translations.
     34    wp_set_script_translations('createwithrani-superlist-block-editor-script-js', 'superlist-block');
    3435}
    35 add_action( 'init', 'create_block_superlist_block_block_init' );
     36add_action('init', 'create_block_superlist_block_block_init');
Note: See TracChangeset for help on using the changeset viewer.