Plugin Directory

Changeset 3061406


Ignore:
Timestamp:
03/30/2024 05:24:46 AM (21 months ago)
Author:
livingcomments
Message:

Deselect negative comment tones by default for positive user experience

Location:
living-comments/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • living-comments/trunk/living-comments.php

    r3057903 r3061406  
    44 * Plugin URI:        https://www.livingcomments.com/
    55 * Description:       Generate AI comments and replies on WordPress automatically.
    6  * Version:           1.1.0
     6 * Version:           1.1.1
    77 * Requires at least: 3.8
    88 * Requires PHP:      5.2
  • living-comments/trunk/readme.txt

    r3057907 r3061406  
    55Tested up to: 6.5
    66Requires PHP: 5.2
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPL-2.0-or-later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    141141
    142142== Changelog ==
     143= 1.1.1 - 2024-03-29 =
     144- Tweak: Deselected negative tones upon installation for a more positive initial user experience.
     145- Improved: Security measures during the signup process.
    143146
    144147= 1.1.0 - 2024-03-24 =
  • living-comments/trunk/src/init.php

    r3048421 r3061406  
    6969        'livcom_website_category'            => array(
    7070            'News', 'Entertainment', 'Lifestyle', 'Technology', 'Finance', 'Sports', 'Travel', 'Automotive', 'Health', 'Food and Drink', 'Business', 'Education', 'Gaming', 'Home and Garden', 'Law', 'Real Estate', 'Science', 'Other'
     71        ),
     72        'livcom_plugin_tones_selected'       => array(
     73            "Positive", "Supportive", "Enthusiastic", "Empowering", "Appreciative", "Joyful", "Inspirational", "Encouraging", "Optimistic", "Respectful", "Sympathetic", "Sincere", "Caring", "Funny", "Witty", "Ecstatic", "Surprised", "Confident", "Engaging", "Fascinating", "Lighthearted", "Genuine", "Thoughtful", "Playful", "Intriguing", "Neutral", "Casual", "Curious", "Formal", "Informal", "Informative", "Worried", "Opinionated", "Judgmental", "Assertive"
    7174        ),
    7275        'livcom_plugin_possible_tones'       => array(
  • living-comments/trunk/src/new-user.php

    r3048421 r3061406  
    3535        'country' => isset( $_POST['country'] ) ? sanitize_text_field( $_POST['country'] ) : '',
    3636        'website_category' => isset( $_POST['website_category'] ) ? sanitize_text_field( $_POST['website_category'] ) : '',
    37         'has_cron' => wp_next_scheduled( 'livcom_cron_check_event' ) !== false
     37        'has_cron' => wp_next_scheduled( 'livcom_cron_check_event' ) !== false,
     38        'user_agent' => sanitize_text_field($_SERVER['HTTP_USER_AGENT'])
    3839    );
    3940
Note: See TracChangeset for help on using the changeset viewer.