Plugin Directory

Changeset 3182786


Ignore:
Timestamp:
11/06/2024 01:50:15 AM (17 months ago)
Author:
cwpai
Message:

Update to version 1.2.1 from GitHub

Location:
agentwp
Files:
20 added
14 deleted
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • agentwp/tags/1.2.1/agentwp.php

    r3180075 r3182786  
    55 * Plugin URI: https://agentwp.com
    66 * Description: Adds a AI Agent to your WordPress installation.
    7  * Version: 1.2.0
     7 * Version: 1.2.1
    88 * Author: WPAI Inc.
    99 * Author URI: https://wpai.co
     
    4747        \WpAi\AgentWp\Page\Admin\Settings::class,
    4848        \WpAi\AgentWp\Page\Admin\Chat::class,
     49        // \WpAi\AgentWp\Page\Frontend\Chat::class,
    4950        \WpAi\AgentWp\Page\Admin\DashboardWidget::class,
    5051        \WpAi\AgentWp\Registry\IndexSiteData::class,
  • agentwp/tags/1.2.1/build/manifest.json

    r3180075 r3182786  
    44      "assets/app-8df1dc47.css"
    55    ],
    6     "file": "assets/chat-302461a1.js",
     6    "file": "assets/chat-9c443414.js",
    77    "imports": [
    88      "_ClientSettingsProvider-1165ae1b.js",
    9       "_Chat-ac935420.js",
     9      "_Chat-cf61fd9c.js",
    1010      "__commonjsHelpers-725317a4.js",
    1111      "_WriteToEditor-63b22c42.js"
     
    3131      "assets/app-8df1dc47.css"
    3232    ],
    33     "file": "assets/settings-e44e7636.js",
     33    "file": "assets/settings-cc05d060.js",
    3434    "imports": [
    3535      "_ClientSettingsProvider-1165ae1b.js",
    36       "_Chat-ac935420.js",
     36      "_Chat-cf61fd9c.js",
    3737      "_LatestConvos-fedbffd9.js",
    3838      "__commonjsHelpers-725317a4.js",
     
    5151    "src": "Tests/test-blocks-streaming.ts"
    5252  },
    53   "_Chat-ac935420.js": {
     53  "_Chat-cf61fd9c.js": {
    5454    "assets": [
    5555      "assets/wpcode-fa5b4e95.png",
     
    6262      "assets/codeable-c7263c7b.png"
    6363    ],
    64     "file": "assets/Chat-ac935420.js",
     64    "file": "assets/Chat-cf61fd9c.js",
    6565    "imports": [
    6666      "_ClientSettingsProvider-1165ae1b.js",
  • agentwp/tags/1.2.1/readme.txt

    r3180075 r3182786  
    44Requires at least: 6.4
    55Tested up to: 6.6
    6 Stable tag: 1.2.0
     6Stable tag: 1.2.1
    77Requires PHP: 7.4
    88License: GPLv3
  • agentwp/tags/1.2.1/server/Main.php

    r3180075 r3182786  
    2121    const SLUG = 'agentwp';
    2222
    23     const PLUGIN_VERSION = '1.2.0';
     23    const PLUGIN_VERSION = '1.2.1';
    2424
    2525    const BUILD_DIR = 'build';
     
    143143    public function apiClientHost()
    144144    {
    145         return defined('AGENT_WP_CLIENT_BASE_URL') ? AGENT_WP_CLIENT_BASE_URL : $this->runtimeApiHost();
     145        return defined('AGENT_WP_CLIENT_BASE_URL') && ! empty(AGENT_WP_CLIENT_BASE_URL) ? AGENT_WP_CLIENT_BASE_URL : $this->runtimeApiHost();
    146146    }
    147147
    148148    private function runtimeApiHost()
    149149    {
    150         return defined('AGENTWP_API_HOST') ? AGENTWP_API_HOST : 'https://app.agentwp.com';
     150        return defined('AGENTWP_API_HOST') && ! empty(AGENTWP_API_HOST) ? AGENTWP_API_HOST : 'https://app.agentwp.com';
    151151    }
    152152
  • agentwp/tags/1.2.1/server/Page/Admin/Chat.php

    r3174903 r3182786  
    3535
    3636        $this->locations = [
    37             \WpAi\AgentWp\Client\Locations\CoreChat::class,
     37            \WpAi\AgentWp\Client\Locations\AdminChat::class,
    3838            \WpAi\AgentWp\Client\Locations\ElementorChat::class,
    3939            \WpAi\AgentWp\Client\Locations\BeaverBuilder::class,
  • agentwp/tags/1.2.1/vendor/composer/installed.php

    r3180075 r3182786  
    22    'root' => array(
    33        'name' => 'wpai/agentwp',
    4         'pretty_version' => 'v1.2.0',
    5         'version' => '1.2.0.0',
    6         'reference' => '2f5a06dc874a6a38949384c5d661e124389403a1',
     4        'pretty_version' => 'v1.2.1',
     5        'version' => '1.2.1.0',
     6        'reference' => 'bbfd82b2bb1b2adc21d62c0034dd7406b29126dd',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    129129        ),
    130130        'wpai/agentwp' => array(
    131             'pretty_version' => 'v1.2.0',
    132             'version' => '1.2.0.0',
    133             'reference' => '2f5a06dc874a6a38949384c5d661e124389403a1',
     131            'pretty_version' => 'v1.2.1',
     132            'version' => '1.2.1.0',
     133            'reference' => 'bbfd82b2bb1b2adc21d62c0034dd7406b29126dd',
    134134            'type' => 'library',
    135135            'install_path' => __DIR__ . '/../../',
  • agentwp/trunk/agentwp.php

    r3180075 r3182786  
    55 * Plugin URI: https://agentwp.com
    66 * Description: Adds a AI Agent to your WordPress installation.
    7  * Version: 1.2.0
     7 * Version: 1.2.1
    88 * Author: WPAI Inc.
    99 * Author URI: https://wpai.co
     
    4747        \WpAi\AgentWp\Page\Admin\Settings::class,
    4848        \WpAi\AgentWp\Page\Admin\Chat::class,
     49        // \WpAi\AgentWp\Page\Frontend\Chat::class,
    4950        \WpAi\AgentWp\Page\Admin\DashboardWidget::class,
    5051        \WpAi\AgentWp\Registry\IndexSiteData::class,
  • agentwp/trunk/build/manifest.json

    r3180075 r3182786  
    44      "assets/app-8df1dc47.css"
    55    ],
    6     "file": "assets/chat-302461a1.js",
     6    "file": "assets/chat-9c443414.js",
    77    "imports": [
    88      "_ClientSettingsProvider-1165ae1b.js",
    9       "_Chat-ac935420.js",
     9      "_Chat-cf61fd9c.js",
    1010      "__commonjsHelpers-725317a4.js",
    1111      "_WriteToEditor-63b22c42.js"
     
    3131      "assets/app-8df1dc47.css"
    3232    ],
    33     "file": "assets/settings-e44e7636.js",
     33    "file": "assets/settings-cc05d060.js",
    3434    "imports": [
    3535      "_ClientSettingsProvider-1165ae1b.js",
    36       "_Chat-ac935420.js",
     36      "_Chat-cf61fd9c.js",
    3737      "_LatestConvos-fedbffd9.js",
    3838      "__commonjsHelpers-725317a4.js",
     
    5151    "src": "Tests/test-blocks-streaming.ts"
    5252  },
    53   "_Chat-ac935420.js": {
     53  "_Chat-cf61fd9c.js": {
    5454    "assets": [
    5555      "assets/wpcode-fa5b4e95.png",
     
    6262      "assets/codeable-c7263c7b.png"
    6363    ],
    64     "file": "assets/Chat-ac935420.js",
     64    "file": "assets/Chat-cf61fd9c.js",
    6565    "imports": [
    6666      "_ClientSettingsProvider-1165ae1b.js",
  • agentwp/trunk/readme.txt

    r3180075 r3182786  
    44Requires at least: 6.4
    55Tested up to: 6.6
    6 Stable tag: 1.2.0
     6Stable tag: 1.2.1
    77Requires PHP: 7.4
    88License: GPLv3
  • agentwp/trunk/server/Main.php

    r3180075 r3182786  
    2121    const SLUG = 'agentwp';
    2222
    23     const PLUGIN_VERSION = '1.2.0';
     23    const PLUGIN_VERSION = '1.2.1';
    2424
    2525    const BUILD_DIR = 'build';
     
    143143    public function apiClientHost()
    144144    {
    145         return defined('AGENT_WP_CLIENT_BASE_URL') ? AGENT_WP_CLIENT_BASE_URL : $this->runtimeApiHost();
     145        return defined('AGENT_WP_CLIENT_BASE_URL') && ! empty(AGENT_WP_CLIENT_BASE_URL) ? AGENT_WP_CLIENT_BASE_URL : $this->runtimeApiHost();
    146146    }
    147147
    148148    private function runtimeApiHost()
    149149    {
    150         return defined('AGENTWP_API_HOST') ? AGENTWP_API_HOST : 'https://app.agentwp.com';
     150        return defined('AGENTWP_API_HOST') && ! empty(AGENTWP_API_HOST) ? AGENTWP_API_HOST : 'https://app.agentwp.com';
    151151    }
    152152
  • agentwp/trunk/server/Page/Admin/Chat.php

    r3174903 r3182786  
    3535
    3636        $this->locations = [
    37             \WpAi\AgentWp\Client\Locations\CoreChat::class,
     37            \WpAi\AgentWp\Client\Locations\AdminChat::class,
    3838            \WpAi\AgentWp\Client\Locations\ElementorChat::class,
    3939            \WpAi\AgentWp\Client\Locations\BeaverBuilder::class,
  • agentwp/trunk/vendor/composer/installed.php

    r3180075 r3182786  
    22    'root' => array(
    33        'name' => 'wpai/agentwp',
    4         'pretty_version' => 'v1.2.0',
    5         'version' => '1.2.0.0',
    6         'reference' => '2f5a06dc874a6a38949384c5d661e124389403a1',
     4        'pretty_version' => 'v1.2.1',
     5        'version' => '1.2.1.0',
     6        'reference' => 'bbfd82b2bb1b2adc21d62c0034dd7406b29126dd',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    129129        ),
    130130        'wpai/agentwp' => array(
    131             'pretty_version' => 'v1.2.0',
    132             'version' => '1.2.0.0',
    133             'reference' => '2f5a06dc874a6a38949384c5d661e124389403a1',
     131            'pretty_version' => 'v1.2.1',
     132            'version' => '1.2.1.0',
     133            'reference' => 'bbfd82b2bb1b2adc21d62c0034dd7406b29126dd',
    134134            'type' => 'library',
    135135            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.