Changeset 3288505
- Timestamp:
- 05/06/2025 02:16:12 PM (11 months ago)
- Location:
- seowriting
- Files:
-
- 2 edited
- 7 copied
-
tags/1.11.1 (copied) (copied from seowriting/trunk)
-
tags/1.11.1/assets/css/admin.css (copied) (copied from seowriting/trunk/assets/css/admin.css)
-
tags/1.11.1/classes/api-client.php (copied) (copied from seowriting/trunk/classes/api-client.php)
-
tags/1.11.1/classes/settings-form.php (copied) (copied from seowriting/trunk/classes/settings-form.php)
-
tags/1.11.1/readme.txt (copied) (copied from seowriting/trunk/readme.txt) (2 diffs)
-
tags/1.11.1/seowriting.php (copied) (copied from seowriting/trunk/seowriting.php) (4 diffs)
-
tags/1.11.1/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.1/readme.txt
r3287963 r3288505 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.11. 07 Stable tag: 1.11.1 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.1 (2025/05/06) = 26 27 Fix: 28 * Custom CSS for Super Page 24 29 25 30 = 1.11.0 (2025/05/05) = -
seowriting/tags/1.11.1/seowriting.php
r3287963 r3288505 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.11. 011 * Version: 1.11.1 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. 0';30 public $version = '1.11.1'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 143 143 { 144 144 update_option(self::SETTINGS_PLUGIN_VERSION, $this->version); 145 $this->setDefaultCSS(); 146 } 147 148 private function setDefaultCSS() 149 { 145 150 $this->setCss(base64_decode(DEFAULT_CSS)); 146 151 } … … 226 231 public function onUpdate($upgrader_object, $options) 227 232 { 233 $this->setDefaultCSS(); 228 234 if ( 229 235 !is_array($options) -
seowriting/trunk/readme.txt
r3287963 r3288505 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.11. 07 Stable tag: 1.11.1 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.1 (2025/05/06) = 26 27 Fix: 28 * Custom CSS for Super Page 24 29 25 30 = 1.11.0 (2025/05/05) = -
seowriting/trunk/seowriting.php
r3287963 r3288505 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.11. 011 * Version: 1.11.1 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. 0';30 public $version = '1.11.1'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 143 143 { 144 144 update_option(self::SETTINGS_PLUGIN_VERSION, $this->version); 145 $this->setDefaultCSS(); 146 } 147 148 private function setDefaultCSS() 149 { 145 150 $this->setCss(base64_decode(DEFAULT_CSS)); 146 151 } … … 226 231 public function onUpdate($upgrader_object, $options) 227 232 { 233 $this->setDefaultCSS(); 228 234 if ( 229 235 !is_array($options)
Note: See TracChangeset
for help on using the changeset viewer.