Plugin Directory

Changeset 3387976


Ignore:
Timestamp:
11/01/2025 09:06:05 AM (5 months ago)
Author:
closemarketing
Message:

Update to version 1.2.1 from GitHub

Location:
frontblocks
Files:
8 edited
1 copied

Legend:

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

    r3387627 r3387976  
    44 * Plugin URI:  https://wordpress.org/plugins/frontblocks/
    55 * Description: Blocks and helpers that extends GeneratePress blocks.
    6  * Version:     1.2.0
     6 * Version:     1.2.1
    77 * Author:      Closemarketing
    88 * Author URI:  https://close.marketing
     
    2727defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2828
    29 define( 'FRBL_VERSION', '1.2.0' );
     29define( 'FRBL_VERSION', '1.2.1' );
    3030define( 'FRBL_PLUGIN', __FILE__ );
    3131define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • frontblocks/tags/1.2.1/includes/Plugin_Main.php

    r3387627 r3387976  
    66 * @author     Closemarketing
    77 * @copyright  2025 Closemarketing
    8  * @version    1.0.3-beta.1
     8 * @version    1.0.3
    99 */
    1010
     
    104104     */
    105105    public function enqueue_scripts() {
    106         $dist_dir = WP_DEBUG ? 'carousel/' : 'dist/';
    107 
    108106        wp_enqueue_style(
    109107            'frontblocks-carousel',
    110             FRBL_PLUGIN_URL . 'assets/' . $dist_dir . 'frontblocks-carousel.css',
     108            FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.css',
    111109            array(),
    112110            FRBL_VERSION
     
    115113        wp_enqueue_script(
    116114            'frontblocks-carousel-custom',
    117             FRBL_PLUGIN_URL . 'assets/' . $dist_dir . ( WP_DEBUG ? 'frontblocks-carousel.js' : 'frontblocks-carousel-min.js' ),
     115            FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.js',
    118116            array( 'frontblocks-carousel' ),
    119117            FRBL_VERSION,
     
    123121        wp_enqueue_script(
    124122            'frontblocks-carousel',
    125             FRBL_PLUGIN_URL . 'assets/dist/glide.min.js',
     123            FRBL_PLUGIN_URL . 'assets/carousel/glide.min.js',
    126124            array(),
    127125            FRBL_VERSION,
  • frontblocks/tags/1.2.1/readme.txt

    r3387627 r3387976  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.2.0
    8 Version: 1.2.0
     7Stable tag: 1.2.1
     8Version: 1.2.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686== Changelog ==
    8787
     88== 1.2.1 ==
     89*   Fixed: Carousel/Slider not working correctly.
     90
    8891== 1.2.0 ==
    8992*   Improved: Settings page.
  • frontblocks/tags/1.2.1/vendor/composer/installed.php

    r3387627 r3387976  
    22    'root' => array(
    33        'name' => 'close/frontblocks',
    4         'pretty_version' => '1.2.0',
    5         'version' => '1.2.0.0',
    6         'reference' => '475e49fd1390a9ac80b95b77c93bf74fcc6266ee',
     4        'pretty_version' => '1.2.1',
     5        'version' => '1.2.1.0',
     6        'reference' => '56a07df581492eb05bd3336b6d4542a20cef839d',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'close/frontblocks' => array(
    14             'pretty_version' => '1.2.0',
    15             'version' => '1.2.0.0',
    16             'reference' => '475e49fd1390a9ac80b95b77c93bf74fcc6266ee',
     14            'pretty_version' => '1.2.1',
     15            'version' => '1.2.1.0',
     16            'reference' => '56a07df581492eb05bd3336b6d4542a20cef839d',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • frontblocks/trunk/frontblocks.php

    r3387627 r3387976  
    44 * Plugin URI:  https://wordpress.org/plugins/frontblocks/
    55 * Description: Blocks and helpers that extends GeneratePress blocks.
    6  * Version:     1.2.0
     6 * Version:     1.2.1
    77 * Author:      Closemarketing
    88 * Author URI:  https://close.marketing
     
    2727defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2828
    29 define( 'FRBL_VERSION', '1.2.0' );
     29define( 'FRBL_VERSION', '1.2.1' );
    3030define( 'FRBL_PLUGIN', __FILE__ );
    3131define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • frontblocks/trunk/includes/Plugin_Main.php

    r3387627 r3387976  
    66 * @author     Closemarketing
    77 * @copyright  2025 Closemarketing
    8  * @version    1.0.3-beta.1
     8 * @version    1.0.3
    99 */
    1010
     
    104104     */
    105105    public function enqueue_scripts() {
    106         $dist_dir = WP_DEBUG ? 'carousel/' : 'dist/';
    107 
    108106        wp_enqueue_style(
    109107            'frontblocks-carousel',
    110             FRBL_PLUGIN_URL . 'assets/' . $dist_dir . 'frontblocks-carousel.css',
     108            FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.css',
    111109            array(),
    112110            FRBL_VERSION
     
    115113        wp_enqueue_script(
    116114            'frontblocks-carousel-custom',
    117             FRBL_PLUGIN_URL . 'assets/' . $dist_dir . ( WP_DEBUG ? 'frontblocks-carousel.js' : 'frontblocks-carousel-min.js' ),
     115            FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.js',
    118116            array( 'frontblocks-carousel' ),
    119117            FRBL_VERSION,
     
    123121        wp_enqueue_script(
    124122            'frontblocks-carousel',
    125             FRBL_PLUGIN_URL . 'assets/dist/glide.min.js',
     123            FRBL_PLUGIN_URL . 'assets/carousel/glide.min.js',
    126124            array(),
    127125            FRBL_VERSION,
  • frontblocks/trunk/readme.txt

    r3387627 r3387976  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.2.0
    8 Version: 1.2.0
     7Stable tag: 1.2.1
     8Version: 1.2.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686== Changelog ==
    8787
     88== 1.2.1 ==
     89*   Fixed: Carousel/Slider not working correctly.
     90
    8891== 1.2.0 ==
    8992*   Improved: Settings page.
  • frontblocks/trunk/vendor/composer/installed.php

    r3387627 r3387976  
    22    'root' => array(
    33        'name' => 'close/frontblocks',
    4         'pretty_version' => '1.2.0',
    5         'version' => '1.2.0.0',
    6         'reference' => '475e49fd1390a9ac80b95b77c93bf74fcc6266ee',
     4        'pretty_version' => '1.2.1',
     5        'version' => '1.2.1.0',
     6        'reference' => '56a07df581492eb05bd3336b6d4542a20cef839d',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'close/frontblocks' => array(
    14             'pretty_version' => '1.2.0',
    15             'version' => '1.2.0.0',
    16             'reference' => '475e49fd1390a9ac80b95b77c93bf74fcc6266ee',
     14            'pretty_version' => '1.2.1',
     15            'version' => '1.2.1.0',
     16            'reference' => '56a07df581492eb05bd3336b6d4542a20cef839d',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.