Plugin Directory

Changeset 3395208


Ignore:
Timestamp:
11/13/2025 04:40:10 PM (3 months ago)
Author:
weblazer
Message:

Bump version to 1.0.3.3: Simplify Playground link and refresh cache

Location:
native-blocks-carousel
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • native-blocks-carousel/assets/playground-blueprint.json

    r3395187 r3395208  
    88        },
    99        {
    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"
    1512        },
    1613        {
    1714            "step": "activatePlugin",
    1815            "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            }
    1923        },
    2024        {
     
    2428                "blogdescription": "Demo site showcasing the Any Block Carousel Slider plugin"
    2529            }
    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             }
    3330        }
    3431    ]
  • native-blocks-carousel/trunk/any-block-carousel-slider.php

    r3395187 r3395208  
    44 * Plugin URI: https://github.com/WEBLAZER/any-block-carousel-slider
    55 * 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.2
     6 * Version: 1.0.3.3
    77 * Author: weblazer35
    88 * Author URI: https://weblazer.fr
     
    2828}
    2929
    30 define('ANY_BLOCK_CAROUSEL_SLIDER_VERSION', '1.0.3.2');
     30define('ANY_BLOCK_CAROUSEL_SLIDER_VERSION', '1.0.3.3');
    3131define('ANY_BLOCK_CAROUSEL_SLIDER_PLUGIN_FILE', __FILE__);
    3232define('ANY_BLOCK_CAROUSEL_SLIDER_PLUGIN_URL', plugin_dir_url(__FILE__));
  • native-blocks-carousel/trunk/readme.txt

    r3395187 r3395208  
    55Requires at least: 6.0
    66Tested up to: 6.8
    7 Stable tag: 1.0.3.2
     7Stable tag: 1.0.3.3
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    2020= Try it now =
    2121
    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.
     22Test **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.
    2323
    2424= Why Any Block Carousel Slider instead of a dedicated carousel slider block? =
     
    158158
    159159== 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.
    160164
    161165= 1.0.3.2 - 2025-11-13 =
Note: See TracChangeset for help on using the changeset viewer.