Plugin Directory

Changeset 3289705


Ignore:
Timestamp:
05/08/2025 10:22:22 AM (11 months ago)
Author:
seowriting
Message:

New version of plugin: 1.11.7

Location:
seowriting
Files:
2 edited
7 copied

Legend:

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

    r3289379 r3289705  
    22Contributors: SEOWriting
    33Tags: seo writing, AI tool, AI writing, generation text
    4 Tested up to: 6.7.2
     4Tested up to: 6.8.1
    55Requires at least: 4.9
    66Requires PHP: 5.6.20
    7 Stable tag: 1.11.6
     7Stable tag: 1.11.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222
    2323== Changelog ==
     24
     25= 1.11.7 (2025/05/08) =
     26
     27Feature:
     28* Tested up to WP 6.8.1
    2429
    2530= 1.11.6 (2025/05/07) =
  • seowriting/tags/1.11.7/seowriting.php

    r3289379 r3289705  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.11.6
     11 * Version:           1.11.7
    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.6';
     30        public $version = '1.11.7';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    215215            $this->getAPIClient()->changePostStatus($status, [
    216216                'post_id' => $post->ID,
    217                 'api_key' => $settings['api_key'],
     217                'api_key' => isset($settings['api_key']) ? $settings['api_key'] : 'null',
    218218            ]);
    219219
     
    10151015
    10161016            delete_option(self::SETTINGS_CSS_KEY);
    1017             $res = intval(update_option(self::SETTINGS_CSS_KEY, $css));
    1018             if ($res === 1) {
     1017            if (intval(update_option(self::SETTINGS_CSS_KEY, $css)) === 1) {
    10191018                file_put_contents($this->css_file, $css);
    10201019            } else {
  • seowriting/trunk/readme.txt

    r3289379 r3289705  
    22Contributors: SEOWriting
    33Tags: seo writing, AI tool, AI writing, generation text
    4 Tested up to: 6.7.2
     4Tested up to: 6.8.1
    55Requires at least: 4.9
    66Requires PHP: 5.6.20
    7 Stable tag: 1.11.6
     7Stable tag: 1.11.7
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222
    2323== Changelog ==
     24
     25= 1.11.7 (2025/05/08) =
     26
     27Feature:
     28* Tested up to WP 6.8.1
    2429
    2530= 1.11.6 (2025/05/07) =
  • seowriting/trunk/seowriting.php

    r3289379 r3289705  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.11.6
     11 * Version:           1.11.7
    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.6';
     30        public $version = '1.11.7';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    215215            $this->getAPIClient()->changePostStatus($status, [
    216216                'post_id' => $post->ID,
    217                 'api_key' => $settings['api_key'],
     217                'api_key' => isset($settings['api_key']) ? $settings['api_key'] : 'null',
    218218            ]);
    219219
     
    10151015
    10161016            delete_option(self::SETTINGS_CSS_KEY);
    1017             $res = intval(update_option(self::SETTINGS_CSS_KEY, $css));
    1018             if ($res === 1) {
     1017            if (intval(update_option(self::SETTINGS_CSS_KEY, $css)) === 1) {
    10191018                file_put_contents($this->css_file, $css);
    10201019            } else {
Note: See TracChangeset for help on using the changeset viewer.