Changeset 3146536
- Timestamp:
- 09/04/2024 03:36:55 PM (19 months ago)
- Location:
- seowriting
- Files:
-
- 4 edited
- 1 copied
-
tags/1.8.4 (copied) (copied from seowriting/trunk)
-
tags/1.8.4/readme.txt (modified) (2 diffs)
-
tags/1.8.4/seowriting.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/seowriting.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seowriting/tags/1.8.4/readme.txt
r3127155 r3146536 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6.6 4 Tested up to: 6.6.1 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.8. 37 Stable tag: 1.8.4 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.4 (2024/09/04) = 26 27 Feature: 28 * Internal changes 24 29 25 30 = 1.8.3 (2024/07/29) = -
seowriting/tags/1.8.4/seowriting.php
r3127155 r3146536 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.8. 311 * Version: 1.8.4 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. 3';30 public $version = '1.8.4'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 498 498 'post' => $this->getPost(isset($post['post_id']) ? sanitize_text_field($post['post_id']) : '') 499 499 ]; 500 } elseif ($action === 'get_post_slug') { 501 $rs = [ 502 'result' => 1, 503 'slug' => get_permalink(intval($post['post_id'])) 504 ]; 500 505 } elseif ($action === 'get_version') { 501 506 $rs = [ … … 843 848 'post_id' => $post_id, 844 849 'url' => wp_get_shortlink($post_id), 850 'slug' => get_permalink($post_id) 845 851 ]; 846 852 } … … 861 867 'content' => $post->post_content, 862 868 'title' => $post->post_title, 863 'url' => get_permalink($post->ID) ,869 'url' => get_permalink($post->ID) 864 870 ]; 865 871 } -
seowriting/trunk/readme.txt
r3127155 r3146536 2 2 Contributors: SEOWriting 3 3 Tags: seo writing, AI tool, AI writing, generation text 4 Tested up to: 6.6 4 Tested up to: 6.6.1 5 5 Requires at least: 4.9 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.8. 37 Stable tag: 1.8.4 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.4 (2024/09/04) = 26 27 Feature: 28 * Internal changes 24 29 25 30 = 1.8.3 (2024/07/29) = -
seowriting/trunk/seowriting.php
r3127155 r3146536 9 9 * Plugin Name: SEOWriting 10 10 * Description: SEOWriting - AI Writing Tool Plugin For Text Generation 11 * Version: 1.8. 311 * Version: 1.8.4 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. 3';30 public $version = '1.8.4'; 31 31 /** 32 32 * @var \SEOWriting\APIClient|null … … 498 498 'post' => $this->getPost(isset($post['post_id']) ? sanitize_text_field($post['post_id']) : '') 499 499 ]; 500 } elseif ($action === 'get_post_slug') { 501 $rs = [ 502 'result' => 1, 503 'slug' => get_permalink(intval($post['post_id'])) 504 ]; 500 505 } elseif ($action === 'get_version') { 501 506 $rs = [ … … 843 848 'post_id' => $post_id, 844 849 'url' => wp_get_shortlink($post_id), 850 'slug' => get_permalink($post_id) 845 851 ]; 846 852 } … … 861 867 'content' => $post->post_content, 862 868 'title' => $post->post_title, 863 'url' => get_permalink($post->ID) ,869 'url' => get_permalink($post->ID) 864 870 ]; 865 871 }
Note: See TracChangeset
for help on using the changeset viewer.