Plugin Directory

Changeset 3146536


Ignore:
Timestamp:
09/04/2024 03:36:55 PM (19 months ago)
Author:
seowriting
Message:

New version of plugin: 1.8.4

Location:
seowriting
Files:
4 edited
1 copied

Legend:

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

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

    r3127155 r3146536  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.8.3
     11 * Version:           1.8.4
    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.3';
     30        public $version = '1.8.4';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    498498                            'post' => $this->getPost(isset($post['post_id']) ? sanitize_text_field($post['post_id']) : '')
    499499                        ];
     500                    }  elseif ($action === 'get_post_slug') {
     501                        $rs = [
     502                            'result' => 1,
     503                            'slug' => get_permalink(intval($post['post_id']))
     504                        ];
    500505                    } elseif ($action === 'get_version') {
    501506                        $rs = [
     
    843848                'post_id' => $post_id,
    844849                'url' => wp_get_shortlink($post_id),
     850                'slug' => get_permalink($post_id)
    845851            ];
    846852        }
     
    861867                'content' => $post->post_content,
    862868                'title' => $post->post_title,
    863                 'url' => get_permalink($post->ID),
     869                'url' => get_permalink($post->ID)
    864870            ];
    865871        }
  • seowriting/trunk/readme.txt

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

    r3127155 r3146536  
    99 * Plugin Name:       SEOWriting
    1010 * Description:       SEOWriting - AI Writing Tool Plugin For Text Generation
    11  * Version:           1.8.3
     11 * Version:           1.8.4
    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.3';
     30        public $version = '1.8.4';
    3131        /**
    3232         * @var \SEOWriting\APIClient|null
     
    498498                            'post' => $this->getPost(isset($post['post_id']) ? sanitize_text_field($post['post_id']) : '')
    499499                        ];
     500                    }  elseif ($action === 'get_post_slug') {
     501                        $rs = [
     502                            'result' => 1,
     503                            'slug' => get_permalink(intval($post['post_id']))
     504                        ];
    500505                    } elseif ($action === 'get_version') {
    501506                        $rs = [
     
    843848                'post_id' => $post_id,
    844849                'url' => wp_get_shortlink($post_id),
     850                'slug' => get_permalink($post_id)
    845851            ];
    846852        }
     
    861867                'content' => $post->post_content,
    862868                'title' => $post->post_title,
    863                 'url' => get_permalink($post->ID),
     869                'url' => get_permalink($post->ID)
    864870            ];
    865871        }
Note: See TracChangeset for help on using the changeset viewer.