Plugin Directory

Changeset 3197542


Ignore:
Timestamp:
11/26/2024 03:32:45 PM (16 months ago)
Author:
intelahelp
Message:

Release 0.8.39

Location:
conversation-watson
Files:
1672 added
10 edited

Legend:

Unmodified
Added
Removed
  • conversation-watson/trunk/Readme.txt

    r3195889 r3197542  
    1 === Chatbot with IBM Watson ===
     1=== Chatbot with IBM watsonx Assistant ===
    22Contributors: cognitiveclass
    33Tags:  chat, chatbot, chat bot, artificial intelligence, support, faq
    44Requires at least: 4.7
    55Tested up to: 6.7
    6 Stable tag: 0.8.38
     6Stable tag: 0.8.39
    77License: Apache v2.0
    88License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    7474= Why should I use this? =
    7575
    76 Watsonx Assistant, when used with this plugin, allows you to build and deploy a fully customized chat bot with little technical knowledge. It can talk to your website's visitors about whatever you choose, from helping navigate the website and providing support with common questions, to just having a casual conversation on a topic of interest.
     76IBM watsonx Assistant, when used with this plugin, allows you to build and deploy a fully customized chat bot with little technical knowledge. It can talk to your website's visitors about whatever you choose, from helping navigate the website and providing support with common questions, to just having a casual conversation on a topic of interest.
    7777
    7878= Do I need to know how to code? =
     
    8888
    8989== Changelog ==
     90
     91= 0.8.39 =
     92* Fixed watsonx Assistant branding
    9093
    9194= 0.8.38 =
  • conversation-watson/trunk/includes/settings/advanced.php

    r3195291 r3197542  
    11221122        $user = wp_get_current_user()->get('user_login');
    11231123        $emailTo = get_option('watsonconv_mail_vars_email_address_to');
    1124         $subject = "Watsonx Assistant plug-in for WordPress: test e-mail";
     1124        $subject = "watsonx Assistant plug-in for WordPress: test e-mail";
    11251125        $message = "Hello " . $user . ", this is a test email!";
    11261126
  • conversation-watson/trunk/includes/settings/customize.php

    r3195291 r3197542  
    66
    77    public static function init_page() {
    8         add_submenu_page(Main::SLUG, 'Watsonx Assistant Plugin Customization',
     8        add_submenu_page(Main::SLUG, 'watsonx Assistant Plugin Customization',
    99            'Customize Plugin', 'manage_options', self::SLUG, array(__CLASS__, 'render_page'));
    1010    }
  • conversation-watson/trunk/includes/settings/main.php

    r3195889 r3197542  
    2222
    2323    public static function init_page() {
    24         add_menu_page('Watsonx Assistant', 'Watsonx Assistant', 'manage_options', self::SLUG,
     24        add_menu_page('watsonx Assistant', 'watsonx Assistant', 'manage_options', self::SLUG,
    2525            array(__CLASS__, 'render_page'), 'dashicons-format-chat');
    2626
     
    5454                WATSON_CONV_URL.'css/settings.css',
    5555                array('wp-color-picker'),
    56                 '0.8.38'
     56                '0.8.39'
    5757            );
    5858
     
    6161                WATSON_CONV_URL.'includes/settings/settings.js',
    6262                array('wp-color-picker', 'jquery-ui-tooltip'),
    63                 '0.8.38'
     63                '0.8.39'
    6464            );
    6565
     
    7474    ?>
    7575        <div class="wrap" style="max-width: 95em">
    76             <h2><?php esc_html_e('Watsonx Assistant', self::SLUG); ?></h2>
     76            <h2><?php esc_html_e('watsonx Assistant', self::SLUG); ?></h2>
    7777        </div>
    7878    <?php
  • conversation-watson/trunk/includes/settings/setup.php

    r3195291 r3197542  
    66
    77    public static function init_page() {
    8         add_submenu_page(Main::SLUG, 'Watsonx Assistant Setup', 'Set up Chatbot',
     8        add_submenu_page(Main::SLUG, 'watsonx Assistant Setup', 'Set up Chatbot',
    99            'manage_options', self::SLUG, array(__CLASS__, 'render_page'));
    1010    }
     
    5757        ?>
    5858        <p>
    59             Watsonx Assistant, formerly known as Watson Conversation, provides a clear and user-friendly
     59            watsonx Assistant, formerly known as Watson Conversation, provides a clear and user-friendly
    6060            interface to build virtual assistants to speak with your users. With the use of this plugin,
    6161            you can add these virtual assistants, or <b>chatbots</b>, to your website with minimal
  • conversation-watson/trunk/vendor/autoload.php

    r3195889 r3197542  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit4445c80c0b5d3138eda1d589bc6652cc::getLoader();
     7return ComposerAutoloaderInite6aff905c4fe1bb506dfbdba867a0631::getLoader();
  • conversation-watson/trunk/vendor/composer/autoload_real.php

    r3195889 r3197542  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit4445c80c0b5d3138eda1d589bc6652cc
     5class ComposerAutoloaderInite6aff905c4fe1bb506dfbdba867a0631
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit4445c80c0b5d3138eda1d589bc6652cc', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInite6aff905c4fe1bb506dfbdba867a0631', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit4445c80c0b5d3138eda1d589bc6652cc', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInite6aff905c4fe1bb506dfbdba867a0631', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInit4445c80c0b5d3138eda1d589bc6652cc::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInite6aff905c4fe1bb506dfbdba867a0631::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
  • conversation-watson/trunk/vendor/composer/autoload_static.php

    r3195889 r3197542  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit4445c80c0b5d3138eda1d589bc6652cc
     7class ComposerStaticInite6aff905c4fe1bb506dfbdba867a0631
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    2828    {
    2929        return \Closure::bind(function () use ($loader) {
    30             $loader->prefixLengthsPsr4 = ComposerStaticInit4445c80c0b5d3138eda1d589bc6652cc::$prefixLengthsPsr4;
    31             $loader->prefixDirsPsr4 = ComposerStaticInit4445c80c0b5d3138eda1d589bc6652cc::$prefixDirsPsr4;
    32             $loader->classMap = ComposerStaticInit4445c80c0b5d3138eda1d589bc6652cc::$classMap;
     30            $loader->prefixLengthsPsr4 = ComposerStaticInite6aff905c4fe1bb506dfbdba867a0631::$prefixLengthsPsr4;
     31            $loader->prefixDirsPsr4 = ComposerStaticInite6aff905c4fe1bb506dfbdba867a0631::$prefixDirsPsr4;
     32            $loader->classMap = ComposerStaticInite6aff905c4fe1bb506dfbdba867a0631::$classMap;
    3333
    3434        }, null, ClassLoader::class);
  • conversation-watson/trunk/vendor/composer/installed.php

    r3195889 r3197542  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '0.8.38',
    4         'version' => '0.8.38.0',
     3        'pretty_version' => '0.8.39',
     4        'version' => '0.8.39.0',
    55        'type' => 'library',
    66        'install_path' => __DIR__ . '/../../../',
    77        'aliases' => array(),
    8         'reference' => 'a12ef60093e2e8e86839ae93393999469706d944',
     8        'reference' => 'a47a2b60ab752dfce30c55a7059722244a558af1',
    99        'name' => '__root__',
    1010        'dev' => true,
     
    1212    'versions' => array(
    1313        '__root__' => array(
    14             'pretty_version' => '0.8.38',
    15             'version' => '0.8.38.0',
     14            'pretty_version' => '0.8.39',
     15            'version' => '0.8.39.0',
    1616            'type' => 'library',
    1717            'install_path' => __DIR__ . '/../../../',
    1818            'aliases' => array(),
    19             'reference' => 'a12ef60093e2e8e86839ae93393999469706d944',
     19            'reference' => 'a47a2b60ab752dfce30c55a7059722244a558af1',
    2020            'dev_requirement' => false,
    2121        ),
  • conversation-watson/trunk/watson.php

    r3195889 r3197542  
    55Author: IBM Cognitive Class
    66Author URI: https://cognitiveclass.ai
    7 Version: 0.8.38
     7Version: 0.8.39
    88Text Domain: watsonconv
    99*/
Note: See TracChangeset for help on using the changeset viewer.