Plugin Directory

Changeset 3235557


Ignore:
Timestamp:
02/05/2025 04:33:46 PM (14 months ago)
Author:
Eoxia
Message:

1.1.0 commit

Location:
eo-blocks
Files:
263 added
4 edited

Legend:

Unmodified
Added
Removed
  • eo-blocks/trunk/eo-blocks.php

    r3170859 r3235557  
    55 * Requires at least: 6.6.2
    66 * Requires PHP:      7.0
    7  * Version:           1.0.0
     7 * Version:           1.1.0
    88 * Author:            Eoxia
     9 * Author URI:        https://www.eoxia.com
    910 * License:           GPL-3.0-or-later
    1011 * License URI:       https://www.gnu.org/licenses/gpl-3.0.html
     
    1920
    2021define( 'EO_BLOCKS_BASEFILE', __FILE__ );
    21 define( 'EO_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
    22 define( 'EO_BLOCKS_PATH', dirname( __FILE__ ) );
    23 define( 'EO_BLOCKS_VERSION', '0.1.0' );
     22define( 'EO_BLOCKS_URL', plugin_dir_url( __FILE__ ) );
     23define( 'EO_BLOCKS_PATH', plugin_dir_path( __FILE__ ) );
     24define( 'EO_BLOCKS_VERSION', '1.0.0' );
     25
     26/**
     27 * Autoload the php files.
     28 */
     29require_once EO_BLOCKS_PATH . '/includes/autoload.php';
     30
     31use EoBlocks\Includes\Eoblocks;
     32
     33$eoblocks = new Eoblocks();
    2434
    2535/**
  • eo-blocks/trunk/readme.txt

    r3170859 r3235557  
    22Contributors:      Eoxia
    33Tags:              block, gutenberg
    4 Tested up to:      6.6.2
    5 Stable tag:        1.0.0
     4Tested up to:      6.7.1
     5Stable tag:        1.1.0
    66License:           GPL-3.0
    77License URI:       https://www.gnu.org/licenses/gpl-3.0.html
     
    3333== Changelog ==
    3434
     35= 1.1.0 =
     36* New block Carousel.
     37* New block Summary.
     38* New block Sticky.
     39* New block FAQ.
     40* New block Accordion.
     41* New block Digirisk - List risk.
     42* Add new block category named "EO Blocks" containing all blocks.
     43* Fix bug notice in settings page.
     44* Fix fatal error with autoloading file.
     45
    3546= 1.0.0 =
    3647* Release
     48
     49== Upgrade Notice ==
     50
     51= 1.1.0 =
     52A lot of new blocks added.
     53
     54= 1.0.0 =
     55Release of the plugin.
Note: See TracChangeset for help on using the changeset viewer.