Plugin Directory

Changeset 3365818


Ignore:
Timestamp:
09/22/2025 12:27:53 PM (6 months ago)
Author:
closemarketing
Message:

Update to version 1.0.3 from GitHub

Location:
frontblocks
Files:
146 added
12 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • frontblocks/tags/1.0.3/frontblocks.php

    r3349454 r3365818  
    44 * Plugin URI:  https://wordpress.org/plugins/frontblocks/
    55 * Description: Blocks and helpers that extends GeneratePress blocks.
    6  * Version:     1.0.2
     6 * Version:     1.0.3
    77 * Author:      Closemarketing
    88 * Author URI:  https://close.marketing
     
    2727defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2828
    29 define( 'FRBL_VERSION', '1.0.2' );
     29define( 'FRBL_VERSION', '1.0.3' );
    3030define( 'FRBL_PLUGIN', __FILE__ );
    3131define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    3232define( 'FRBL_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    3333
    34 // Carousel.
    35 require_once FRBL_PLUGIN_PATH . 'includes/carousel/frontblocks-carousel.php';
     34// Load Composer autoloader.
     35if ( file_exists( FRBL_PLUGIN_PATH . 'vendor/autoload.php' ) ) {
     36    require_once FRBL_PLUGIN_PATH . 'vendor/autoload.php';
     37}
    3638
    37 // Animations.
    38 require_once FRBL_PLUGIN_PATH . 'includes/animations/frontblocks-animations.php';
    39 
    40 // Sticky Column.
    41 require_once FRBL_PLUGIN_PATH . 'includes/sticky-column/frontblocks-sticky-column.php';
    42 
    43 // Gallery.
    44 require_once FRBL_PLUGIN_PATH . 'includes/gallery/frontblocks-gallery.php';
    45 
    46 // Insert Post Block.
    47 require_once FRBL_PLUGIN_PATH . 'includes/post/frontblocks-insert-post.php';
     39// Initialize the plugin.
     40FrontBlocks\Plugin_Main::get_instance();
  • frontblocks/tags/1.0.3/readme.txt

    r3349454 r3365818  
    11=== FrontBlocks for GeneratePress ===
    2 Contributors: davidperez, sacrajaimez, alexbreagarcia, matiasquero, amulero, mit2sumit
     2Contributors: davidperez, sacrajaimez, alexbreagarcia, matiasquero, amulero, mit2sumit, alexcm13
    33Tags: carrusel, slider, lightweight, generatepress
    44Donate link: https://close.marketing/go/donate/
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.0.2
    8 Version: 1.0.2
     7Stable tag: 1.0.3
     8Version: 1.0.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5656Display content from other posts, pages, or custom post types. Search and select any published content to display its title as H2 and full content. Perfect for creating dynamic content sections without duplicating content.
    5757
     58**Testimonials:**
     59Display testimonials from other posts, pages, or custom post types. Search and select any published content to display its title as H2 and full content. Perfect for creating dynamic content sections without duplicating content.
     60
     61Shortcode: [frontblocks_testimonials_carousel]
     62
    5863Others Plugins:
    5964- [Closemarketing Plugins](https://profiles.wordpress.org/closemarketing/#content-plugins)
     
    6974
    7075== Changelog ==
     76= 1.0.3 =
     77*   Added: Settings page and simple testimonials feature.
     78*   Fixed: interaction with Gravity Forms.
     79*   Fixed: not rendering correctly the content of the insert post block.
     80
    7181= 1.0.1 & 1.0.2 =
    7282*   Fixed: options for carousel/slider not showing.
  • frontblocks/trunk/frontblocks.php

    r3349454 r3365818  
    44 * Plugin URI:  https://wordpress.org/plugins/frontblocks/
    55 * Description: Blocks and helpers that extends GeneratePress blocks.
    6  * Version:     1.0.2
     6 * Version:     1.0.3
    77 * Author:      Closemarketing
    88 * Author URI:  https://close.marketing
     
    2727defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2828
    29 define( 'FRBL_VERSION', '1.0.2' );
     29define( 'FRBL_VERSION', '1.0.3' );
    3030define( 'FRBL_PLUGIN', __FILE__ );
    3131define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    3232define( 'FRBL_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    3333
    34 // Carousel.
    35 require_once FRBL_PLUGIN_PATH . 'includes/carousel/frontblocks-carousel.php';
     34// Load Composer autoloader.
     35if ( file_exists( FRBL_PLUGIN_PATH . 'vendor/autoload.php' ) ) {
     36    require_once FRBL_PLUGIN_PATH . 'vendor/autoload.php';
     37}
    3638
    37 // Animations.
    38 require_once FRBL_PLUGIN_PATH . 'includes/animations/frontblocks-animations.php';
    39 
    40 // Sticky Column.
    41 require_once FRBL_PLUGIN_PATH . 'includes/sticky-column/frontblocks-sticky-column.php';
    42 
    43 // Gallery.
    44 require_once FRBL_PLUGIN_PATH . 'includes/gallery/frontblocks-gallery.php';
    45 
    46 // Insert Post Block.
    47 require_once FRBL_PLUGIN_PATH . 'includes/post/frontblocks-insert-post.php';
     39// Initialize the plugin.
     40FrontBlocks\Plugin_Main::get_instance();
  • frontblocks/trunk/readme.txt

    r3349454 r3365818  
    11=== FrontBlocks for GeneratePress ===
    2 Contributors: davidperez, sacrajaimez, alexbreagarcia, matiasquero, amulero, mit2sumit
     2Contributors: davidperez, sacrajaimez, alexbreagarcia, matiasquero, amulero, mit2sumit, alexcm13
    33Tags: carrusel, slider, lightweight, generatepress
    44Donate link: https://close.marketing/go/donate/
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.0.2
    8 Version: 1.0.2
     7Stable tag: 1.0.3
     8Version: 1.0.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5656Display content from other posts, pages, or custom post types. Search and select any published content to display its title as H2 and full content. Perfect for creating dynamic content sections without duplicating content.
    5757
     58**Testimonials:**
     59Display testimonials from other posts, pages, or custom post types. Search and select any published content to display its title as H2 and full content. Perfect for creating dynamic content sections without duplicating content.
     60
     61Shortcode: [frontblocks_testimonials_carousel]
     62
    5863Others Plugins:
    5964- [Closemarketing Plugins](https://profiles.wordpress.org/closemarketing/#content-plugins)
     
    6974
    7075== Changelog ==
     76= 1.0.3 =
     77*   Added: Settings page and simple testimonials feature.
     78*   Fixed: interaction with Gravity Forms.
     79*   Fixed: not rendering correctly the content of the insert post block.
     80
    7181= 1.0.1 & 1.0.2 =
    7282*   Fixed: options for carousel/slider not showing.
Note: See TracChangeset for help on using the changeset viewer.