Plugin Directory

Changeset 3449058


Ignore:
Timestamp:
01/28/2026 10:01:38 PM (2 months ago)
Author:
ugoltsev
Message:

Release 0.8.2

Location:
ask-my-content
Files:
49 added
9 edited

Legend:

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

    r3448236 r3449058  
    44 * 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.8.1
     6 * Version:           0.8.2
    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.8.1';
    95     $frontend_ver = file_exists($frontend_path) ? filemtime($frontend_path) : '0.8.1';
    96     $admin_init_ver = file_exists($admin_init_path) ? filemtime($admin_init_path) : '0.8.1';
    97     $style_ver = file_exists($style_path) ? filemtime($style_path) : '0.8.1';
    98     $settings_ver = file_exists($settings_path) ? filemtime($settings_path) : '0.8.1';
     94    $core_ver = file_exists($core_path) ? filemtime($core_path) : '0.8.2';
     95    $frontend_ver = file_exists($frontend_path) ? filemtime($frontend_path) : '0.8.2';
     96    $admin_init_ver = file_exists($admin_init_path) ? filemtime($admin_init_path) : '0.8.2';
     97    $style_ver = file_exists($style_path) ? filemtime($style_path) : '0.8.2';
     98    $settings_ver = file_exists($settings_path) ? filemtime($settings_path) : '0.8.2';
    9999
    100100    if (! wp_script_is($core_handle, 'registered')) {
     
    209209
    210210    $floating_path = plugin_dir_path(__FILE__) . 'assets/js/amc-floating.js';
    211     $floating_ver = file_exists($floating_path) ? filemtime($floating_path) : '0.8.1';
     211    $floating_ver = file_exists($floating_path) ? filemtime($floating_path) : '0.8.2';
    212212
    213213    wp_enqueue_script(
  • ask-my-content/trunk/build/ask-my-content/block.json

    r3448236 r3449058  
    33  "apiVersion": 3,
    44  "name": "amc/ask-my-content",
    5   "version": "0.8.1",
     5  "version": "0.8.2",
    66  "title": "Ask My Content",
    77  "category": "widgets",
  • ask-my-content/trunk/build/blocks-manifest.php

    r3448236 r3449058  
    66        'apiVersion' => 3,
    77        'name' => 'amc/ask-my-content',
    8         'version' => '0.8.1',
     8        'version' => '0.8.2',
    99        'title' => 'Ask My Content',
    1010        'category' => 'widgets',
  • ask-my-content/trunk/includes/settings.php

    r3445867 r3449058  
    11<?php
     2
     3require_once __DIR__ . '/settings_warnings.php';
    24
    35if (! defined('ABSPATH')) {
     
    2628            </div>
    2729        <?php else : ?>
     30            <?php askmyco_render_admin_warnings(); ?>
    2831            <?php include_once __DIR__ . '/settings_options.php'; ?>
    2932            <hr>
  • ask-my-content/trunk/includes/settings_embed.php

    r3448236 r3449058  
    8181        askmyco_db_set_stop_requested();
    8282        update_option('askmyco_embedding_status', 'stopping…');
     83
     84        // If WP-Cron is disabled, the scheduled run will never fire.
     85        // Normalize immediately to avoid getting stuck in "stopping…".
     86        if (defined('DISABLE_WP_CRON') && constant('DISABLE_WP_CRON')) {
     87            update_option('askmyco_is_indexing', '0');
     88            askmyco_db_clear_stop_requested();
     89            update_option('askmyco_embedding_status', 'stopped');
     90        }
    8391
    8492        // If no run is active and nothing is scheduled, normalize to stopped now
  • ask-my-content/trunk/readme.txt

    r3448250 r3449058  
    55Requires PHP: 7.4
    66Tested up to: 6.9
    7 Stable tag: 0.8.1
     7Stable tag: 0.8.2
    88License: GPL-2.0-or-later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    151151== Changelog ==
    152152
     153= 0.8.2 =
     154Added warnings that WP-CLI may be required for indexing, in case WP-Cron is disabled, and similar cases.
     155
    153156= 0.8.1 =
    154157Amended WP-CLI command suite (`wp amc`)
  • ask-my-content/trunk/src/ask-my-content/block.json

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