Plugin Directory

Changeset 3367190


Ignore:
Timestamp:
09/24/2025 12:18:33 PM (5 months ago)
Author:
shaikhaezaz80
Message:

V 3.0

Location:
fd-buttons-gutenberg/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fd-buttons-gutenberg/trunk/fd-buttons-gutenberg.php

    r3250878 r3367190  
    55 * Author:          FlickDevs
    66 * Author URI:      https://flickdevs.com/
    7  * Version:         2.0
     7 * Version:         3.0
    88 * Description:     Additional button styles and options of Button Block for Gutenberg/Block Editor. Best for marketing page, sales funnel, landing pages and call-to-action links when you create sales page.
    99 *
     
    1515 *
    1616 * Text Domain:     fd-buttons-gutenberg
     17 * License:     GPLv2 or later
     18 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1719 */
    1820/**
  • fd-buttons-gutenberg/trunk/readme.txt

    r3250878 r3367190  
    1 === Buttons for Gutenberg ===
     1=== Buttons For Gutenberg ===
    22Contributors: flickdevs, shaikhaezaz80, jpkaushik
    3 Donate link: paypal.me/FlickDevs
    4 Tags: gutenberg, blocks, gutenberg blocks editor, block, buttons block for gutenberg, marketing buttons, sales page buttons, funnel buttons, block editor buttons
     3Donate link: https://paypal.me/FlickDevs
     4Tags: gutenberg, blocks, buttons, block-editor, marketing
    55Requires at least: 5.9
    6 Requires PHP: 7.0 or higher
    7 Tested up to: 6.7.2
    8 Stable tag: 2.0
     6Requires PHP: 7.0
     7Tested up to: 6.8
     8Stable tag: 3.0
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Additional button styles and options of Button Block for Gutenberg/Block Editor. Best for marketing page, sales funnel, landing pages and call-to-action links when you create sales page.
     12Add advanced button styles and options to the WordPress Block Editor for marketing pages and call-to-action links.
    1313
    1414
     
    3737== Changelog ==
    3838
     39= 3.0 =
     40* Minor fixes
     41
    3942= 2.0 =
    4043* Compatibility with latest WordPress version
  • fd-buttons-gutenberg/trunk/src/init.php

    r2011020 r3367190  
    2626        'buttons-fdgb-style-css', // Handle.
    2727        plugins_url( 'dist/blocks.style.build.css', dirname( __FILE__ ) ), // Block style CSS.
    28         array( 'wp-editor' )   
     28        array( 'wp-editor' ), '1.0.0'   
    2929    );
    3030} // End function buttons_fdgb_block_assets().
     
    4040 */
    4141function buttons_fdgb_load_text_domain() {
    42     load_plugin_textdomain( 'FDBFG', false, basename( dirname( __FILE__ ) ) . '/languages' );
     42    //load_plugin_textdomain( 'FDBFG', false, basename( dirname( __FILE__ ) ) . '/languages' );
    4343}
    4444add_action( 'plugins_loaded', 'buttons_fdgb_load_text_domain' );
     
    5858        'buttons-fdgb-block-js', // Handle.
    5959        plugins_url( '/dist/blocks.build.js', dirname( __FILE__ ) ), // Block.build.js: We register the block here. Built with Webpack.
    60         array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ),        
     60        array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), '1.0.0' ,
    6161        true // Enqueue the script in the footer.
    6262    );
     
    6666        'buttons-fdgb-block-editor-css', // Handle.
    6767        plugins_url( 'dist/blocks.editor.build.css', dirname( __FILE__ ) ), // Block editor CSS.
    68         array( 'wp-edit-blocks' ) // Dependency to include the CSS after it.       
     68        array( 'wp-edit-blocks' ), '1.0.0' // Dependency to include the CSS after it.       
    6969    ); 
    7070} // End function buttons_fdgb_editor_assets().
Note: See TracChangeset for help on using the changeset viewer.