Changeset 3451741
- Timestamp:
- 02/02/2026 06:01:38 AM (8 weeks ago)
- Location:
- nexron-ai-chat
- Files:
-
- 28 added
- 7 edited
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-128x128_logo.png (added)
-
assets/icon-256x256.png (modified) (previous)
-
assets/icon-256x256_logo.png (added)
-
tags/2.0.10 (added)
-
tags/2.0.10/images (added)
-
tags/2.0.10/images/nexron-blue.png (added)
-
tags/2.0.10/images/nexron-icon.png (added)
-
tags/2.0.10/images/nexron-loading.png (added)
-
tags/2.0.10/nexron-ai-chat-admin-script.js (added)
-
tags/2.0.10/nexron-ai-chat-config.php (added)
-
tags/2.0.10/nexron-ai-chat-options.php (added)
-
tags/2.0.10/nexron-ai-chat-products.php (added)
-
tags/2.0.10/nexron-ai-chat-settings.php (added)
-
tags/2.0.10/nexron-ai-chat-style.css (added)
-
tags/2.0.10/nexron-ai-chat.php (added)
-
tags/2.0.10/readme.txt (added)
-
tags/2.0.9 (added)
-
tags/2.0.9/images (added)
-
tags/2.0.9/images/nexron-blue.png (added)
-
tags/2.0.9/images/nexron-icon.png (added)
-
tags/2.0.9/images/nexron-loading.png (added)
-
tags/2.0.9/nexron-ai-chat-admin-script.js (added)
-
tags/2.0.9/nexron-ai-chat-config.php (added)
-
tags/2.0.9/nexron-ai-chat-options.php (added)
-
tags/2.0.9/nexron-ai-chat-products.php (added)
-
tags/2.0.9/nexron-ai-chat-settings.php (added)
-
tags/2.0.9/nexron-ai-chat.php (added)
-
tags/2.0.9/readme.txt (added)
-
trunk/nexron-ai-chat-admin-script.js (modified) (3 diffs)
-
trunk/nexron-ai-chat-options.php (modified) (1 diff)
-
trunk/nexron-ai-chat-products.php (modified) (1 diff)
-
trunk/nexron-ai-chat-style.css (added)
-
trunk/nexron-ai-chat.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nexron-ai-chat/trunk/nexron-ai-chat-admin-script.js
r3379252 r3451741 42 42 window.addEventListener('message', async (event) => { 43 43 44 console.log(event.data.type);45 44 switch (event.data.type) { 46 45 case 'nexron-plugin-initialize': … … 169 168 <p>Test mode is currently active. ONLY administrators will be able to see and interact with the Nexron AI Chatbot on the website.</p> 170 169 </div> 171 <div id="nexron_ai_chat_test_mode_button_container" style="display: flex; justify-content: right;">172 <a id="nexron_ai_chat_test_mode_button" class=" button button-primary" onclick="toggle_test_mode()">Live Mode</a>170 <div id="nexron_ai_chat_test_mode_button_container" class="nexron-ai-chat" style="display: flex; justify-content: right;"> 171 <a id="nexron_ai_chat_test_mode_button" class="nexron-ai-chat button button-primary" onclick="toggle_test_mode()">Live Mode</a> 173 172 </div>` 174 173 } else { … … 180 179 <p>Live mode is currently active. ALL website visitors will be able to see and interact with the Nexron AI Chatbot on the website.</p> 181 180 </div> 182 <div id="nexron_ai_chat_test_mode_button_container" style="display: flex; justify-content: right;">181 <div id="nexron_ai_chat_test_mode_button_container" class="nexron-ai-chat" style="display: flex; justify-content: right;"> 183 182 <a id="nexron_ai_chat_test_mode_button" class="button button-primary" onclick="toggle_test_mode()">Test Mode</a> 184 183 </div>` -
nexron-ai-chat/trunk/nexron-ai-chat-options.php
r3370872 r3451741 3 3 * nexron-ai-chat DB 4 4 */ 5 6 // Exit if accessed directly 7 if (!defined('ABSPATH')) { 8 exit; 9 } 5 10 6 11 // DB Store -
nexron-ai-chat/trunk/nexron-ai-chat-products.php
r3406465 r3451741 3 3 * nexron-ai-chat ecommerce functionality 4 4 */ 5 6 // Exit if accessed directly 7 if (!defined('ABSPATH')) { 8 exit; 9 } 5 10 6 11 // Verify WooCommerce is active -
nexron-ai-chat/trunk/nexron-ai-chat.php
r3411754 r3451741 3 3 * Plugin Name: Nexron AI Chat 4 4 * Description: Nexron AI Chat is a powerful chatbot plugin for WordPress websites, helping visitors easily access website information through conversation. 5 * Version: 2.0. 95 * Version: 2.0.10 6 6 * Author: Nexron LLC 7 7 * Author URI: https://www.nexron.ai … … 15 15 */ 16 16 17 define( 'nexron_ai_chat_version', '2.0. 9' );17 define( 'nexron_ai_chat_version', '2.0.10' ); 18 18 19 19 /* … … 25 25 exit; 26 26 } 27 28 function nexron_ai_chat_enqueue_styles() { 29 // Register the style 30 wp_register_style( 'nexron_ai_chat-style', plugins_url( '/nexron-ai-chat-style.css', __FILE__ ), array(), '1.0.0', 'all' ); 31 32 // Enqueue the style 33 wp_enqueue_style( 'nexron_ai_chat-style' ); 34 } 35 // Hook into the 'wp_enqueue_scripts' action for the frontend 36 add_action( 'admin_enqueue_scripts', 'nexron_ai_chat_enqueue_styles' ); 37 // Use 'admin_enqueue_scripts' for the admin area, if needed 27 38 28 39 function nexron_ai_chat_enqueue_admin_scripts() -
nexron-ai-chat/trunk/readme.txt
r3411754 r3451741 3 3 Requires at least: 5.0 4 4 Tested up to: 6.9 5 Stable tag: 2.0. 95 Stable tag: 2.0.10 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 112 112 == Changelog == 113 113 114 = 2.0.10 - 2026-02-02 = 115 * Improvement: Add Stable tag to repo. 116 * Improvement: Add Nexron stylesheet. 117 * Improvement: Add PHP direct file access prevention. 118 114 119 = 2.0.9 - 2025-12-05 = 115 120 * Updated tested up to 6.9
Note: See TracChangeset
for help on using the changeset viewer.