Plugin Directory

Changeset 3311274


Ignore:
Timestamp:
06/13/2025 11:38:00 PM (10 months ago)
Author:
fluxlogic
Message:

fixed bug related to api key storage

Location:
content-craft-ai
Files:
191 added
3 edited

Legend:

Unmodified
Added
Removed
  • content-craft-ai/trunk/app/api/auth/me.php

    r3311202 r3311274  
    143143function content_craft_ai_clear_auth()
    144144{
    145     // Clear all authentication data
     145    // Clear only the JWT token and subscription ID
    146146    delete_option('content_craft_ai_token');
    147     delete_option('content_craft_ai_api_key');
    148147    delete_option('content_craft_ai_active_subscription');
    149148
    150     error_log('Content Craft AI: Cleared all authentication data including subscription ID');
     149    error_log('Content Craft AI: Cleared authentication token and subscription ID');
    151150}
  • content-craft-ai/trunk/content-craft-ai.php

    r3311202 r3311274  
    33/**
    44 * Plugin Name: Content Craft AI
    5  * Description: Content Craft AI is a powerful WordPress plugin that transforms how you create content using advanced AI models to generate high-quality, human-like articles.
    6  * Version: 4.1.0
     5 * Description: Content Craft AI is a powerful WordPress plugin that generate human-like SEO articles that bypass AI detectors like GPTZero and Originality.ai using our advanced WordPress plugin.
     6 * Version: 4.1.2
    77 * Plugin URI: https://fluxlogic.us
    88 * Author: FluxLogic
     
    2020define('CONTENT_CRAFT_AI_PLUGIN_PATH', plugin_dir_path(__FILE__));
    2121define('CONTENT_CRAFT_AI_PLUGIN_URL', plugin_dir_url(__FILE__));
    22 define('CONTENT_CRAFT_AI_VERSION', '4.1.0');
     22define('CONTENT_CRAFT_AI_VERSION', '4.1.2');
    2323define('CONTENT_CRAFT_AI_EXTERNAL_API', 'https://content-craft-api-railway-production.up.railway.app/api/v1');
     24// define('CONTENT_CRAFT_AI_EXTERNAL_API', 'http://localhost:3000/api/v1');
    2425
    2526// Composer autoloader
  • content-craft-ai/trunk/readme.txt

    r3311202 r3311274  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 4.1.1
     6Stable tag: 4.1.2
    77Requires PHP: 7.1.3
    88License: GPLv2 or later
     
    9999== Changelog ==
    100100
     101= 4.1.2 =
     102* Fixed issue related to api key clearing
     103
    101104= 4.1.1 =
    102105* Fixed issues related to timeout API
     
    154157== Upgrade Notice ==
    155158
     159= 4.1.2 =
     160* Fixed issue related to api key clearing
     161
    156162= 4.1.1 =
    157163* Fixed issues related to timeout API
    158164* Fixed issues related to title generations articles
    159 * Implemented no follow for smartlink SEO
     165* Impelemented no follow for smartlink SEO
    160166
    161167= 4.1.0 =
Note: See TracChangeset for help on using the changeset viewer.