Changeset 3061406
- Timestamp:
- 03/30/2024 05:24:46 AM (21 months ago)
- Location:
- living-comments/trunk
- Files:
-
- 4 edited
-
living-comments.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/init.php (modified) (1 diff)
-
src/new-user.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
living-comments/trunk/living-comments.php
r3057903 r3061406 4 4 * Plugin URI: https://www.livingcomments.com/ 5 5 * Description: Generate AI comments and replies on WordPress automatically. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requires at least: 3.8 8 8 * Requires PHP: 5.2 -
living-comments/trunk/readme.txt
r3057907 r3061406 5 5 Tested up to: 6.5 6 6 Requires PHP: 5.2 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 License: GPL-2.0-or-later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 141 141 142 142 == 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. 143 146 144 147 = 1.1.0 - 2024-03-24 = -
living-comments/trunk/src/init.php
r3048421 r3061406 69 69 'livcom_website_category' => array( 70 70 '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" 71 74 ), 72 75 'livcom_plugin_possible_tones' => array( -
living-comments/trunk/src/new-user.php
r3048421 r3061406 35 35 'country' => isset( $_POST['country'] ) ? sanitize_text_field( $_POST['country'] ) : '', 36 36 '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']) 38 39 ); 39 40
Note: See TracChangeset
for help on using the changeset viewer.