Plugin Directory

Changeset 3309015


Ignore:
Timestamp:
06/10/2025 08:52:46 AM (10 months ago)
Author:
assistioai
Message:

Update to version 1.1.1

Location:
assistio
Files:
4 edited
11 copied

Legend:

Unmodified
Added
Removed
  • assistio/tags/1.1.1/README.txt

    r3309011 r3309015  
    55Requires at least: 5.8
    66Tested up to: 6.8
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    150150
    151151== Changelog ==
     152= 1.1.1 =
     153* fixed bugs.
    152154= 1.1.0 =
    153155* Update Translating plugging and fixed-position chatbot button on mobile devices.
     
    185187== Upgrade Notice ==
    186188
    187 = 1.1.0 =
     189= 1.1.1 =
    188190Initial 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.
    189191
  • assistio/tags/1.1.1/assistio.php

    r3309011 r3309015  
    77 * Plugin URI: https://assistio.chat/assistio-plugin
    88 * 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.0
     9 * Version: 1.1.1
    1010 * Author: Assistio Team
    1111 * Author URI: https://assistio.chat
     
    5959
    6060
    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//     }
    8677// }
    87 // add_action( 'plugins_loaded', 'assistio_load_textdomain' );
     78
     79
     80function assistio_load_textdomain() {
     81    load_plugin_textdomain(
     82        'assistio',
     83        false,
     84        dirname( plugin_basename( __FILE__ ) ) . '/languages'
     85    );
     86}
     87add_action( 'plugins_loaded', 'assistio_load_textdomain' );
    8888
    8989function assistio_plugin_woocommerce_notice()
     
    274274        plugin_dir_url(__FILE__) . 'assets/js/assistio-deactivate.js',
    275275        array('jquery'),
    276         '1.1.0',
     276        '1.1.1',
    277277        true
    278278    );
  • assistio/tags/1.1.1/initsetup.php

    r3309011 r3309015  
    214214            plugin_dir_url(__FILE__) . 'assets/js/assistio-setup.js',
    215215            array('jquery'),
    216             '1.1.0',
     216            '1.1.1',
    217217            true
    218218        );
     
    447447        plugin_dir_url(__FILE__) . 'assets/js/assistio-integration.js',
    448448        array('jquery'),
    449         '1.1.0',
     449        '1.1.1',
    450450        true
    451451    );
  • assistio/tags/1.1.1/script.php

    r3309011 r3309015  
    111111        plugin_dir_url(__FILE__) . 'assets/js/assistio-btn.js',
    112112        array(),
    113         '1.1.0',
     113        '1.1.1',
    114114        true
    115115    );
  • assistio/trunk/README.txt

    r3309011 r3309015  
    55Requires at least: 5.8
    66Tested up to: 6.8
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    150150
    151151== Changelog ==
     152= 1.1.1 =
     153* fixed bugs.
    152154= 1.1.0 =
    153155* Update Translating plugging and fixed-position chatbot button on mobile devices.
     
    185187== Upgrade Notice ==
    186188
    187 = 1.1.0 =
     189= 1.1.1 =
    188190Initial 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.
    189191
  • assistio/trunk/assistio.php

    r3309011 r3309015  
    77 * Plugin URI: https://assistio.chat/assistio-plugin
    88 * 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.0
     9 * Version: 1.1.1
    1010 * Author: Assistio Team
    1111 * Author URI: https://assistio.chat
     
    5959
    6060
    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//     }
    8677// }
    87 // add_action( 'plugins_loaded', 'assistio_load_textdomain' );
     78
     79
     80function assistio_load_textdomain() {
     81    load_plugin_textdomain(
     82        'assistio',
     83        false,
     84        dirname( plugin_basename( __FILE__ ) ) . '/languages'
     85    );
     86}
     87add_action( 'plugins_loaded', 'assistio_load_textdomain' );
    8888
    8989function assistio_plugin_woocommerce_notice()
     
    274274        plugin_dir_url(__FILE__) . 'assets/js/assistio-deactivate.js',
    275275        array('jquery'),
    276         '1.1.0',
     276        '1.1.1',
    277277        true
    278278    );
  • assistio/trunk/initsetup.php

    r3309011 r3309015  
    214214            plugin_dir_url(__FILE__) . 'assets/js/assistio-setup.js',
    215215            array('jquery'),
    216             '1.1.0',
     216            '1.1.1',
    217217            true
    218218        );
     
    447447        plugin_dir_url(__FILE__) . 'assets/js/assistio-integration.js',
    448448        array('jquery'),
    449         '1.1.0',
     449        '1.1.1',
    450450        true
    451451    );
  • assistio/trunk/script.php

    r3309011 r3309015  
    111111        plugin_dir_url(__FILE__) . 'assets/js/assistio-btn.js',
    112112        array(),
    113         '1.1.0',
     113        '1.1.1',
    114114        true
    115115    );
Note: See TracChangeset for help on using the changeset viewer.