Plugin Directory

Changeset 3384842


Ignore:
Timestamp:
10/26/2025 08:53:05 PM (5 months ago)
Author:
ugoltsev
Message:

Amended the plugin name

Location:
ask-my-content/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ask-my-content/trunk/ask-my-content.php

    r3384523 r3384842  
    22
    33/**
    4  * Plugin Name:       Ask My Content
     4 * Plugin Name:       Ask My Content - AI Q&A Chatbot
    55 * Description:       AI-powered Q&A chatbot, allowing users to ask questions and receive answers sourced from the site’s own posts and pages.
    6  * Version:           0.4.2
     6 * Version:           0.4.3
    77 * Requires at least: 5.8
    88 * Requires PHP:      7.4
     
    9292    $settings_path = $base_dir . 'assets/js/askmyco-settings.js';
    9393
    94     $core_ver = file_exists($core_path) ? filemtime($core_path) : '0.4.2';
    95     $frontend_ver = file_exists($frontend_path) ? filemtime($frontend_path) : '0.4.2';
    96     $admin_init_ver = file_exists($admin_init_path) ? filemtime($admin_init_path) : '0.4.2';
    97     $style_ver = file_exists($style_path) ? filemtime($style_path) : '0.4.2';
    98     $settings_ver = file_exists($settings_path) ? filemtime($settings_path) : '0.4.2';
     94    $core_ver = file_exists($core_path) ? filemtime($core_path) : '0.4.3';
     95    $frontend_ver = file_exists($frontend_path) ? filemtime($frontend_path) : '0.4.3';
     96    $admin_init_ver = file_exists($admin_init_path) ? filemtime($admin_init_path) : '0.4.3';
     97    $style_ver = file_exists($style_path) ? filemtime($style_path) : '0.4.3';
     98    $settings_ver = file_exists($settings_path) ? filemtime($settings_path) : '0.4.3';
    9999
    100100    if (! wp_script_is($core_handle, 'registered')) {
  • ask-my-content/trunk/build/ask-my-content/block.json

    r3384523 r3384842  
    33  "apiVersion": 3,
    44  "name": "amc/ask-my-content",
    5   "version": "0.4.2",
     5  "version": "0.4.3",
    66  "title": "Ask My Content",
    77  "category": "widgets",
  • ask-my-content/trunk/build/blocks-manifest.php

    r3384523 r3384842  
    66        'apiVersion' => 3,
    77        'name' => 'amc/ask-my-content',
    8         'version' => '0.4.2',
     8        'version' => '0.4.3',
    99        'title' => 'Ask My Content',
    1010        'category' => 'widgets',
  • ask-my-content/trunk/readme.txt

    r3384813 r3384842  
    1 === Ask My Content AI Q&A Chatbot ===
     1=== Ask My Content - AI Q&A Chatbot ===
    22Contributors: ugoltsev
    33Tags: ai, chatbot, q-and-a, content-search, openai
     
    55Requires PHP: 7.4
    66Tested up to: 6.8
    7 Stable tag: 0.4.2
     7Stable tag: 0.4.3
    88License: GPL-2.0-or-later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    119119* Initial release – shortcode, block, automatic content sync, AI-powered answers.
    120120
     121= 0.4.3 =
     122Changed the plugin name from "Ask My Content" to "Ask My Content - AI Q&A Chatbot"
     123
    121124== Upgrade Notice ==
    122125
    123 = 0.4.2 =
    124 First release. Add the chatbot block or shortcode to any page to enable AI-powered Q&A.
     126= 0.4.3 =
     127Changed the plugin name from "Ask My Content" to "Ask My Content - AI Q&A Chatbot"
  • ask-my-content/trunk/src/ask-my-content/block.json

    r3384523 r3384842  
    33    "apiVersion": 3,
    44    "name": "amc/ask-my-content",
    5     "version": "0.4.2",
     5    "version": "0.4.3",
    66    "title": "Ask My Content",
    77    "category": "widgets",
Note: See TracChangeset for help on using the changeset viewer.