Plugin Directory

Changeset 3241060


Ignore:
Timestamp:
02/15/2025 06:26:31 PM (14 months ago)
Author:
quickpressai
Message:

Updated plugin files for version 1.9.2

Location:
quickpressai/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • quickpressai/trunk/quickpressai.php

    r3240810 r3241060  
    33Plugin Name: QuickPress AI
    44Description: Quickly generate high-quality content in WordPress with an AI writing assistant that prioritizes creative freedom, flexibility, and ease of use.
    5 Version: 1.9.1
     5Version: 1.9.2
    66Author: QuickPress AI
    77Author URI: https://quickpressai.com/
     
    1717}
    1818
    19 define('QUICKPRESS_AI_VERSION', '1.9.1');
     19define('QUICKPRESS_AI_VERSION', '1.9.2');
    2020define('QUICKPRESS_AI_DEBUG', false);
    2121
     
    14801480function quickpress_ai_uninstall() {
    14811481    global $wpdb;
    1482     $options = [
    1483         'quickpress_ai_api_key',
    1484         'quickpress_ai_encryption_key',
    1485         'quickpress_ai_system_prompt',
    1486         'quickpress_ai_system_prompt_option',
    1487         'quickpress_ai_selected_model',
    1488         'quickpress_ai_title_prompt_template',
    1489         'quickpress_ai_content_prompt_template',
    1490         'quickpress_ai_excerpt_prompt_template',
    1491         'quickpress_ai_temperature',
    1492         'quickpress_ai_frequency_penalty',
    1493         'quickpress_ai_presence_penalty',
    1494         'quickpress_ai_generate_timeout',
    1495         'quickpress_ai_serpstack_api_key'
    1496     ];
    1497     foreach ($options as $option) {
    1498         delete_option($option);
    1499     }
    1500     $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE 'quickpress_ai_keyword_data_%'");
     1482    $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE 'quickpress_ai_%'");
    15011483    if (is_multisite()) {
    1502         $wpdb->query("DELETE FROM {$wpdb->sitemeta} WHERE meta_key LIKE 'quickpress_ai_keyword_data_%'");
    1503     }
    1504 }
     1484        $wpdb->query("DELETE FROM {$wpdb->sitemeta} WHERE meta_key LIKE 'quickpress_ai_%'");
     1485    }
     1486}
  • quickpressai/trunk/readme.txt

    r3240810 r3241060  
    55Tags: ai, seo, automation, content generator, content creation
    66Tested up to: 6.7
    7 Stable tag: 1.9.1
     7Stable tag: 1.9.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Changelog ==
    7272
     73= 1.9.2 =
     74* Optimized option cleanup process during plugin uninstallation
     75
    7376= 1.9.1 =
    7477* Added Keyword Creator feature
Note: See TracChangeset for help on using the changeset viewer.