Changeset 3309015
- Timestamp:
- 06/10/2025 08:52:46 AM (10 months ago)
- Location:
- assistio
- Files:
-
- 4 edited
- 11 copied
-
tags/1.1.1 (copied) (copied from assistio/trunk)
-
tags/1.1.1/README.txt (copied) (copied from assistio/trunk/README.txt) (3 diffs)
-
tags/1.1.1/assets/assistio-logo.svg (copied) (copied from assistio/trunk/assets/assistio-logo.svg)
-
tags/1.1.1/assets/js/assistio-btn.js (copied) (copied from assistio/trunk/assets/js/assistio-btn.js)
-
tags/1.1.1/assets/js/assistio-integration.js (copied) (copied from assistio/trunk/assets/js/assistio-integration.js)
-
tags/1.1.1/assets/js/assistio-setup.js (copied) (copied from assistio/trunk/assets/js/assistio-setup.js)
-
tags/1.1.1/assistio.php (copied) (copied from assistio/trunk/assistio.php) (3 diffs)
-
tags/1.1.1/initsetup.php (copied) (copied from assistio/trunk/initsetup.php) (2 diffs)
-
tags/1.1.1/languages/assistio-fa_IR.mo (copied) (copied from assistio/trunk/languages/assistio-fa_IR.mo)
-
tags/1.1.1/languages/assistio-fa_IR.po (copied) (copied from assistio/trunk/languages/assistio-fa_IR.po)
-
tags/1.1.1/script.php (copied) (copied from assistio/trunk/script.php) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/assistio.php (modified) (3 diffs)
-
trunk/initsetup.php (modified) (2 diffs)
-
trunk/script.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
assistio/tags/1.1.1/README.txt
r3309011 r3309015 5 5 Requires at least: 5.8 6 6 Tested up to: 6.8 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 150 150 151 151 == Changelog == 152 = 1.1.1 = 153 * fixed bugs. 152 154 = 1.1.0 = 153 155 * Update Translating plugging and fixed-position chatbot button on mobile devices. … … 185 187 == Upgrade Notice == 186 188 187 = 1.1. 0=189 = 1.1.1 = 188 190 Initial release of ASSISTIO. Transform your WooCommerce store with intelligent AI automation. Experience the power of four specialized AI agents working together to optimize your store operations, enhance customer experience, and drive sales growth. 189 191 -
assistio/tags/1.1.1/assistio.php
r3309011 r3309015 7 7 * Plugin URI: https://assistio.chat/assistio-plugin 8 8 * Description: A WooCommerce AI assistant with LLMs and multimodal search to automate support, marketing, inventory and BI. Includes repositionable chatbot, personalization. 9 * Version: 1.1. 09 * Version: 1.1.1 10 10 * Author: Assistio Team 11 11 * Author URI: https://assistio.chat … … 59 59 60 60 61 add_action( 'plugins_loaded', 'assistio_force_load_textdomain', 20 ); 62 function assistio_force_load_textdomain() { 63 // بدست آوردن locale فعلی 64 if ( function_exists( 'determine_locale' ) ) { 65 $locale = determine_locale(); 66 } else { 67 $locale = get_locale(); 68 } 69 70 // مسیر دقیق فایل .mo در پوشهی پلاگین 71 $mofile = plugin_dir_path( __FILE__ ) . "languages/assistio-{$locale}.mo"; 72 73 // اگر فایل وجود داشت، با load_textdomain آن را اجباری بارگذاری کن 74 if ( file_exists( $mofile ) ) { 75 load_textdomain( 'assistio', $mofile ); 76 } 77 } 78 79 80 // function assistio_load_textdomain() { 81 // load_plugin_textdomain( 82 // 'assistio', 83 // false, 84 // dirname( plugin_basename( __FILE__ ) ) . '/languages' 85 // ); 61 // add_action( 'plugins_loaded', 'assistio_force_load_textdomain', 20 ); 62 // function assistio_force_load_textdomain() { 63 // // بدست آوردن locale فعلی 64 // if ( function_exists( 'determine_locale' ) ) { 65 // $locale = determine_locale(); 66 // } else { 67 // $locale = get_locale(); 68 // } 69 70 // // مسیر دقیق فایل .mo در پوشهی پلاگین 71 // $mofile = plugin_dir_path( __FILE__ ) . "languages/assistio-{$locale}.mo"; 72 73 // // اگر فایل وجود داشت، با load_textdomain آن را اجباری بارگذاری کن 74 // if ( file_exists( $mofile ) ) { 75 // load_textdomain( 'assistio', $mofile ); 76 // } 86 77 // } 87 // add_action( 'plugins_loaded', 'assistio_load_textdomain' ); 78 79 80 function assistio_load_textdomain() { 81 load_plugin_textdomain( 82 'assistio', 83 false, 84 dirname( plugin_basename( __FILE__ ) ) . '/languages' 85 ); 86 } 87 add_action( 'plugins_loaded', 'assistio_load_textdomain' ); 88 88 89 89 function assistio_plugin_woocommerce_notice() … … 274 274 plugin_dir_url(__FILE__) . 'assets/js/assistio-deactivate.js', 275 275 array('jquery'), 276 '1.1. 0',276 '1.1.1', 277 277 true 278 278 ); -
assistio/tags/1.1.1/initsetup.php
r3309011 r3309015 214 214 plugin_dir_url(__FILE__) . 'assets/js/assistio-setup.js', 215 215 array('jquery'), 216 '1.1. 0',216 '1.1.1', 217 217 true 218 218 ); … … 447 447 plugin_dir_url(__FILE__) . 'assets/js/assistio-integration.js', 448 448 array('jquery'), 449 '1.1. 0',449 '1.1.1', 450 450 true 451 451 ); -
assistio/tags/1.1.1/script.php
r3309011 r3309015 111 111 plugin_dir_url(__FILE__) . 'assets/js/assistio-btn.js', 112 112 array(), 113 '1.1. 0',113 '1.1.1', 114 114 true 115 115 ); -
assistio/trunk/README.txt
r3309011 r3309015 5 5 Requires at least: 5.8 6 6 Tested up to: 6.8 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 150 150 151 151 == Changelog == 152 = 1.1.1 = 153 * fixed bugs. 152 154 = 1.1.0 = 153 155 * Update Translating plugging and fixed-position chatbot button on mobile devices. … … 185 187 == Upgrade Notice == 186 188 187 = 1.1. 0=189 = 1.1.1 = 188 190 Initial release of ASSISTIO. Transform your WooCommerce store with intelligent AI automation. Experience the power of four specialized AI agents working together to optimize your store operations, enhance customer experience, and drive sales growth. 189 191 -
assistio/trunk/assistio.php
r3309011 r3309015 7 7 * Plugin URI: https://assistio.chat/assistio-plugin 8 8 * Description: A WooCommerce AI assistant with LLMs and multimodal search to automate support, marketing, inventory and BI. Includes repositionable chatbot, personalization. 9 * Version: 1.1. 09 * Version: 1.1.1 10 10 * Author: Assistio Team 11 11 * Author URI: https://assistio.chat … … 59 59 60 60 61 add_action( 'plugins_loaded', 'assistio_force_load_textdomain', 20 ); 62 function assistio_force_load_textdomain() { 63 // بدست آوردن locale فعلی 64 if ( function_exists( 'determine_locale' ) ) { 65 $locale = determine_locale(); 66 } else { 67 $locale = get_locale(); 68 } 69 70 // مسیر دقیق فایل .mo در پوشهی پلاگین 71 $mofile = plugin_dir_path( __FILE__ ) . "languages/assistio-{$locale}.mo"; 72 73 // اگر فایل وجود داشت، با load_textdomain آن را اجباری بارگذاری کن 74 if ( file_exists( $mofile ) ) { 75 load_textdomain( 'assistio', $mofile ); 76 } 77 } 78 79 80 // function assistio_load_textdomain() { 81 // load_plugin_textdomain( 82 // 'assistio', 83 // false, 84 // dirname( plugin_basename( __FILE__ ) ) . '/languages' 85 // ); 61 // add_action( 'plugins_loaded', 'assistio_force_load_textdomain', 20 ); 62 // function assistio_force_load_textdomain() { 63 // // بدست آوردن locale فعلی 64 // if ( function_exists( 'determine_locale' ) ) { 65 // $locale = determine_locale(); 66 // } else { 67 // $locale = get_locale(); 68 // } 69 70 // // مسیر دقیق فایل .mo در پوشهی پلاگین 71 // $mofile = plugin_dir_path( __FILE__ ) . "languages/assistio-{$locale}.mo"; 72 73 // // اگر فایل وجود داشت، با load_textdomain آن را اجباری بارگذاری کن 74 // if ( file_exists( $mofile ) ) { 75 // load_textdomain( 'assistio', $mofile ); 76 // } 86 77 // } 87 // add_action( 'plugins_loaded', 'assistio_load_textdomain' ); 78 79 80 function assistio_load_textdomain() { 81 load_plugin_textdomain( 82 'assistio', 83 false, 84 dirname( plugin_basename( __FILE__ ) ) . '/languages' 85 ); 86 } 87 add_action( 'plugins_loaded', 'assistio_load_textdomain' ); 88 88 89 89 function assistio_plugin_woocommerce_notice() … … 274 274 plugin_dir_url(__FILE__) . 'assets/js/assistio-deactivate.js', 275 275 array('jquery'), 276 '1.1. 0',276 '1.1.1', 277 277 true 278 278 ); -
assistio/trunk/initsetup.php
r3309011 r3309015 214 214 plugin_dir_url(__FILE__) . 'assets/js/assistio-setup.js', 215 215 array('jquery'), 216 '1.1. 0',216 '1.1.1', 217 217 true 218 218 ); … … 447 447 plugin_dir_url(__FILE__) . 'assets/js/assistio-integration.js', 448 448 array('jquery'), 449 '1.1. 0',449 '1.1.1', 450 450 true 451 451 ); -
assistio/trunk/script.php
r3309011 r3309015 111 111 plugin_dir_url(__FILE__) . 'assets/js/assistio-btn.js', 112 112 array(), 113 '1.1. 0',113 '1.1.1', 114 114 true 115 115 );
Note: See TracChangeset
for help on using the changeset viewer.