Changeset 3203089
- Timestamp:
- 12/05/2024 01:33:17 PM (16 months ago)
- Location:
- seowriting
- Files:
-
- 2 edited
- 5 copied
-
tags/1.9.3 (copied) (copied from seowriting/trunk)
-
tags/1.9.3/assets/css/admin.css (copied) (copied from seowriting/trunk/assets/css/admin.css)
-
tags/1.9.3/classes/settings-form.php (copied) (copied from seowriting/trunk/classes/settings-form.php)
-
tags/1.9.3/readme.txt (copied) (copied from seowriting/trunk/readme.txt) (2 diffs)
-
tags/1.9.3/seowriting.php (copied) (copied from seowriting/trunk/seowriting.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/seowriting.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seowriting/tags/1.9.3/readme.txt
r3179660 r3203089 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6. 6.24 Tested up to: 6.7.1 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.9. 17 Stable tag: 1.9.3 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.9.3 (2024/12/05) = 26 27 Fix: 28 * Notification about plugin version update 24 29 25 30 = 1.9.1 (2024/10/31) = -
seowriting/tags/1.9.3/seowriting.php
r3179660 r3203089 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.9. 111 * Version: 1.9.3 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.9. 1';30 public $version = '1.9.3'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 208 208 public function onUpdate($upgrader_object, $options) 209 209 { 210 return $this->getAPIClient()->update($this->version); 210 if ( 211 !is_array($options) 212 || !isset($options['action']) 213 || $options['action'] !== 'update' 214 || !isset($options['type']) 215 || $options['type'] !== 'plugin' 216 || !isset($options['plugins']) 217 || !isset($options['plugins'][0]) 218 ) { 219 return false; 220 } 221 foreach ($options['plugins'] as $plugin) { 222 if (strpos($plugin, 'seowriting.php') !== false) { 223 return $this->getAPIClient()->update($this->version); 224 } 225 } 226 227 return false; 211 228 } 212 229 -
seowriting/trunk/readme.txt
r3179660 r3203089 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6. 6.24 Tested up to: 6.7.1 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.9. 17 Stable tag: 1.9.3 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.9.3 (2024/12/05) = 26 27 Fix: 28 * Notification about plugin version update 24 29 25 30 = 1.9.1 (2024/10/31) = -
seowriting/trunk/seowriting.php
r3179660 r3203089 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.9. 111 * Version: 1.9.3 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.9. 1';30 public $version = '1.9.3'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 208 208 public function onUpdate($upgrader_object, $options) 209 209 { 210 return $this->getAPIClient()->update($this->version); 210 if ( 211 !is_array($options) 212 || !isset($options['action']) 213 || $options['action'] !== 'update' 214 || !isset($options['type']) 215 || $options['type'] !== 'plugin' 216 || !isset($options['plugins']) 217 || !isset($options['plugins'][0]) 218 ) { 219 return false; 220 } 221 foreach ($options['plugins'] as $plugin) { 222 if (strpos($plugin, 'seowriting.php') !== false) { 223 return $this->getAPIClient()->update($this->version); 224 } 225 } 226 227 return false; 211 228 } 212 229
Note: See TracChangeset
for help on using the changeset viewer.