Plugin Directory

Changeset 3078284


Ignore:
Timestamp:
04/28/2024 03:44:24 PM (22 months ago)
Author:
lorybot
Message:

Update to 1.3.2

Location:
lorybot-ai-chatbot
Files:
84 added
13 edited

Legend:

Unmodified
Added
Removed
  • lorybot-ai-chatbot/tags/1.3.1/assets/css/style.css

    r3078150 r3078284  
    11@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
    22body {
    3     overflow: hidden;
    43    min-width: 100vw;
    54    min-height: 100vh;
  • lorybot-ai-chatbot/trunk/assets/css/style.css

    r3078146 r3078284  
    11@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
    2 body {
    3     overflow: hidden;
    4     min-width: 100vw;
    5     min-height: 100vh;
    6 }
     2
    73* {
    84    box-sizing: border-box;
  • lorybot-ai-chatbot/trunk/assets/js/script.js

    r3078146 r3078284  
    421421    }
    422422 
    423     jQuery(".chatbot .chatbot-content .messages").on("wheel", function (event) {
    424         handleScroll(jQuery(this));
    425     });
    426 
    427     jQuery(".chatbot .chatbot-content .messages").on("touchmove", function (event) {
    428         handleScroll(jQuery(this));
     423    jQuery(".chatbot .chatbot-content .messages").on("wheel touchmove", function(event) {
     424        event.preventDefault();  // Prevents the browser's default scroll behavior
     425        event.stopPropagation(); // Stops the scroll event from bubbling up to parent elements
     426        handleScroll(jQuery(this)); // Your existing function to handle scroll logic
    429427    });
    430428 
  • lorybot-ai-chatbot/trunk/includes/functions-enqueue-scripts.php

    r3078146 r3078284  
    1818
    1919    // Enqueue the chatbot's main JavaScript, making sure jQuery is loaded as a dependency
    20     wp_enqueue_script('lorybot-script', plugin_dir_url(__FILE__) . '../assets/js/script.js', ['jquery'], '1.3', true);
     20    wp_enqueue_script('lorybot-script', plugin_dir_url(__FILE__) . '../assets/js/script.js', ['jquery'], '1.3.2', true);
    2121
    2222    // Enqueue the chatbot's main stylesheet
    23     wp_enqueue_style('lorybot-style', plugin_dir_url(__FILE__) . '../assets/css/style.css');
     23    wp_enqueue_style('lorybot-style', plugin_dir_url(__FILE__) . '../assets/css/style.css', [], '1.3.2');
    2424
    2525    // Localize the script with data from PHP
  • lorybot-ai-chatbot/trunk/includes/lorybot_update.php

    r3078149 r3078284  
    44function lorybot_update_settings() {
    55    $current_version = get_option('lorybot_version', '1.2'); // Default to version 1.0 if not set
    6     $new_version = '1.2.1'; // The new version of your plugin
     6    $new_version = '1.3.2'; // The new version of your plugin
    77
    88    // if current version is empty
  • lorybot-ai-chatbot/trunk/lorybot.php

    r3078151 r3078284  
    44 * Plugin URI: https://www.lorybot.com
    55 * Description: Build better customer relationships and boost sales with LoryBot's AI chatbot. Using your unique business data, LoryBot provides personalized, helpful responses, creating meaningful conversations that keep visitors engaged. Optimize the return from your website traffic with tailored, individualized interactions powered by leading-edge AI technology.
    6  * Version: 1.3.1
     6 * Version: 1.3.2
    77 * Author: Danilo Vaccalluzzo
    88 * Author URI: https://www.linkedin.com/in/danilovaccalluzzo/
  • lorybot-ai-chatbot/trunk/readme.txt

    r3078151 r3078284  
    33Tags: AI Chatbot, Chatbot plugin, Customer support chat, Artificial Intelligence Chat, WP ChatBot, Conversational AI, Virtual assistant, Automated customer service, Chatbot analytics, Multilingual chatbot, AI-driven customer engagement, Natural Language Processing (NLP), Chatbot customization, Chatbot integration, AI customer support, AI-powered chat, Ecommerce chatbot, Chatbot for sales, Lead generation chatbot, Personalized chat experience, Chatbot templates, Rule-based chatbots, Chatbot builder, Chatbot for WordPress, AI chatbot for business, Chatbot user interface design, Chatbot performance metrics, AI chat support, Chatbot development tools, Chatbot conversation design
    44Tested up to: 6.4.2
    5 Stable tag: 1.3.1
     5Stable tag: 1.3.2
    66Requires PHP: 5.3
    77Requires at least: 4.9
     
    9393== Changelog ==
    9494
     95= 1.3.2 - 28.04.2024 -
     96- Fix: Minor bugs with body overflow
     97
    9598= 1.3.1 - 28.04.2024 -
    9699- Fix: Minor bugs
Note: See TracChangeset for help on using the changeset viewer.