Changeset 3431786
- Timestamp:
- 01/03/2026 07:13:09 PM (7 weeks ago)
- Location:
- attorneyconnect-ai/trunk
- Files:
-
- 2 edited
-
attorneyconnect-ai.php (modified) (6 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
attorneyconnect-ai/trunk/attorneyconnect-ai.php
r3431321 r3431786 4 4 * Plugin URI: https://attorneyconnect.ai/get-started/ 5 5 * Description: AttorneyConnect AI is the Most Advanced Conversational Website Receptionist Built for Small Law Firms. 6 * Version: 1.0.2 46 * Version: 1.0.25 7 7 * Author: AttorneyConnect 8 8 * Author URI: https://attorneyconnect.ai/ … … 275 275 276 276 // Admin CSS via handle + inline rules (keeps Plugin Check happy) 277 wp_register_style( 'attorneyconnect-ai-admin', false, array(), ' %%VERSION%%' );277 wp_register_style( 'attorneyconnect-ai-admin', false, array(), '1.0.25' ); 278 278 wp_enqueue_style( 'attorneyconnect-ai-admin' ); 279 279 wp_add_inline_style( … … 288 288 289 289 // Admin JS (color validation/sync) 290 wp_register_script( 'attorneyconnect-ai-admin', false, array(), ' %%VERSION%%', true );290 wp_register_script( 'attorneyconnect-ai-admin', false, array(), '1.0.25', true ); 291 291 wp_enqueue_script( 'attorneyconnect-ai-admin' ); 292 292 wp_add_inline_script( … … 323 323 plugins_url( 'js/attorneyconnect-ai.js', __FILE__ ), 324 324 array( 'attorneyconnect-ai-rasa-webchat' ), 325 ' %%VERSION%%',325 '1.0.25', 326 326 true 327 327 ); … … 340 340 plugins_url( 'css/attorneyconnect-ai.css', __FILE__ ), 341 341 array(), 342 ' %%VERSION%%'342 '1.0.25' 343 343 ); 344 344 … … 349 349 $payload = array( 350 350 'websiteCode' => $website_code, // may be blank; backend will handle errors 351 'socketUrl' => ' %%SOCKET_URL%%',351 'socketUrl' => 'ws://apis.attorneyconnect.ai', 352 352 'featureColor' => get_option( 'attorneyconnect_ai_feature_color', '#0073e6' ), 353 353 'widgetBarPlacement' => get_option( 'attorneyconnect_ai_widget_bar_placement', 'vertical-right' ), -
attorneyconnect-ai/trunk/readme.txt
r3431324 r3431786 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.2 47 Stable tag: 1.0.25 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 1.0.25 = 93 * Fix fatal error introduced in 1.0.24. 94 92 95 = 1.0.24 = 93 96 * Mobile: Call button opens the phone app directly; desktop still opens the call popup. … … 105 108 == Upgrade Notice == 106 109 110 = 1.0.25 = 111 This release fixes an error in 1.0.24. Updating is recommended. 112 107 113 = 1.0.24 = 108 114 Footer layout and mobile call behavior updates.
Note: See TracChangeset
for help on using the changeset viewer.