Plugin Directory

Changeset 3126836


Ignore:
Timestamp:
07/28/2024 04:22:09 PM (20 months ago)
Author:
seowriting
Message:

New version of plugin: 1.8.2

Location:
seowriting
Files:
2 edited
15 copied

Legend:

Unmodified
Added
Removed
  • seowriting/tags/1.8.2/readme.txt

    r3122219 r3126836  
    2222
    2323== Changelog ==
     24
     25= 1.8.2 (2024/07/28) =
     26
     27Fix:
     28* Loading third-party plugins if the plugin has been renamed.
    2429
    2530= 1.8.1 (2024/07/19) =
  • seowriting/tags/1.8.2/seowriting.php

    r3122219 r3126836  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.8.1
     11 * Version:           1.8.2
    1212 * Author:            SEOWriting
    1313 * Author URI:        https://seowriting.ai/?utm_source=wp_plugin
     
    2828        public $plugin_slug;
    2929        public $plugin_path;
    30         public $version = '1.8.1';
     30        public $version = '1.8.2';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    127127        public function onAfterRequest(&$response, $url, $headers, $data, $type, $options)
    128128        {
    129             if (strpos($url, 'seowriting') === false && strpos($url, '.zip') === false) {
     129            if (strpos($url, 'seowriting') === false || strpos($url, '.zip') === false) {
    130130                return;
    131131            }
  • seowriting/trunk/readme.txt

    r3122219 r3126836  
    2222
    2323== Changelog ==
     24
     25= 1.8.2 (2024/07/28) =
     26
     27Fix:
     28* Loading third-party plugins if the plugin has been renamed.
    2429
    2530= 1.8.1 (2024/07/19) =
  • seowriting/trunk/seowriting.php

    r3122219 r3126836  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.8.1
     11 * Version:           1.8.2
    1212 * Author:            SEOWriting
    1313 * Author URI:        https://seowriting.ai/?utm_source=wp_plugin
     
    2828        public $plugin_slug;
    2929        public $plugin_path;
    30         public $version = '1.8.1';
     30        public $version = '1.8.2';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    127127        public function onAfterRequest(&$response, $url, $headers, $data, $type, $options)
    128128        {
    129             if (strpos($url, 'seowriting') === false && strpos($url, '.zip') === false) {
     129            if (strpos($url, 'seowriting') === false || strpos($url, '.zip') === false) {
    130130                return;
    131131            }
Note: See TracChangeset for help on using the changeset viewer.