Changeset 3289705
- Timestamp:
- 05/08/2025 10:22:22 AM (11 months ago)
- Location:
- seowriting
- Files:
-
- 2 edited
- 7 copied
-
tags/1.11.7 (copied) (copied from seowriting/trunk)
-
tags/1.11.7/assets/css/admin.css (copied) (copied from seowriting/trunk/assets/css/admin.css)
-
tags/1.11.7/classes/api-client.php (copied) (copied from seowriting/trunk/classes/api-client.php)
-
tags/1.11.7/classes/settings-form.php (copied) (copied from seowriting/trunk/classes/settings-form.php)
-
tags/1.11.7/readme.txt (copied) (copied from seowriting/trunk/readme.txt) (2 diffs)
-
tags/1.11.7/seowriting.php (copied) (copied from seowriting/trunk/seowriting.php) (4 diffs)
-
tags/1.11.7/utils.php (copied) (copied from seowriting/trunk/utils.php)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/seowriting.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seowriting/tags/1.11.7/readme.txt
r3289379 r3289705 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6. 7.24 Tested up to: 6.8.1 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.11. 67 Stable tag: 1.11.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 22 22 23 23 == Changelog == 24 25 = 1.11.7 (2025/05/08) = 26 27 Feature: 28 * Tested up to WP 6.8.1 24 29 25 30 = 1.11.6 (2025/05/07) = -
seowriting/tags/1.11.7/seowriting.php
r3289379 r3289705 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.11. 611 * Version: 1.11.7 12 12 * Author: SEOWriting 13 13 * Author URI: https://seowriting.ai/?utm_source=wp_plugin … … 28 28 public $plugin_slug; 29 29 public $plugin_path; 30 public $version = '1.11. 6';30 public $version = '1.11.7'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 215 215 $this->getAPIClient()->changePostStatus($status, [ 216 216 'post_id' => $post->ID, 217 'api_key' => $settings['api_key'],217 'api_key' => isset($settings['api_key']) ? $settings['api_key'] : 'null', 218 218 ]); 219 219 … … 1015 1015 1016 1016 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) { 1019 1018 file_put_contents($this->css_file, $css); 1020 1019 } else { -
seowriting/trunk/readme.txt
r3289379 r3289705 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6. 7.24 Tested up to: 6.8.1 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.11. 67 Stable tag: 1.11.7 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 22 22 23 23 == Changelog == 24 25 = 1.11.7 (2025/05/08) = 26 27 Feature: 28 * Tested up to WP 6.8.1 24 29 25 30 = 1.11.6 (2025/05/07) = -
seowriting/trunk/seowriting.php
r3289379 r3289705 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.11. 611 * Version: 1.11.7 12 12 * Author: SEOWriting 13 13 * Author URI: https://seowriting.ai/?utm_source=wp_plugin … … 28 28 public $plugin_slug; 29 29 public $plugin_path; 30 public $version = '1.11. 6';30 public $version = '1.11.7'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 215 215 $this->getAPIClient()->changePostStatus($status, [ 216 216 'post_id' => $post->ID, 217 'api_key' => $settings['api_key'],217 'api_key' => isset($settings['api_key']) ? $settings['api_key'] : 'null', 218 218 ]); 219 219 … … 1015 1015 1016 1016 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) { 1019 1018 file_put_contents($this->css_file, $css); 1020 1019 } else {
Note: See TracChangeset
for help on using the changeset viewer.