Plugin Directory

Changeset 3357128


Ignore:
Timestamp:
09/06/2025 02:20:43 PM (7 months ago)
Author:
guruteam
Message:

1.1.1 version

Location:
site-chat-on-telegram
Files:
373 added
3 edited

Legend:

Unmodified
Added
Removed
  • site-chat-on-telegram/trunk/inc/ScotAiBot.php

    r3350181 r3357128  
    158158        }
    159159
     160        $messages = array_reverse(array_filter($messages, function ($message) {
     161            return in_array($message['sender_type'], ['user', 'agent', 'bot'], true);
     162        }));
     163
    160164        $messages = array_map( function ( $message ) {
    161165            return $message['sender_type'] . ': ' . $message['message'];
  • site-chat-on-telegram/trunk/readme.txt

    r3350168 r3357128  
    11=== Site Chat on Telegram ===
    22Contributors: guruteam
    3 Tags: chat, AI chat bot, telegram bot, support chat, customer support
     3Tags: chat, AI chat bot, telegram bot, support chat, AI assistant
    44Requires at least: 6.2
    55Tested up to: 6.7.2
    66Requires PHP: 7.4
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383== Changelog ==
    8484
    85 = 1.1.0 - 2025-07-04 =
     85= 1.1.1 - 2025-09-06 =
     86
     87* Improved AI replies
     88
     89= 1.1.0 - 2025-08-25 =
    8690
    8791* Added AI integration with OpenAI
  • site-chat-on-telegram/trunk/site-chat-on-telegram.php

    r3350168 r3357128  
    44 * Description: Site Chat on Telegram is a powerful and convenient WordPress plugin that allows you to integrate a support chat on your website with Telegram. With this plugin, your customers can easily send messages through the chat widget on your site, and administrators and support staff can quickly and efficiently respond to them directly in Telegram.
    55 * Plugin URI:  https://wp-guruteam.com/scot/
    6  * Version:     1.1.0
     6 * Version:     1.1.1
    77 * Author:      Guru Team
    88 * Author URI:  https://wp-guruteam.com/
     
    1313if (!defined('ABSPATH')) exit;
    1414
    15 define('SCOT_V', '1.1.0');
     15define('SCOT_V', '1.1.1');
    1616define('SCOT_DIR', __DIR__);
    1717define('SCOT_URL', plugins_url('/', __FILE__));
Note: See TracChangeset for help on using the changeset viewer.