Plugin Directory

Changeset 3161925


Ignore:
Timestamp:
10/03/2024 08:24:30 AM (18 months ago)
Author:
seowriting
Message:

New version of plugin: 1.8.5

Location:
seowriting
Files:
2 edited
3 copied

Legend:

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

    r3146536 r3161925  
    22Contributors: SEOWriting
    33Tags: seo writing, AI tool, AI writing, generation text
    4 Tested up to: 6.6.1
     4Tested up to: 6.6.2
    55Requires at least: 4.9
    66Requires PHP: 5.6.20
    7 Stable tag: 1.8.4
     7Stable tag: 1.8.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222
    2323== Changelog ==
     24
     25= 1.8.5 (2024/10/01) =
     26
     27Feature:
     28* Internal changes
    2429
    2530= 1.8.4 (2024/09/04) =
  • seowriting/tags/1.8.5/seowriting.php

    r3146536 r3161925  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.8.4
     11 * Version:           1.8.5
    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.4';
     30        public $version = '1.8.5';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    508508                            'version' => $this->getVersion()
    509509                        ];
     510                    } elseif ($action == 'get_meta') {
     511                        $rs = [
     512                            'result' => 1,
     513                            'authors' => $this->getAuthors(),
     514                            'categories' => $this->getCategories(),
     515                            'types' => $this->getPostTypes(),
     516                            'version' => $this->getVersion()
     517                        ];
    510518                    } else {
    511519                        $rs = [
     
    924932        }
    925933
     934        public function getPostTypes()
     935        {
     936            return array_merge(['post', 'page'], get_post_types(['public' => true, '_builtin' => false]));
     937        }
     938
    926939        /**
    927940         * @return array<array<string, int|string>>
  • seowriting/trunk/readme.txt

    r3146536 r3161925  
    22Contributors: SEOWriting
    33Tags: seo writing, AI tool, AI writing, generation text
    4 Tested up to: 6.6.1
     4Tested up to: 6.6.2
    55Requires at least: 4.9
    66Requires PHP: 5.6.20
    7 Stable tag: 1.8.4
     7Stable tag: 1.8.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2222
    2323== Changelog ==
     24
     25= 1.8.5 (2024/10/01) =
     26
     27Feature:
     28* Internal changes
    2429
    2530= 1.8.4 (2024/09/04) =
  • seowriting/trunk/seowriting.php

    r3146536 r3161925  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.8.4
     11 * Version:           1.8.5
    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.4';
     30        public $version = '1.8.5';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    508508                            'version' => $this->getVersion()
    509509                        ];
     510                    } elseif ($action == 'get_meta') {
     511                        $rs = [
     512                            'result' => 1,
     513                            'authors' => $this->getAuthors(),
     514                            'categories' => $this->getCategories(),
     515                            'types' => $this->getPostTypes(),
     516                            'version' => $this->getVersion()
     517                        ];
    510518                    } else {
    511519                        $rs = [
     
    924932        }
    925933
     934        public function getPostTypes()
     935        {
     936            return array_merge(['post', 'page'], get_post_types(['public' => true, '_builtin' => false]));
     937        }
     938
    926939        /**
    927940         * @return array<array<string, int|string>>
Note: See TracChangeset for help on using the changeset viewer.