Plugin Directory

Changeset 3479014


Ignore:
Timestamp:
03/10/2026 11:33:18 AM (3 weeks ago)
Author:
Marc4
Message:

v1.2.3

Location:
toys-for-playground
Files:
9 added
7 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • toys-for-playground/trunk/cloner.php

    r3378964 r3479014  
    5656
    5757        // Define WordPress and PHP versions.
    58         $wp_versions = ['6.0', '6.1', '6.2', '6.3', '6.4', '6.5', '6.6', '6.7', '6.8', 'nightly', 'latest', 'beta'];
    59         $php_versions = ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'];
     58        $wp_versions = ['6.3', '6.4', '6.5', '6.6', '6.7', '6.8', '6.9', 'nightly', 'latest', 'beta'];
     59        $php_versions = ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'];
    6060
    6161        ob_start(); ?>
  • toys-for-playground/trunk/generator.php

    r3378964 r3479014  
    11<?php
    22    // Define WordPress and PHP versions
    3     $wp_versions = ['6.0', '6.1', '6.2', '6.3', '6.4', '6.5', '6.6', '6.7', '6.8', 'nightly', 'latest', 'beta'];
    4     $php_versions = ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'];
     3    $wp_versions = ['6.3', '6.4', '6.5', '6.6', '6.7', '6.8', '6.9', 'nightly', 'latest', 'beta'];
     4    $php_versions = ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'];
    55?>
    66    <div class="wrap">
  • toys-for-playground/trunk/readme.txt

    r3378964 r3479014  
    22Contributors: marc4
    33Tags: playground
    4 Requires at least: 6.0
     4Requires at least: 6.3
    55Tested up to: 6.8
    6 Requires PHP: 7.0
     6Requires PHP: 7.4
    77Tested PHP: 8.3
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GNU General Public License v2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444
    4545== Changelog ==
     46
     47= [1.2.3] - 2026-10-03 =
     48
     49* Updated WP version selector: 6.3 to 6.9 (removed older versions below 6.3).
     50* Updated PHP version selector: 7.4 to 8.5 (removed older versions below 7.4).
     51* Added WP 6.9 in WP version selector.
     52* Added PHP 8.5 in PHP version selector.
     53* Removed changelog.txt file.
     54* Improvement: wp_enqueue_script() now uses plugin version constant for cache busting.
    4655
    4756= [1.2.2] - 2025-10-15 =
  • toys-for-playground/trunk/toys-for-playground.php

    r3378964 r3479014  
    44Plugin URI: https://wordpress.org/plugins/toys-for-playground/
    55Description: Toys for Playground allows you to set up development, training, and testing environments in WordPress Playground easily. No Playground API knowledge needed.
    6 Version: 1.2.2
    7 Requires at least: 6.0
     6Version: 1.2.3
     7Requires at least: 6.3
    88Tested up to: 6.8
    9 Requires PHP: 7.0
     9Requires PHP: 7.4
    1010Tested up to PHP: 8.3
    1111Author: Marc Armengou
     
    1616
    1717if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     18
     19define( 'TOYSPG_VERSION', '1.2.3' );
    1820
    1921
     
    137139        return;
    138140    }
    139     wp_enqueue_script('toys-for-playground-explorer-script', plugin_dir_url(__FILE__) . 'plugin-explorer.js', array('jquery'), '1.0.0', true);
     141    wp_enqueue_script('toys-for-playground-explorer-script', plugin_dir_url(__FILE__) . 'plugin-explorer.js', array('jquery'), TOYSPG_VERSION, true);
    140142}
    141143add_action('admin_enqueue_scripts', 'toys_for_playground_explorer_enqueue_scripts');
     
    146148        return;
    147149    }
    148     wp_enqueue_script('toys-for-playground-theme-explorer-script', plugin_dir_url(__FILE__) . 'theme-explorer.js', array('jquery'), '1.0.0', true);
     150    wp_enqueue_script('toys-for-playground-theme-explorer-script', plugin_dir_url(__FILE__) . 'theme-explorer.js', array('jquery'), TOYSPG_VERSION, true);
    149151}
    150152add_action('admin_enqueue_scripts', 'toys_for_playground_theme_explorer_enqueue_scripts');
Note: See TracChangeset for help on using the changeset viewer.