Changeset 3161925
- Timestamp:
- 10/03/2024 08:24:30 AM (18 months ago)
- Location:
- seowriting
- Files:
-
- 2 edited
- 3 copied
-
tags/1.8.5 (copied) (copied from seowriting/trunk)
-
tags/1.8.5/readme.txt (copied) (copied from seowriting/trunk/readme.txt) (2 diffs)
-
tags/1.8.5/seowriting.php (copied) (copied from seowriting/trunk/seowriting.php) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/seowriting.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seowriting/tags/1.8.5/readme.txt
r3146536 r3161925 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6.6. 14 Tested up to: 6.6.2 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.8. 47 Stable tag: 1.8.5 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.8.5 (2024/10/01) = 26 27 Feature: 28 * Internal changes 24 29 25 30 = 1.8.4 (2024/09/04) = -
seowriting/tags/1.8.5/seowriting.php
r3146536 r3161925 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.8. 411 * Version: 1.8.5 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. 4';30 public $version = '1.8.5'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 508 508 'version' => $this->getVersion() 509 509 ]; 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 ]; 510 518 } else { 511 519 $rs = [ … … 924 932 } 925 933 934 public function getPostTypes() 935 { 936 return array_merge(['post', 'page'], get_post_types(['public' => true, '_builtin' => false])); 937 } 938 926 939 /** 927 940 * @return array<array<string, int|string>> -
seowriting/trunk/readme.txt
r3146536 r3161925 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6.6. 14 Tested up to: 6.6.2 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.8. 47 Stable tag: 1.8.5 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.8.5 (2024/10/01) = 26 27 Feature: 28 * Internal changes 24 29 25 30 = 1.8.4 (2024/09/04) = -
seowriting/trunk/seowriting.php
r3146536 r3161925 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.8. 411 * Version: 1.8.5 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. 4';30 public $version = '1.8.5'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 508 508 'version' => $this->getVersion() 509 509 ]; 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 ]; 510 518 } else { 511 519 $rs = [ … … 924 932 } 925 933 934 public function getPostTypes() 935 { 936 return array_merge(['post', 'page'], get_post_types(['public' => true, '_builtin' => false])); 937 } 938 926 939 /** 927 940 * @return array<array<string, int|string>>
Note: See TracChangeset
for help on using the changeset viewer.