Plugin Directory

Changeset 3288505


Ignore:
Timestamp:
05/06/2025 02:16:12 PM (11 months ago)
Author:
seowriting
Message:

New version of plugin: 1.11.1

Location:
seowriting
Files:
2 edited
7 copied

Legend:

Unmodified
Added
Removed
  • seowriting/tags/1.11.1/readme.txt

    r3287963 r3288505  
    55Requires at least: 4.9
    66Requires PHP: 5.6.20
    7 Stable tag: 1.11.0
     7Stable tag: 1.11.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222
    2323== Changelog ==
     24
     25= 1.11.1 (2025/05/06) =
     26
     27Fix:
     28* Custom CSS for Super Page
    2429
    2530= 1.11.0 (2025/05/05) =
  • seowriting/tags/1.11.1/seowriting.php

    r3287963 r3288505  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.11.0
     11 * Version:           1.11.1
    1212 * Author:            SEOWriting
    1313 * Author URI:        https://seowriting.ai/?utm_source=wp_plugin
     
    2828        public $plugin_slug;
    2929        public $plugin_path;
    30         public $version = '1.11.0';
     30        public $version = '1.11.1';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    143143        {
    144144            update_option(self::SETTINGS_PLUGIN_VERSION, $this->version);
     145            $this->setDefaultCSS();
     146        }
     147
     148        private function setDefaultCSS()
     149        {
    145150            $this->setCss(base64_decode(DEFAULT_CSS));
    146151        }
     
    226231        public function onUpdate($upgrader_object, $options)
    227232        {
     233            $this->setDefaultCSS();
    228234            if (
    229235                !is_array($options)
  • seowriting/trunk/readme.txt

    r3287963 r3288505  
    55Requires at least: 4.9
    66Requires PHP: 5.6.20
    7 Stable tag: 1.11.0
     7Stable tag: 1.11.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222
    2323== Changelog ==
     24
     25= 1.11.1 (2025/05/06) =
     26
     27Fix:
     28* Custom CSS for Super Page
    2429
    2530= 1.11.0 (2025/05/05) =
  • seowriting/trunk/seowriting.php

    r3287963 r3288505  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.11.0
     11 * Version:           1.11.1
    1212 * Author:            SEOWriting
    1313 * Author URI:        https://seowriting.ai/?utm_source=wp_plugin
     
    2828        public $plugin_slug;
    2929        public $plugin_path;
    30         public $version = '1.11.0';
     30        public $version = '1.11.1';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    143143        {
    144144            update_option(self::SETTINGS_PLUGIN_VERSION, $this->version);
     145            $this->setDefaultCSS();
     146        }
     147
     148        private function setDefaultCSS()
     149        {
    145150            $this->setCss(base64_decode(DEFAULT_CSS));
    146151        }
     
    226231        public function onUpdate($upgrader_object, $options)
    227232        {
     233            $this->setDefaultCSS();
    228234            if (
    229235                !is_array($options)
Note: See TracChangeset for help on using the changeset viewer.