Changeset 3288515
- Timestamp:
- 05/06/2025 02:47:54 PM (11 months ago)
- Location:
- seowriting
- Files:
-
- 2 edited
- 7 copied
-
tags/1.11.2 (copied) (copied from seowriting/trunk)
-
tags/1.11.2/assets/css/admin.css (copied) (copied from seowriting/trunk/assets/css/admin.css)
-
tags/1.11.2/classes/api-client.php (copied) (copied from seowriting/trunk/classes/api-client.php)
-
tags/1.11.2/classes/settings-form.php (copied) (copied from seowriting/trunk/classes/settings-form.php)
-
tags/1.11.2/readme.txt (copied) (copied from seowriting/trunk/readme.txt) (2 diffs)
-
tags/1.11.2/seowriting.php (copied) (copied from seowriting/trunk/seowriting.php) (6 diffs)
-
tags/1.11.2/utils.php (copied) (copied from seowriting/trunk/utils.php)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/seowriting.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seowriting/tags/1.11.2/readme.txt
r3288505 r3288515 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.11. 17 Stable tag: 1.11.2 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.2 (2025/05/06) = 26 27 Fix: 28 * Custom CSS for Super Page 24 29 25 30 = 1.11.1 (2025/05/06) = -
seowriting/tags/1.11.2/seowriting.php
r3288505 r3288515 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.11. 111 * Version: 1.11.2 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. 1';30 public $version = '1.11.2'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 142 142 public function activate() 143 143 { 144 update_option(self::SETTINGS_PLUGIN_VERSION, $this->version);144 $this->setPluginVersion(); 145 145 $this->setDefaultCSS(); 146 146 } … … 231 231 public function onUpdate($upgrader_object, $options) 232 232 { 233 $this->setDefaultCSS();234 233 if ( 235 234 !is_array($options) … … 245 244 foreach ($options['plugins'] as $plugin) { 246 245 if (strpos($plugin, 'seowriting.php') !== false) { 246 $this->setPluginVersion(); 247 $this->setDefaultCSS(); 247 248 return $this->getAPIClient()->update($this->version); 248 249 } … … 250 251 251 252 return false; 253 } 254 255 private function setPluginVersion() { 256 update_option(self::SETTINGS_PLUGIN_VERSION, $this->version); 252 257 } 253 258 -
seowriting/trunk/readme.txt
r3288505 r3288515 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.11. 17 Stable tag: 1.11.2 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.2 (2025/05/06) = 26 27 Fix: 28 * Custom CSS for Super Page 24 29 25 30 = 1.11.1 (2025/05/06) = -
seowriting/trunk/seowriting.php
r3288505 r3288515 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.11. 111 * Version: 1.11.2 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. 1';30 public $version = '1.11.2'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 142 142 public function activate() 143 143 { 144 update_option(self::SETTINGS_PLUGIN_VERSION, $this->version);144 $this->setPluginVersion(); 145 145 $this->setDefaultCSS(); 146 146 } … … 231 231 public function onUpdate($upgrader_object, $options) 232 232 { 233 $this->setDefaultCSS();234 233 if ( 235 234 !is_array($options) … … 245 244 foreach ($options['plugins'] as $plugin) { 246 245 if (strpos($plugin, 'seowriting.php') !== false) { 246 $this->setPluginVersion(); 247 $this->setDefaultCSS(); 247 248 return $this->getAPIClient()->update($this->version); 248 249 } … … 250 251 251 252 return false; 253 } 254 255 private function setPluginVersion() { 256 update_option(self::SETTINGS_PLUGIN_VERSION, $this->version); 252 257 } 253 258
Note: See TracChangeset
for help on using the changeset viewer.