Changeset 2887733
- Timestamp:
- 03/27/2023 04:46:48 PM (3 years ago)
- Location:
- staffing-engine-chatbot
- Files:
-
- 8 edited
- 1 copied
-
tags/0.7.0 (copied) (copied from staffing-engine-chatbot/trunk)
-
tags/0.7.0/includes/admin.php (modified) (2 diffs)
-
tags/0.7.0/includes/embed.php (modified) (2 diffs)
-
tags/0.7.0/readme.txt (modified) (2 diffs)
-
tags/0.7.0/staffing-engine-chatbot.php (modified) (3 diffs)
-
trunk/includes/admin.php (modified) (2 diffs)
-
trunk/includes/embed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/staffing-engine-chatbot.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
staffing-engine-chatbot/tags/0.7.0/includes/admin.php
r2854949 r2887733 373 373 'text' => __( 'Customize how the chatbot acts under certain conditions', Plugin::SLUG ), 374 374 'fields' => array( 375 'allowStartNewConversation' => array(375 'allowStartNewConversation' => array( 376 376 'id' => 'allow_start_new_conversation', 377 377 'title' => __( 'Allow starting a new conversation', Plugin::SLUG ), … … 384 384 ), 385 385 ), 386 'allowWindowDrag' => array( 387 'id' => 'allow_window_drag', 388 'title' => __( 'Allow dragging the chat window', Plugin::SLUG ), 389 'text' => __( 'Set whether site visitors can move the chat window around the site.', Plugin::SLUG ), 390 'type' => 'radio', 391 'value' => 'no', 392 'choices' => array( 393 'yes' => __( 'Allow', Plugin::SLUG), 394 'no' => __( 'Don\'t Allow', Plugin::SLUG ), 395 ), 396 ), 397 'allowChangeWindowSize' => array( 398 'id' => 'allow_change_window_size', 399 'title' => __( 'Allow adjusting chat window size', Plugin::SLUG ), 400 'text' => __( 'Set whether site visitors can adjust the size of the chat window.', Plugin::SLUG ), 401 'type' => 'radio', 402 'value' => 'no', 403 'choices' => array( 404 'yes' => __( 'Allow', Plugin::SLUG), 405 'no' => __( 'Don\'t Allow', Plugin::SLUG ), 406 ), 407 ), 386 408 ), 387 409 ), -
staffing-engine-chatbot/tags/0.7.0/includes/embed.php
r2854949 r2887733 160 160 const staffingEngineChatConfig = Object.assign(config, { 161 161 container: '#staffing-engine-chatbot', 162 allowChangeChatWindowSize: false,163 allowDrag: false,164 162 appearance: { 165 163 blurredBackground: false … … 219 217 "autoExpandDelay" => array_key_exists( 'auto_expand_delay', self::$options ) ? $this->parse_ms_setting( esc_attr( self::$options['auto_expand_delay'] ) . '000' ) : '0', 220 218 "allowStartNewConversation" => array_key_exists( 'allow_start_new_conversation', self::$options ) ? $this->parse_radio_setting( esc_attr( self::$options['allow_start_new_conversation'] ), true ) : true, 219 "allowChangeChatWindowSize" => array_key_exists( 'allow_change_window_size', self::$options ) ? $this->parse_radio_setting( esc_attr( self::$options['allow_change_window_size'] ), true ) : true, 220 "allowDrag" => array_key_exists( 'allow_window_drag', self::$options ) ? $this->parse_radio_setting( esc_attr( self::$options['allow_window_drag'] ), true ) : true, 221 221 ]; 222 222 } -
staffing-engine-chatbot/tags/0.7.0/readme.txt
r2854949 r2887733 4 4 - Donate Link: https://staffingengine.ai/ 5 5 - Tags: chatbot, live chat, AI, staffing, recruiting 6 - Stable tag: 0. 6.06 - Stable tag: 0.7.0 7 7 - Requires at least: 5.5 8 8 - Tested up to: 6.0.1 … … 70 70 - Performance improvements to speed up chatbot initialization 71 71 - Bug fixes 72 73 = 0.7.0 : 2023-3-23 = 74 75 - support settings for dragging and adjusting the size of the chat window -
staffing-engine-chatbot/tags/0.7.0/staffing-engine-chatbot.php
r2854949 r2887733 5 5 * @copyright (c) 2022 staffing Engine 6 6 * @license GPL-3.0-or-later 7 * @version 0. 6.07 * @version 0.7.0 8 8 * 9 9 * @wordpress-plugin … … 15 15 * License: GPL v3 or later 16 16 * License URI: https://www.gnu.org/licenses/gpl-3.0.en.html 17 * Version: 0. 6.017 * Version: 0.7.0 18 18 * Requires at least: 5.5 19 19 * Requires PHP: 7.1 … … 41 41 } 42 42 43 define( 'SE_CHAT_VERSION', '0. 6.0' );43 define( 'SE_CHAT_VERSION', '0.7.0' ); 44 44 45 45 define( 'SE_CHAT_MIN_PHP', '7.1.0' ); -
staffing-engine-chatbot/trunk/includes/admin.php
r2854949 r2887733 373 373 'text' => __( 'Customize how the chatbot acts under certain conditions', Plugin::SLUG ), 374 374 'fields' => array( 375 'allowStartNewConversation' => array(375 'allowStartNewConversation' => array( 376 376 'id' => 'allow_start_new_conversation', 377 377 'title' => __( 'Allow starting a new conversation', Plugin::SLUG ), … … 384 384 ), 385 385 ), 386 'allowWindowDrag' => array( 387 'id' => 'allow_window_drag', 388 'title' => __( 'Allow dragging the chat window', Plugin::SLUG ), 389 'text' => __( 'Set whether site visitors can move the chat window around the site.', Plugin::SLUG ), 390 'type' => 'radio', 391 'value' => 'no', 392 'choices' => array( 393 'yes' => __( 'Allow', Plugin::SLUG), 394 'no' => __( 'Don\'t Allow', Plugin::SLUG ), 395 ), 396 ), 397 'allowChangeWindowSize' => array( 398 'id' => 'allow_change_window_size', 399 'title' => __( 'Allow adjusting chat window size', Plugin::SLUG ), 400 'text' => __( 'Set whether site visitors can adjust the size of the chat window.', Plugin::SLUG ), 401 'type' => 'radio', 402 'value' => 'no', 403 'choices' => array( 404 'yes' => __( 'Allow', Plugin::SLUG), 405 'no' => __( 'Don\'t Allow', Plugin::SLUG ), 406 ), 407 ), 386 408 ), 387 409 ), -
staffing-engine-chatbot/trunk/includes/embed.php
r2854949 r2887733 160 160 const staffingEngineChatConfig = Object.assign(config, { 161 161 container: '#staffing-engine-chatbot', 162 allowChangeChatWindowSize: false,163 allowDrag: false,164 162 appearance: { 165 163 blurredBackground: false … … 219 217 "autoExpandDelay" => array_key_exists( 'auto_expand_delay', self::$options ) ? $this->parse_ms_setting( esc_attr( self::$options['auto_expand_delay'] ) . '000' ) : '0', 220 218 "allowStartNewConversation" => array_key_exists( 'allow_start_new_conversation', self::$options ) ? $this->parse_radio_setting( esc_attr( self::$options['allow_start_new_conversation'] ), true ) : true, 219 "allowChangeChatWindowSize" => array_key_exists( 'allow_change_window_size', self::$options ) ? $this->parse_radio_setting( esc_attr( self::$options['allow_change_window_size'] ), true ) : true, 220 "allowDrag" => array_key_exists( 'allow_window_drag', self::$options ) ? $this->parse_radio_setting( esc_attr( self::$options['allow_window_drag'] ), true ) : true, 221 221 ]; 222 222 } -
staffing-engine-chatbot/trunk/readme.txt
r2854949 r2887733 4 4 - Donate Link: https://staffingengine.ai/ 5 5 - Tags: chatbot, live chat, AI, staffing, recruiting 6 - Stable tag: 0. 6.06 - Stable tag: 0.7.0 7 7 - Requires at least: 5.5 8 8 - Tested up to: 6.0.1 … … 70 70 - Performance improvements to speed up chatbot initialization 71 71 - Bug fixes 72 73 = 0.7.0 : 2023-3-23 = 74 75 - support settings for dragging and adjusting the size of the chat window -
staffing-engine-chatbot/trunk/staffing-engine-chatbot.php
r2854949 r2887733 5 5 * @copyright (c) 2022 staffing Engine 6 6 * @license GPL-3.0-or-later 7 * @version 0. 6.07 * @version 0.7.0 8 8 * 9 9 * @wordpress-plugin … … 15 15 * License: GPL v3 or later 16 16 * License URI: https://www.gnu.org/licenses/gpl-3.0.en.html 17 * Version: 0. 6.017 * Version: 0.7.0 18 18 * Requires at least: 5.5 19 19 * Requires PHP: 7.1 … … 41 41 } 42 42 43 define( 'SE_CHAT_VERSION', '0. 6.0' );43 define( 'SE_CHAT_VERSION', '0.7.0' ); 44 44 45 45 define( 'SE_CHAT_MIN_PHP', '7.1.0' );
Note: See TracChangeset
for help on using the changeset viewer.