Changeset 3126836
- Timestamp:
- 07/28/2024 04:22:09 PM (20 months ago)
- Location:
- seowriting
- Files:
-
- 2 edited
- 15 copied
-
tags/1.8.2 (copied) (copied from seowriting/trunk)
-
tags/1.8.2/assets (copied) (copied from seowriting/trunk/assets)
-
tags/1.8.2/assets/css/admin.css (copied) (copied from seowriting/trunk/assets/css/admin.css)
-
tags/1.8.2/assets/js/settings.js (copied) (copied from seowriting/trunk/assets/js/settings.js)
-
tags/1.8.2/classes (copied) (copied from seowriting/trunk/classes)
-
tags/1.8.2/classes/api-client.php (copied) (copied from seowriting/trunk/classes/api-client.php)
-
tags/1.8.2/classes/post-meta.php (copied) (copied from seowriting/trunk/classes/post-meta.php)
-
tags/1.8.2/classes/settings-form.php (copied) (copied from seowriting/trunk/classes/settings-form.php)
-
tags/1.8.2/readme.txt (copied) (copied from seowriting/trunk/readme.txt) (1 diff)
-
tags/1.8.2/seowriting.php (copied) (copied from seowriting/trunk/seowriting.php) (3 diffs)
-
tags/1.8.2/tpl (copied) (copied from seowriting/trunk/tpl)
-
tags/1.8.2/tpl/settings/entry.tpl.php (copied) (copied from seowriting/trunk/tpl/settings/entry.tpl.php)
-
tags/1.8.2/tpl/settings/settings.tpl.php (copied) (copied from seowriting/trunk/tpl/settings/settings.tpl.php)
-
tags/1.8.2/uninstall.php (copied) (copied from seowriting/trunk/uninstall.php)
-
tags/1.8.2/utils.php (copied) (copied from seowriting/trunk/utils.php)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/seowriting.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seowriting/tags/1.8.2/readme.txt
r3122219 r3126836 22 22 23 23 == Changelog == 24 25 = 1.8.2 (2024/07/28) = 26 27 Fix: 28 * Loading third-party plugins if the plugin has been renamed. 24 29 25 30 = 1.8.1 (2024/07/19) = -
seowriting/tags/1.8.2/seowriting.php
r3122219 r3126836 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.8. 111 * Version: 1.8.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.8. 1';30 public $version = '1.8.2'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 127 127 public function onAfterRequest(&$response, $url, $headers, $data, $type, $options) 128 128 { 129 if (strpos($url, 'seowriting') === false &&strpos($url, '.zip') === false) {129 if (strpos($url, 'seowriting') === false || strpos($url, '.zip') === false) { 130 130 return; 131 131 } -
seowriting/trunk/readme.txt
r3122219 r3126836 22 22 23 23 == Changelog == 24 25 = 1.8.2 (2024/07/28) = 26 27 Fix: 28 * Loading third-party plugins if the plugin has been renamed. 24 29 25 30 = 1.8.1 (2024/07/19) = -
seowriting/trunk/seowriting.php
r3122219 r3126836 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.8. 111 * Version: 1.8.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.8. 1';30 public $version = '1.8.2'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 127 127 public function onAfterRequest(&$response, $url, $headers, $data, $type, $options) 128 128 { 129 if (strpos($url, 'seowriting') === false &&strpos($url, '.zip') === false) {129 if (strpos($url, 'seowriting') === false || strpos($url, '.zip') === false) { 130 130 return; 131 131 }
Note: See TracChangeset
for help on using the changeset viewer.