Changeset 2899241
- Timestamp:
- 04/14/2023 05:47:38 PM (3 years ago)
- Location:
- staffing-engine-chatbot
- Files:
-
- 10 edited
- 1 copied
-
tags/0.8.1 (copied) (copied from staffing-engine-chatbot/trunk)
-
tags/0.8.1/includes/embed.php (modified) (1 diff)
-
tags/0.8.1/includes/plugin.php (modified) (1 diff)
-
tags/0.8.1/public/css/se-chatbot.css (modified) (1 diff)
-
tags/0.8.1/readme.txt (modified) (2 diffs)
-
tags/0.8.1/staffing-engine-chatbot.php (modified) (3 diffs)
-
trunk/includes/embed.php (modified) (1 diff)
-
trunk/includes/plugin.php (modified) (1 diff)
-
trunk/public/css/se-chatbot.css (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/staffing-engine-chatbot.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
staffing-engine-chatbot/tags/0.8.1/includes/embed.php
r2887733 r2899241 141 141 ?> 142 142 <script> 143 /** 144 * Staffing Engine Chatbot - <?php echo SE_CHAT_VERSION ?> 145 */ 143 146 const rwcScriptLocation = "<?php echo path_join( SE_CHAT_PUBLIC_ASSET_PATH, 'js/richWebChat.umd.min.js' ); ?>"; 144 147 -
staffing-engine-chatbot/tags/0.8.1/includes/plugin.php
r2854949 r2899241 174 174 } 175 175 176 // Important: Check if the file is the one that was registered during the uninstall hook.177 if ( __FILE__ != WP_UNINSTALL_PLUGIN ) {178 return;179 }180 181 176 // Uninstall tasks 182 177 } -
staffing-engine-chatbot/tags/0.8.1/public/css/se-chatbot.css
r2854949 r2899241 1 #staffing-engine-chatbot .rwc-embed-core__frame{border:none;height:100%;width:100%}#staffing-engine-chatbot .rwc-header__image{height:30px!important}#staffing-engine-chatbot .rwc-embed__controls button span{display:flex}#staffing-engine-chatbot .rwc-embed -thumb{background-color:var(--widgetColor)!important;border:none!important;border-radius:50%!important;box-shadow:0 5px 25px 0 rgba(0,0,0,.13)!important;outline:none!important;padding:0!important;transition:transform .4s,opacity .4s,visibility .4s!important}#staffing-engine-chatbot .rwc-embed-welcome__btn button{background:var(--widgetColor)!important;border:1px solid var(--rwcTheme)!important;border-color:var(--widgetColor)!important;border-radius:8px!important;color:#fff!important;outline:none!important}#staffing-engine-chatbot .rwc-embed-welcome__close{border:none!important;border-radius:50%!important;box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important;position:absolute!important;right:-7px!important;top:-7px!important}#staffing-engine-chatbot .rwc-embed__controls button{background-color:rgba(0,0,0,.3)!important;border:none!important;border-radius:50%!important;color:#fff!important;outline:none!important;padding:0!important;transition:background .15s ease!important}1 #staffing-engine-chatbot .rwc-embed-core__frame{border:none;height:100%;width:100%}#staffing-engine-chatbot .rwc-header__image{height:30px!important}#staffing-engine-chatbot .rwc-embed__controls button span{display:flex}#staffing-engine-chatbot .rwc-embed__close-btn span svg{vertical-align:unset!important}#staffing-engine-chatbot .rwc-embed-thumb{background-color:var(--widgetColor)!important;border:none!important;border-radius:50%!important;box-shadow:0 5px 25px 0 rgba(0,0,0,.13)!important;margin:0!important;outline:none!important;padding:0!important;transition:transform .4s,opacity .4s,visibility .4s!important}#staffing-engine-chatbot .rwc-embed-welcome__btn button{background:var(--widgetColor)!important;border:1px solid var(--rwcTheme)!important;border-color:var(--widgetColor)!important;border-radius:8px!important;color:#fff!important;outline:none!important}#staffing-engine-chatbot .rwc-embed-welcome__close{border:none!important;border-radius:50%!important;box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important;margin:0!important;padding:0!important;position:absolute!important;right:-7px!important;top:-7px!important;transition:0!important}#staffing-engine-chatbot .rwc-embed__controls button{background-color:rgba(0,0,0,.3)!important;border:none!important;border-radius:50%!important;color:#fff!important;outline:none!important;padding:0!important;transition:background .15s ease!important} -
staffing-engine-chatbot/tags/0.8.1/readme.txt
r2896720 r2899241 4 4 - Donate Link: https://staffingengine.ai/ 5 5 - Tags: chatbot, live chat, AI, staffing, recruiting 6 - Stable tag: 0.8. 06 - Stable tag: 0.8.1 7 7 - Requires at least: 5.5 8 8 - Tested up to: 6.2.0 … … 79 79 - bug squashing and performance improvements 80 80 - the chat window will shows a loading indication rather than a blank white screen 81 82 = 0.8.1 : 2023-4-14 = 83 84 - appearance bug fixes -
staffing-engine-chatbot/tags/0.8.1/staffing-engine-chatbot.php
r2896720 r2899241 5 5 * @copyright (c) 2022 staffing Engine 6 6 * @license GPL-3.0-or-later 7 * @version 0.8. 07 * @version 0.8.1 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.8. 017 * Version: 0.8.1 18 18 * Requires at least: 5.5 19 19 * Requires PHP: 7.1 … … 41 41 } 42 42 43 define( 'SE_CHAT_VERSION', '0.8. 0' );43 define( 'SE_CHAT_VERSION', '0.8.1' ); 44 44 45 45 define( 'SE_CHAT_MIN_PHP', '7.1.0' ); -
staffing-engine-chatbot/trunk/includes/embed.php
r2887733 r2899241 141 141 ?> 142 142 <script> 143 /** 144 * Staffing Engine Chatbot - <?php echo SE_CHAT_VERSION ?> 145 */ 143 146 const rwcScriptLocation = "<?php echo path_join( SE_CHAT_PUBLIC_ASSET_PATH, 'js/richWebChat.umd.min.js' ); ?>"; 144 147 -
staffing-engine-chatbot/trunk/includes/plugin.php
r2854949 r2899241 174 174 } 175 175 176 // Important: Check if the file is the one that was registered during the uninstall hook.177 if ( __FILE__ != WP_UNINSTALL_PLUGIN ) {178 return;179 }180 181 176 // Uninstall tasks 182 177 } -
staffing-engine-chatbot/trunk/public/css/se-chatbot.css
r2854949 r2899241 1 #staffing-engine-chatbot .rwc-embed-core__frame{border:none;height:100%;width:100%}#staffing-engine-chatbot .rwc-header__image{height:30px!important}#staffing-engine-chatbot .rwc-embed__controls button span{display:flex}#staffing-engine-chatbot .rwc-embed -thumb{background-color:var(--widgetColor)!important;border:none!important;border-radius:50%!important;box-shadow:0 5px 25px 0 rgba(0,0,0,.13)!important;outline:none!important;padding:0!important;transition:transform .4s,opacity .4s,visibility .4s!important}#staffing-engine-chatbot .rwc-embed-welcome__btn button{background:var(--widgetColor)!important;border:1px solid var(--rwcTheme)!important;border-color:var(--widgetColor)!important;border-radius:8px!important;color:#fff!important;outline:none!important}#staffing-engine-chatbot .rwc-embed-welcome__close{border:none!important;border-radius:50%!important;box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important;position:absolute!important;right:-7px!important;top:-7px!important}#staffing-engine-chatbot .rwc-embed__controls button{background-color:rgba(0,0,0,.3)!important;border:none!important;border-radius:50%!important;color:#fff!important;outline:none!important;padding:0!important;transition:background .15s ease!important}1 #staffing-engine-chatbot .rwc-embed-core__frame{border:none;height:100%;width:100%}#staffing-engine-chatbot .rwc-header__image{height:30px!important}#staffing-engine-chatbot .rwc-embed__controls button span{display:flex}#staffing-engine-chatbot .rwc-embed__close-btn span svg{vertical-align:unset!important}#staffing-engine-chatbot .rwc-embed-thumb{background-color:var(--widgetColor)!important;border:none!important;border-radius:50%!important;box-shadow:0 5px 25px 0 rgba(0,0,0,.13)!important;margin:0!important;outline:none!important;padding:0!important;transition:transform .4s,opacity .4s,visibility .4s!important}#staffing-engine-chatbot .rwc-embed-welcome__btn button{background:var(--widgetColor)!important;border:1px solid var(--rwcTheme)!important;border-color:var(--widgetColor)!important;border-radius:8px!important;color:#fff!important;outline:none!important}#staffing-engine-chatbot .rwc-embed-welcome__close{border:none!important;border-radius:50%!important;box-shadow:0 2px 4px 0 rgba(0,0,0,.1)!important;margin:0!important;padding:0!important;position:absolute!important;right:-7px!important;top:-7px!important;transition:0!important}#staffing-engine-chatbot .rwc-embed__controls button{background-color:rgba(0,0,0,.3)!important;border:none!important;border-radius:50%!important;color:#fff!important;outline:none!important;padding:0!important;transition:background .15s ease!important} -
staffing-engine-chatbot/trunk/readme.txt
r2896720 r2899241 4 4 - Donate Link: https://staffingengine.ai/ 5 5 - Tags: chatbot, live chat, AI, staffing, recruiting 6 - Stable tag: 0.8. 06 - Stable tag: 0.8.1 7 7 - Requires at least: 5.5 8 8 - Tested up to: 6.2.0 … … 79 79 - bug squashing and performance improvements 80 80 - the chat window will shows a loading indication rather than a blank white screen 81 82 = 0.8.1 : 2023-4-14 = 83 84 - appearance bug fixes -
staffing-engine-chatbot/trunk/staffing-engine-chatbot.php
r2896720 r2899241 5 5 * @copyright (c) 2022 staffing Engine 6 6 * @license GPL-3.0-or-later 7 * @version 0.8. 07 * @version 0.8.1 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.8. 017 * Version: 0.8.1 18 18 * Requires at least: 5.5 19 19 * Requires PHP: 7.1 … … 41 41 } 42 42 43 define( 'SE_CHAT_VERSION', '0.8. 0' );43 define( 'SE_CHAT_VERSION', '0.8.1' ); 44 44 45 45 define( 'SE_CHAT_MIN_PHP', '7.1.0' );
Note: See TracChangeset
for help on using the changeset viewer.