Plugin Directory

Changeset 3450254


Ignore:
Timestamp:
01/30/2026 09:07:45 AM (2 months ago)
Author:
uzziellite
Message:

Release 1.0.2: replace JPG icon with PNG and ship all assets

Location:
emmerce-chatbot
Files:
1 added
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • emmerce-chatbot/trunk/emmerce-chatbot.php

    r3449880 r3450254  
    44 * Plugin URI: https://github.com/uzziellite/emmerce-chatbot
    55 * Description: Adds a professional AI chatbot managed by Emmerce to your website to manage communication between you and your customers. You need to have a valid Emmerce account to use this plugin.
    6  * Version: 1.0.1
     6 * Version: 1.0.2
    77 * Author: Uzziel Lite
    88 * Author URI: https://github.com/uzziellite
     
    106106                            plugin_dir_url(__FILE__) . 'dist/' . $js_file,
    107107                            array(),
    108                             '1.0.1',
     108                            '1.0.2',
    109109                            true
    110110                        );
     
    122122                                plugin_dir_url(__FILE__) . 'dist/' . $css_file,
    123123                                array(),
    124                                 '1.0.1'
     124                                '1.0.2'
    125125                            );
    126126
     
    326326            plugin_dir_url(__FILE__) . 'src/admin-style.css',
    327327            array(),
    328             '1.0.1'
     328            '1.0.2'
    329329        );
    330330    }
  • emmerce-chatbot/trunk/readme.txt

    r3449892 r3450254  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GNU General Public License v3.0
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5454== Changelog ==
    5555
     56= 1.0.2 =
     57* Fixed wrong asset pushed.
     58
    5659= 1.0.1 =
    5760* Fixed CSS queuing for proper stylesheet loading.
     
    6366
    6467== Upgrade Notice ==
     68
     69= 1.0.2 =
     70Bug fix. An asset failed to be pushed causing plugin to fail
    6571
    6672= 1.0.1 =
  • emmerce-chatbot/trunk/src/App.svelte

    r3449880 r3450254  
    251251      const apiResponse = await sendRequestToApi(endpoint, `${emmerceChatbot.accessUrl}/message/${clientId}?mode=${emmerceChatbot.debugMode}`, nonce, 'POST', params);
    252252
    253       console.log(`${emmerceChatbot.accessUrl}/waba/send-website-message/${clientId}/`);
     253      //console.log(`${emmerceChatbot.accessUrl}/waba/send-website-message/${clientId}/`);
    254254     
    255255      if(apiResponse.data?.status === "sent"){
     
    358358    }
    359359
    360     console.log('Setting env variables');
     360    //console.log('Setting env variables');
    361361    nonce = emmerceChatbot.nonce;
    362362    clientId = emmerceChatbot.clientId;
     
    364364    endpoint = emmerceChatbot.ajaxurl;
    365365    isOpen = emmerceChatbot.isOpen || false;
    366     console.log('Variables set:', { nonce, clientId, position, endpoint, isOpen });
     366    //console.log('Variables set:', { nonce, clientId, position, endpoint, isOpen });
    367367
    368368    /**
     
    378378      chatButtonPingColor = chatSettings?.website_color
    379379
    380       console.log('Loaded options are: ', chatSettings, 'and url called is: ', `${emmerceChatbot.accessUrl}/start/${clientId}?mode=${emmerceChatbot.debugMode}`);
     380      //console.log('Loaded options are: ', chatSettings, 'and url called is: ', `${emmerceChatbot.accessUrl}/start/${clientId}?mode=${emmerceChatbot.debugMode}`);
    381381    } catch (error) {
    382382      console.error('Error:', error);
Note: See TracChangeset for help on using the changeset viewer.