Changeset 3395208
- Timestamp:
- 11/13/2025 04:40:10 PM (3 months ago)
- Location:
- native-blocks-carousel
- Files:
-
- 1 added
- 3 edited
-
assets/playground-blueprint-alternative.json (added)
-
assets/playground-blueprint.json (modified) (2 diffs)
-
trunk/any-block-carousel-slider.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
native-blocks-carousel/assets/playground-blueprint.json
r3395187 r3395208 8 8 }, 9 9 { 10 "step": "installPlugin", 11 "pluginZipFile": { 12 "resource": "wordpress.org/plugins", 13 "slug": "native-blocks-carousel" 14 } 10 "step": "runPHP", 11 "code": "<?php\nrequire_once ABSPATH . 'wp-admin/includes/file.php';\nrequire_once ABSPATH . 'wp-admin/includes/plugin-install.php';\nrequire_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';\nrequire_once ABSPATH . 'wp-admin/includes/plugin.php';\n\n// Download and install plugin from GitHub\n$plugin_url = 'https://github.com/WEBLAZER/any-block-carousel-slider/archive/refs/heads/main.zip';\n$upgrader = new Plugin_Upgrader();\n$result = $upgrader->install($plugin_url);\n\n// Rename directory if needed\n$old_dir = WP_PLUGIN_DIR . '/any-block-carousel-slider-main';\n$new_dir = WP_PLUGIN_DIR . '/any-block-carousel-slider';\nif (file_exists($old_dir) && !file_exists($new_dir)) {\n rename($old_dir, $new_dir);\n}\n" 15 12 }, 16 13 { 17 14 "step": "activatePlugin", 18 15 "pluginName": "any-block-carousel-slider/any-block-carousel-slider.php" 16 }, 17 { 18 "step": "importWxr", 19 "file": { 20 "resource": "url", 21 "url": "https://raw.githubusercontent.com/WEBLAZER/any-block-carousel-slider/main/.wordpress-org/demo-content.xml" 22 } 19 23 }, 20 24 { … … 24 28 "blogdescription": "Demo site showcasing the Any Block Carousel Slider plugin" 25 29 } 26 },27 {28 "step": "importWxr",29 "file": {30 "resource": "url",31 "url": "https://raw.githubusercontent.com/WEBLAZER/any-block-carousel-slider/main/.wordpress-org/demo-content.xml"32 }33 30 } 34 31 ] -
native-blocks-carousel/trunk/any-block-carousel-slider.php
r3395187 r3395208 4 4 * Plugin URI: https://github.com/WEBLAZER/any-block-carousel-slider 5 5 * Description: Transform any WordPress block into a performant carousel with pure CSS. Zero JavaScript, works with Gallery, Grid, Post Template, and Group blocks. 6 * Version: 1.0.3. 26 * Version: 1.0.3.3 7 7 * Author: weblazer35 8 8 * Author URI: https://weblazer.fr … … 28 28 } 29 29 30 define('ANY_BLOCK_CAROUSEL_SLIDER_VERSION', '1.0.3. 2');30 define('ANY_BLOCK_CAROUSEL_SLIDER_VERSION', '1.0.3.3'); 31 31 define('ANY_BLOCK_CAROUSEL_SLIDER_PLUGIN_FILE', __FILE__); 32 32 define('ANY_BLOCK_CAROUSEL_SLIDER_PLUGIN_URL', plugin_dir_url(__FILE__)); -
native-blocks-carousel/trunk/readme.txt
r3395187 r3395208 5 5 Requires at least: 6.0 6 6 Tested up to: 6.8 7 Stable tag: 1.0.3. 27 Stable tag: 1.0.3.3 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 20 20 = Try it now = 21 21 22 Test **Any Block Carousel Slider** instantly in your browser with [WordPress Playground](https://playground.wordpress.net/? blueprint-url=https://raw.githubusercontent.com/WEBLAZER/any-block-carousel-slider/main/.wordpress-org/playground-blueprint.json) – no installation required! The demo includes pre-configured examples of Query Loop, Gallery, and Group blocks transformed into smooth, responsive carousels. Simply open the demo page to see the plugin in action.22 Test **Any Block Carousel Slider** instantly in your browser with [WordPress Playground](https://playground.wordpress.net/?plugin=native-blocks-carousel) – no installation required! Simply activate the plugin and start transforming your blocks into carousels. 23 23 24 24 = Why Any Block Carousel Slider instead of a dedicated carousel slider block? = … … 158 158 159 159 == Changelog == 160 161 = 1.0.3.3 - 2025-11-13 = 162 * 🔗 Simplified WordPress Playground link in "Try it now" section. 163 * 📝 Updated readme.txt to refresh WordPress.org cache. 160 164 161 165 = 1.0.3.2 - 2025-11-13 =
Note: See TracChangeset
for help on using the changeset viewer.