Changeset 3294254
- Timestamp:
- 05/15/2025 02:56:56 PM (11 months ago)
- Location:
- andy-votre-assistant-intelligent
- Files:
-
- 1 added
- 3 edited
- 6 copied
-
tags/2.0.1 (added)
-
tags/2.0.1/Andy (copied) (copied from andy-votre-assistant-intelligent/trunk/Andy)
-
tags/2.0.1/Andy-Wordress-Extension.php (copied) (copied from andy-votre-assistant-intelligent/trunk/Andy-Wordress-Extension.php) (5 diffs)
-
tags/2.0.1/Andy/Andy.html (copied) (copied from andy-votre-assistant-intelligent/trunk/Andy/Andy.html)
-
tags/2.0.1/Andy/assets/Andy-Widget/scripts/Andy.js (copied) (copied from andy-votre-assistant-intelligent/trunk/Andy/assets/Andy-Widget/scripts/Andy.js) (2 diffs)
-
tags/2.0.1/Andy/assets/Andy-Widget/styles/Andy.css (copied) (copied from andy-votre-assistant-intelligent/trunk/Andy/assets/Andy-Widget/styles/Andy.css)
-
tags/2.0.1/readme.txt (copied) (copied from andy-votre-assistant-intelligent/trunk/readme.txt) (2 diffs)
-
trunk/Andy-Wordress-Extension.php (modified) (5 diffs)
-
trunk/Andy/assets/Andy-Widget/scripts/Andy.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
andy-votre-assistant-intelligent/tags/2.0.1/Andy-Wordress-Extension.php
r3294243 r3294254 4 4 * Plugin Name: Andy, Votre Assistant Intelligent 5 5 * Description: Installe Andy sur votre site WordPress. 6 * Version: 2.0. 06 * Version: 2.0.1 7 7 * Author: Maxime MORLET (MaxiCom) 8 8 * License: GPLv2 or later … … 82 82 if (version_compare($wp_version, '6.3', '>=')) { 83 83 // Modern WordPress 6.3+ way 84 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0. 0', [84 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0.1', [ 85 85 'strategy' => 'defer', 86 86 ]); 87 87 } else { 88 88 // Old WordPress way 89 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0. 0', true);89 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0.1', true); 90 90 91 91 // Add defer manually … … 250 250 <?php 251 251 // Enqueue the script to handle the notice dismissal 252 wp_enqueue_script('andy-dismiss-notice', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-dismiss-notice.js', [], '2.0. 0', true);252 wp_enqueue_script('andy-dismiss-notice', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-dismiss-notice.js', [], '2.0.1', true); 253 253 254 254 endif; … … 306 306 <?php 307 307 // Enqueue the script for handling the external settings form submission 308 wp_enqueue_script('andy-external-settings', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-external-wordpress-settings.js', [], '2.0. 0', true);308 wp_enqueue_script('andy-external-settings', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-external-wordpress-settings.js', [], '2.0.1', true); 309 309 } 310 310 … … 405 405 $custom_css = ":root { --primary-color: " . esc_attr($primary) . " !important; }"; 406 406 407 wp_enqueue_style('andy-style', $plugin_url . 'Andy/assets/Andy-Widget/styles/Andy.css', [], '2.0. 0');407 wp_enqueue_style('andy-style', $plugin_url . 'Andy/assets/Andy-Widget/styles/Andy.css', [], '2.0.1'); 408 408 wp_add_inline_style('andy-style', $custom_css); 409 409 } -
andy-votre-assistant-intelligent/tags/2.0.1/Andy/assets/Andy-Widget/scripts/Andy.js
r3294243 r3294254 279 279 280 280 // When the WebSocket connection is open 281 webSocket.onopen = () => {281 webSocket.onopen = async () => { 282 282 console.log('WebSocket connection established'); 283 283 … … 306 306 } 307 307 308 webSocket.send(JSON.stringify(userIdMessage));308 await webSocket.send(JSON.stringify(userIdMessage)); 309 309 } 310 310 -
andy-votre-assistant-intelligent/tags/2.0.1/readme.txt
r3294243 r3294254 6 6 Requires PHP: 7.3 7 7 Donate link: https://essayez-andy.fr 8 Stable tag: 2.0. 08 Stable tag: 2.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 57 57 = 2.0 = 58 58 * Ajout des messages customisés pour l'utilisateur 59 60 == Upgrade Notice ==61 62 = 1.2 =63 Ajout de la gestion des FAQ et optimisation des performances. Nous recommandons la mise à jour pour améliorer l'expérience utilisateur. -
andy-votre-assistant-intelligent/trunk/Andy-Wordress-Extension.php
r3294243 r3294254 4 4 * Plugin Name: Andy, Votre Assistant Intelligent 5 5 * Description: Installe Andy sur votre site WordPress. 6 * Version: 2.0. 06 * Version: 2.0.1 7 7 * Author: Maxime MORLET (MaxiCom) 8 8 * License: GPLv2 or later … … 82 82 if (version_compare($wp_version, '6.3', '>=')) { 83 83 // Modern WordPress 6.3+ way 84 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0. 0', [84 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0.1', [ 85 85 'strategy' => 'defer', 86 86 ]); 87 87 } else { 88 88 // Old WordPress way 89 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0. 0', true);89 wp_enqueue_script('andy-script', $plugin_url . 'Andy/assets/Andy-Widget/scripts/Andy.js', [], '2.0.1', true); 90 90 91 91 // Add defer manually … … 250 250 <?php 251 251 // Enqueue the script to handle the notice dismissal 252 wp_enqueue_script('andy-dismiss-notice', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-dismiss-notice.js', [], '2.0. 0', true);252 wp_enqueue_script('andy-dismiss-notice', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-dismiss-notice.js', [], '2.0.1', true); 253 253 254 254 endif; … … 306 306 <?php 307 307 // Enqueue the script for handling the external settings form submission 308 wp_enqueue_script('andy-external-settings', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-external-wordpress-settings.js', [], '2.0. 0', true);308 wp_enqueue_script('andy-external-settings', $plugin_url . 'Andy/assets/Wordpress/scripts/andy-external-wordpress-settings.js', [], '2.0.1', true); 309 309 } 310 310 … … 405 405 $custom_css = ":root { --primary-color: " . esc_attr($primary) . " !important; }"; 406 406 407 wp_enqueue_style('andy-style', $plugin_url . 'Andy/assets/Andy-Widget/styles/Andy.css', [], '2.0. 0');407 wp_enqueue_style('andy-style', $plugin_url . 'Andy/assets/Andy-Widget/styles/Andy.css', [], '2.0.1'); 408 408 wp_add_inline_style('andy-style', $custom_css); 409 409 } -
andy-votre-assistant-intelligent/trunk/Andy/assets/Andy-Widget/scripts/Andy.js
r3294243 r3294254 279 279 280 280 // When the WebSocket connection is open 281 webSocket.onopen = () => {281 webSocket.onopen = async () => { 282 282 console.log('WebSocket connection established'); 283 283 … … 306 306 } 307 307 308 webSocket.send(JSON.stringify(userIdMessage));308 await webSocket.send(JSON.stringify(userIdMessage)); 309 309 } 310 310 -
andy-votre-assistant-intelligent/trunk/readme.txt
r3294243 r3294254 6 6 Requires PHP: 7.3 7 7 Donate link: https://essayez-andy.fr 8 Stable tag: 2.0. 08 Stable tag: 2.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 57 57 = 2.0 = 58 58 * Ajout des messages customisés pour l'utilisateur 59 60 == Upgrade Notice ==61 62 = 1.2 =63 Ajout de la gestion des FAQ et optimisation des performances. Nous recommandons la mise à jour pour améliorer l'expérience utilisateur.
Note: See TracChangeset
for help on using the changeset viewer.