Changeset 3082992
- Timestamp:
- 05/08/2024 06:34:01 AM (22 months ago)
- Location:
- lorybot-ai-chatbot
- Files:
-
- 39 added
- 7 edited
-
tags/1.3.4 (added)
-
tags/1.3.4/assets (added)
-
tags/1.3.4/assets/css (added)
-
tags/1.3.4/assets/css/admin-style.css (added)
-
tags/1.3.4/assets/css/style.css (added)
-
tags/1.3.4/assets/icon-256x256.png (added)
-
tags/1.3.4/assets/images (added)
-
tags/1.3.4/assets/images/chatbot-profile.svg (added)
-
tags/1.3.4/assets/images/lorybot-chat-black.svg (added)
-
tags/1.3.4/assets/images/lorybot-chat-white.svg (added)
-
tags/1.3.4/assets/images/lorybot-logo.png (added)
-
tags/1.3.4/assets/images/microphone.svg (added)
-
tags/1.3.4/assets/images/screenshots (added)
-
tags/1.3.4/assets/images/send-message.svg (added)
-
tags/1.3.4/assets/images/start-chat.svg (added)
-
tags/1.3.4/assets/images/user-profile.svg (added)
-
tags/1.3.4/assets/js (added)
-
tags/1.3.4/assets/js/script.js (added)
-
tags/1.3.4/assets/screenshot-1.png (added)
-
tags/1.3.4/assets/screenshot-2.png (added)
-
tags/1.3.4/assets/screenshot-3.png (added)
-
tags/1.3.4/assets/screenshot-4.png (added)
-
tags/1.3.4/assets/screenshot-5.png (added)
-
tags/1.3.4/includes (added)
-
tags/1.3.4/includes/functions-chat-display.php (added)
-
tags/1.3.4/includes/functions-enqueue-scripts.php (added)
-
tags/1.3.4/includes/functions-settings.php (added)
-
tags/1.3.4/includes/lorybot_update.php (added)
-
tags/1.3.4/includes/settings (added)
-
tags/1.3.4/includes/settings/callbacks.php (added)
-
tags/1.3.4/includes/settings/chat-html.php (added)
-
tags/1.3.4/includes/settings/fields.php (added)
-
tags/1.3.4/includes/settings/sanitaze.php (added)
-
tags/1.3.4/includes/utils.php (added)
-
tags/1.3.4/lorybot.php (added)
-
tags/1.3.4/readme.txt (added)
-
tags/1.3.4/routes (added)
-
tags/1.3.4/routes/activate.php (added)
-
tags/1.3.4/routes/deactivate.php (added)
-
trunk/assets/css/style.css (modified) (8 diffs)
-
trunk/assets/screenshot-1.png (modified) (previous)
-
trunk/assets/screenshot-2.png (modified) (previous)
-
trunk/assets/screenshot-3.png (modified) (previous)
-
trunk/includes/functions-enqueue-scripts.php (modified) (1 diff)
-
trunk/lorybot.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lorybot-ai-chatbot/trunk/assets/css/style.css
r3078284 r3082992 23 23 animation-iteration-count: infinite; 24 24 z-index: 9999; 25 padding: 0; 25 26 } 26 27 @keyframes scaleUp1 { … … 124 125 color: var(--title-color); 125 126 margin: 0; 127 font-family: "Poppins", sans-serif; 126 128 } 127 129 .chatbot .chatbot-header .profile p { … … 131 133 color: rgba(255, 255, 255, 0.73); 132 134 margin: 0; 135 font-family: "Poppins", sans-serif; 136 133 137 } 134 138 … … 150 154 box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1); 151 155 cursor: pointer; 156 padding: 0; 152 157 } 153 158 .chatbot .chatbot-header .chatbot-close-btn span { … … 281 286 .chatbot .chatbot-message .profile { 282 287 background-color: var(--main-color); 283 background-image: var(--profile-image-url); 284 background-size: 2 5px;285 background-repeat: no-repeat; 286 background-position: center center; 288 background-image: var(--profile-image-url); 289 background-size: 22px; 290 background-repeat: no-repeat; 291 background-position: center center; 287 292 width: 36px; 288 293 height: 36px; … … 317 322 max-width: 100%; 318 323 word-wrap: break-word; 324 font-family: "Poppins", sans-serif; 319 325 } 320 326 .chatbot .chatbot-message ul li .bold { … … 551 557 border: 1px solid var(--main-color); 552 558 background-color: var(--main-color); 553 background-image: var(--send-icon-url); 554 background-size: 20px; 555 background-repeat: no-repeat; 556 background-position: center center; 559 background-image: var(--send-icon-url); 560 background-size: 20px; 561 background-repeat: no-repeat; 562 background-position: center center; 557 563 display: flex; 558 564 align-items: center; 559 565 justify-content: center; 560 566 cursor: pointer; 567 padding: 0; 561 568 } 562 569 … … 644 651 right: 10px; 645 652 } 646 .chatbot-toggler img{647 width: 25px;653 .chatbot-toggler div { 654 background-size: 22px; 648 655 } 649 656 .chatbot { -
lorybot-ai-chatbot/trunk/includes/functions-enqueue-scripts.php
r3082786 r3082992 18 18 19 19 // 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. 3', true);20 wp_enqueue_script('lorybot-script', plugin_dir_url(__FILE__) . '../assets/js/script.js', ['jquery'], '1.3.4', true); 21 21 22 22 // Enqueue the chatbot's main stylesheet 23 wp_enqueue_style('lorybot-style', plugin_dir_url(__FILE__) . '../assets/css/style.css', [], '1.3. 3');23 wp_enqueue_style('lorybot-style', plugin_dir_url(__FILE__) . '../assets/css/style.css', [], '1.3.4'); 24 24 25 25 // Localize the script with data from PHP -
lorybot-ai-chatbot/trunk/lorybot.php
r3082786 r3082992 4 4 * Plugin URI: https://www.lorybot.com 5 5 * 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. 36 * Version: 1.3.4 7 7 * Author: Danilo Vaccalluzzo 8 8 * Author URI: https://www.linkedin.com/in/danilovaccalluzzo/ -
lorybot-ai-chatbot/trunk/readme.txt
r3082786 r3082992 3 3 Tags: 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 4 4 Tested up to: 6.4.2 5 Stable tag: 1.3. 35 Stable tag: 1.3.4 6 6 Requires PHP: 5.3 7 7 Requires at least: 4.9 … … 93 93 == Changelog == 94 94 95 = 1.3.4 - 08.05.2024 - 96 - Fix: CSS improvements 97 95 98 = 1.3.3 - 07.05.2024 - 96 99 - Fix: Big with Scrolling the chat
Note: See TracChangeset
for help on using the changeset viewer.