Plugin Directory

Changeset 3372373


Ignore:
Timestamp:
10/03/2025 01:04:04 PM (5 months ago)
Author:
mxchat
Message:

Added plugin URI to the main php file.

Location:
mxchat-basic
Files:
103 added
5 edited

Legend:

Unmodified
Added
Removed
  • mxchat-basic/trunk/includes/class-mxchat-addons.php

    r3370326 r3372373  
    191191     */
    192192    public function enqueue_styles() {
    193         $plugin_version = '2.4.5';
     193        $plugin_version = '2.4.6';
    194194
    195195        wp_enqueue_style(
  • mxchat-basic/trunk/includes/class-mxchat-admin.php

    r3370326 r3372373  
    65316531public function mxchat_enqueue_admin_assets() {
    65326532    // Get plugin version (define this in your main plugin file)
    6533     $version = defined('MXCHAT_VERSION') ? MXCHAT_VERSION : '2.4.5';
     6533    $version = defined('MXCHAT_VERSION') ? MXCHAT_VERSION : '2.4.6';
    65346534
    65356535    // Use file modification time for development (remove in production)
  • mxchat-basic/trunk/includes/class-mxchat-integrator.php

    r3370326 r3372373  
    63396339public function mxchat_enqueue_scripts_styles() {
    63406340    // Define version numbers for the styles and scripts
    6341     $chat_style_version = '2.4.5';
    6342     $chat_script_version = '2.4.5';
     6341    $chat_style_version = '2.4.6';
     6342    $chat_script_version = '2.4.6';
    63436343    // Enqueue the script
    63446344    wp_enqueue_script(
  • mxchat-basic/trunk/mxchat-basic.php

    r3370326 r3372373  
    22/**
    33 * Plugin Name: MxChat
     4 * Plugin URI: https://mxchat.ai/
    45 * Description: AI chatbot for WordPress with OpenAI, Claude, xAI, DeepSeek, live agent, PDF uploads, WooCommerce, and training on website data.
    5  * Version: 2.4.5
     6 * Version: 2.4.6
    67 * Author: MxChat
    78 * Author URI: https://mxchat.ai
     
    1718
    1819// Define plugin version constant for asset versioning
    19 define('MXCHAT_VERSION', '2.4.5');
     20define('MXCHAT_VERSION', '2.4.6');
    2021
    2122function mxchat_load_textdomain() {
  • mxchat-basic/trunk/readme.txt

    r3370326 r3372373  
    66Tested up to: 6.8
    77Requires PHP: 7.2
    8 Stable tag: 2.4.5
     8Stable tag: 2.4.6
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    182182== Changelog ==
    183183
     184= 2.4.6 - October, 3, 2025 =
     185- Update: Added plugin URI information.
     186
    184187= 2.4.5 - September 30, 2025 =
    185188- Bug Fix: Restored missing CSS properties for popular questions collapse/toggle buttons that were accidentally removed during code cleanup.
     
    553556== Upgrade Notice ==
    554557
    555 = 2.4.5 =
    556 Critical CSS fix for popular questions UI buttons. Update immediately if you're experiencing button display or interaction issues in the chatbot interface.
     558= 2.4.6 =
     559- Update: Added plugin URI information.
    557560
    558561== License & Warranty ==
Note: See TracChangeset for help on using the changeset viewer.