Plugin Directory

Changeset 3204543


Ignore:
Timestamp:
12/09/2024 01:33:04 AM (12 months ago)
Author:
dufresnesteven
Message:

Add full stops to comments.

Location:
beauty-box-block/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • beauty-box-block/trunk/plugin.php

    r3203334 r3204543  
    55 * Plugin URI: https://github.com/StevenDufresne/beauty-box-gutenberg-block
    66 * Author: dufresnesteven
    7  * Version: 1.2.1
     7 * Version: 1.2.2
    88 * License: GPL2+
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
     
    1212function gutenberg_beauty_box_register() {
    1313
    14     // Register our block script with WordPress
     14    // Register our block script with WordPress.
    1515    wp_register_script(
    1616        'gutenberg-beauty-box',
     
    1919    );
    2020
    21     // Register our block's base CSS
     21    // Register our block's base CSS.
    2222    wp_register_style(
    2323        'gutenberg-beauty-box-style',
     
    2525    );
    2626
    27     // Register our block's editor-specific CSS
     27    // Register our block's editor-specific CSS.
    2828    wp_register_style(
    2929        'gutenberg-beauty-box-edit-style',
     
    3232    );
    3333
    34     // Enqueue the script in the editor
     34    // Enqueue the script in the editor.
    3535    register_block_type('beauty-box/main-box', array(
    3636        'editor_script' => 'gutenberg-beauty-box',
  • beauty-box-block/trunk/readme.txt

    r3203334 r3204543  
    44Requires at least: 5.0
    55Tested up to: 6.7
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77Requires PHP: 5.2.4
    88License: GPLv2 or later
     
    1919== Changelog ==
    2020
     21= 1.3 =
     22* Add comment.
    2123
    2224= 1.2 =
Note: See TracChangeset for help on using the changeset viewer.