Changeset 3387976
- Timestamp:
- 11/01/2025 09:06:05 AM (5 months ago)
- Location:
- frontblocks
- Files:
-
- 8 edited
- 1 copied
-
tags/1.2.1 (copied) (copied from frontblocks/trunk)
-
tags/1.2.1/frontblocks.php (modified) (2 diffs)
-
tags/1.2.1/includes/Plugin_Main.php (modified) (4 diffs)
-
tags/1.2.1/readme.txt (modified) (2 diffs)
-
tags/1.2.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/frontblocks.php (modified) (2 diffs)
-
trunk/includes/Plugin_Main.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontblocks/tags/1.2.1/frontblocks.php
r3387627 r3387976 4 4 * Plugin URI: https://wordpress.org/plugins/frontblocks/ 5 5 * Description: Blocks and helpers that extends GeneratePress blocks. 6 * Version: 1.2. 06 * Version: 1.2.1 7 7 * Author: Closemarketing 8 8 * Author URI: https://close.marketing … … 27 27 defined( 'ABSPATH' ) || die( 'No script kiddies please!' ); 28 28 29 define( 'FRBL_VERSION', '1.2. 0' );29 define( 'FRBL_VERSION', '1.2.1' ); 30 30 define( 'FRBL_PLUGIN', __FILE__ ); 31 31 define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
frontblocks/tags/1.2.1/includes/Plugin_Main.php
r3387627 r3387976 6 6 * @author Closemarketing 7 7 * @copyright 2025 Closemarketing 8 * @version 1.0.3 -beta.18 * @version 1.0.3 9 9 */ 10 10 … … 104 104 */ 105 105 public function enqueue_scripts() { 106 $dist_dir = WP_DEBUG ? 'carousel/' : 'dist/';107 108 106 wp_enqueue_style( 109 107 'frontblocks-carousel', 110 FRBL_PLUGIN_URL . 'assets/ ' . $dist_dir . 'frontblocks-carousel.css',108 FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.css', 111 109 array(), 112 110 FRBL_VERSION … … 115 113 wp_enqueue_script( 116 114 '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', 118 116 array( 'frontblocks-carousel' ), 119 117 FRBL_VERSION, … … 123 121 wp_enqueue_script( 124 122 'frontblocks-carousel', 125 FRBL_PLUGIN_URL . 'assets/ dist/glide.min.js',123 FRBL_PLUGIN_URL . 'assets/carousel/glide.min.js', 126 124 array(), 127 125 FRBL_VERSION, -
frontblocks/tags/1.2.1/readme.txt
r3387627 r3387976 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.2. 08 Version: 1.2. 07 Stable tag: 1.2.1 8 Version: 1.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 == Changelog == 87 87 88 == 1.2.1 == 89 * Fixed: Carousel/Slider not working correctly. 90 88 91 == 1.2.0 == 89 92 * Improved: Settings page. -
frontblocks/tags/1.2.1/vendor/composer/installed.php
r3387627 r3387976 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
frontblocks/trunk/frontblocks.php
r3387627 r3387976 4 4 * Plugin URI: https://wordpress.org/plugins/frontblocks/ 5 5 * Description: Blocks and helpers that extends GeneratePress blocks. 6 * Version: 1.2. 06 * Version: 1.2.1 7 7 * Author: Closemarketing 8 8 * Author URI: https://close.marketing … … 27 27 defined( 'ABSPATH' ) || die( 'No script kiddies please!' ); 28 28 29 define( 'FRBL_VERSION', '1.2. 0' );29 define( 'FRBL_VERSION', '1.2.1' ); 30 30 define( 'FRBL_PLUGIN', __FILE__ ); 31 31 define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
frontblocks/trunk/includes/Plugin_Main.php
r3387627 r3387976 6 6 * @author Closemarketing 7 7 * @copyright 2025 Closemarketing 8 * @version 1.0.3 -beta.18 * @version 1.0.3 9 9 */ 10 10 … … 104 104 */ 105 105 public function enqueue_scripts() { 106 $dist_dir = WP_DEBUG ? 'carousel/' : 'dist/';107 108 106 wp_enqueue_style( 109 107 'frontblocks-carousel', 110 FRBL_PLUGIN_URL . 'assets/ ' . $dist_dir . 'frontblocks-carousel.css',108 FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.css', 111 109 array(), 112 110 FRBL_VERSION … … 115 113 wp_enqueue_script( 116 114 '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', 118 116 array( 'frontblocks-carousel' ), 119 117 FRBL_VERSION, … … 123 121 wp_enqueue_script( 124 122 'frontblocks-carousel', 125 FRBL_PLUGIN_URL . 'assets/ dist/glide.min.js',123 FRBL_PLUGIN_URL . 'assets/carousel/glide.min.js', 126 124 array(), 127 125 FRBL_VERSION, -
frontblocks/trunk/readme.txt
r3387627 r3387976 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.2. 08 Version: 1.2. 07 Stable tag: 1.2.1 8 Version: 1.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 == Changelog == 87 87 88 == 1.2.1 == 89 * Fixed: Carousel/Slider not working correctly. 90 88 91 == 1.2.0 == 89 92 * Improved: Settings page. -
frontblocks/trunk/vendor/composer/installed.php
r3387627 r3387976 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.