Plugin Directory

Changeset 3218370


Ignore:
Timestamp:
01/07/2025 01:33:30 PM (15 months ago)
Author:
conutant
Message:

Fixed issues with Astra theme palette.

Location:
super-blank
Files:
385 added
4 edited

Legend:

Unmodified
Added
Removed
  • super-blank/trunk/assets/js/scripts.js

    r3216396 r3218370  
    256256            checkResponse(serverResponse) {
    257257
    258                 return serverResponse.includes("Have fun!") || serverResponse.includes("translations");
     258                return serverResponse.includes("Have fun!") ||
     259                serverResponse.includes("translation") ||
     260                serverResponse.includes("update-messages");
    259261            },
    260262
  • super-blank/trunk/inc/functions.php

    r3191074 r3218370  
    7676    function superBlankCustomColorPalette($theme_json)
    7777    {
     78
     79        // Check if Astra theme is installed
     80        $theme = wp_get_theme();
     81        if ($theme->get('Name') === 'Astra' || $theme->get('Template') === 'astra') return $theme_json;
    7882
    7983        if ($theme_json instanceof WP_Theme_JSON_Data) {
  • super-blank/trunk/readme.txt

    r3216396 r3218370  
    44Requires at least: 5.9
    55Tested up to: 6.7
    6 Stable tag: 1.0.8
     6Stable tag: 1.0.9
    77Requires PHP: 7.4
    88License: GNU General Public License v2.0 or later
     
    7777== Changelog ==
    7878
     79= 1.0.9 =
     80* Fixed issues with Astra theme palette
     81
    7982= 1.0.8 =
    8083* Fixed translation issue
  • super-blank/trunk/super-blank.php

    r3216396 r3218370  
    66 * Author:            Tyler Moore
    77 * Author URI:        https://tyler.com/
    8  * Version:           1.0.8
     8 * Version:           1.0.9
    99 * Text Domain:       super-blank
    1010 * License:           GPLv2 or later
     
    2323if (!defined('SUPER_BLANK_PLUGIN_VERSION')) {
    2424
    25     define('SUPER_BLANK_PLUGIN_VERSION', '1.0.8'); // '1.0.8'
     25    define('SUPER_BLANK_PLUGIN_VERSION', '1.0.9'); // '1.0.9'
    2626}
    2727
Note: See TracChangeset for help on using the changeset viewer.