Plugin Directory

Changeset 3235188


Ignore:
Timestamp:
02/05/2025 07:11:55 AM (10 months ago)
Author:
themeum
Message:

Update to version 1.8.13 from GitHub

Location:
qubely
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • qubely/tags/1.8.13/core/blocks/postgrid.php

    r2860750 r3235188  
    14151415        $col = "";
    14161416    }
    1417     $class = 'wp-block-qubely-postgrid qubely-block-' . $uniqueId;
     1417    $class = 'wp-block-qubely-postgrid qubely-block-' . esc_attr($uniqueId);
    14181418    if (isset($att['align'])) {
    1419         $class .= ' align' . $att['align'];
     1419        $class .= ' align' . esc_attr($att['align']);
    14201420    }
    14211421    if (isset($att['className'])) {
  • qubely/tags/1.8.13/qubely.php

    r3158185 r3235188  
    44 * Plugin URI:        https://www.themeum.com/
    55 * Description:       The one and only Gutenberg block plugin you will ever need.
    6  * Version:           1.8.12
     6 * Version:           1.8.13
    77 * Author:            Themeum
    88 * Author URI:        https://www.themeum.com/
    99 * Text Domain:       qubely
    1010 * Requires at least: 5.3
    11  * Tested up to:       6.6.2
     11 * Tested up to:      6.7
    1212 * License:           GPL-2.0+
    1313 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    2525
    2626// Define Version
    27 define('QUBELY_VERSION', '1.8.12');
     27define('QUBELY_VERSION', '1.8.13');
    2828
    2929// Define License
  • qubely/tags/1.8.13/readme.txt

    r3158185 r3235188  
    44Tags: blocks, gutenberg, gutenberg blocks, editor, block, page builder
    55Requires at least: 5.3
    6 Tested up to: 6.6.2
    7 Stable tag: 1.8.12
     6Tested up to: 6.7
     7Stable tag: 1.8.13
    88Requires PHP: 7.0
    99License: GPL-2.0+
     
    231231== Changelog ==
    232232
     233= 1.8.13 =
     234Update: Security Update(Prevent Cross-Site Scripting)
     235
    233236= 1.8.12 =
    234237Update: Added WordPress 6.6 Compatibility
  • qubely/trunk/core/blocks/postgrid.php

    r2860750 r3235188  
    14151415        $col = "";
    14161416    }
    1417     $class = 'wp-block-qubely-postgrid qubely-block-' . $uniqueId;
     1417    $class = 'wp-block-qubely-postgrid qubely-block-' . esc_attr($uniqueId);
    14181418    if (isset($att['align'])) {
    1419         $class .= ' align' . $att['align'];
     1419        $class .= ' align' . esc_attr($att['align']);
    14201420    }
    14211421    if (isset($att['className'])) {
  • qubely/trunk/qubely.php

    r3158185 r3235188  
    44 * Plugin URI:        https://www.themeum.com/
    55 * Description:       The one and only Gutenberg block plugin you will ever need.
    6  * Version:           1.8.12
     6 * Version:           1.8.13
    77 * Author:            Themeum
    88 * Author URI:        https://www.themeum.com/
    99 * Text Domain:       qubely
    1010 * Requires at least: 5.3
    11  * Tested up to:       6.6.2
     11 * Tested up to:      6.7
    1212 * License:           GPL-2.0+
    1313 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    2525
    2626// Define Version
    27 define('QUBELY_VERSION', '1.8.12');
     27define('QUBELY_VERSION', '1.8.13');
    2828
    2929// Define License
  • qubely/trunk/readme.txt

    r3158185 r3235188  
    44Tags: blocks, gutenberg, gutenberg blocks, editor, block, page builder
    55Requires at least: 5.3
    6 Tested up to: 6.6.2
    7 Stable tag: 1.8.12
     6Tested up to: 6.7
     7Stable tag: 1.8.13
    88Requires PHP: 7.0
    99License: GPL-2.0+
     
    231231== Changelog ==
    232232
     233= 1.8.13 =
     234Update: Security Update(Prevent Cross-Site Scripting)
     235
    233236= 1.8.12 =
    234237Update: Added WordPress 6.6 Compatibility
Note: See TracChangeset for help on using the changeset viewer.