Changeset 3449058
- Timestamp:
- 01/28/2026 10:01:38 PM (2 months ago)
- Location:
- ask-my-content
- Files:
-
- 49 added
- 9 edited
-
assets/banner-1544x500.jpg (modified) (previous)
-
assets/banner-772x250.jpg (modified) (previous)
-
tags/0.8.2 (added)
-
tags/0.8.2/ask-my-content.php (added)
-
tags/0.8.2/assets (added)
-
tags/0.8.2/assets/css (added)
-
tags/0.8.2/assets/css/ask-my-content.css (added)
-
tags/0.8.2/assets/js (added)
-
tags/0.8.2/assets/js/amc-admin-init.js (added)
-
tags/0.8.2/assets/js/amc-chat-core.js (added)
-
tags/0.8.2/assets/js/amc-floating.js (added)
-
tags/0.8.2/assets/js/ask-my-content.js (added)
-
tags/0.8.2/assets/js/askmyco-settings.js (added)
-
tags/0.8.2/build (added)
-
tags/0.8.2/build/ask-my-content (added)
-
tags/0.8.2/build/ask-my-content/block.json (added)
-
tags/0.8.2/build/ask-my-content/index-rtl.css (added)
-
tags/0.8.2/build/ask-my-content/index.asset.php (added)
-
tags/0.8.2/build/ask-my-content/index.css (added)
-
tags/0.8.2/build/ask-my-content/index.js (added)
-
tags/0.8.2/build/ask-my-content/render.php (added)
-
tags/0.8.2/build/ask-my-content/style-index-rtl.css (added)
-
tags/0.8.2/build/ask-my-content/style-index.css (added)
-
tags/0.8.2/build/ask-my-content/view.asset.php (added)
-
tags/0.8.2/build/ask-my-content/view.js (added)
-
tags/0.8.2/build/blocks-manifest.php (added)
-
tags/0.8.2/includes (added)
-
tags/0.8.2/includes/activate.php (added)
-
tags/0.8.2/includes/api.php (added)
-
tags/0.8.2/includes/cli.php (added)
-
tags/0.8.2/includes/db.php (added)
-
tags/0.8.2/includes/deactivate.php (added)
-
tags/0.8.2/includes/indexing.php (added)
-
tags/0.8.2/includes/settings.php (added)
-
tags/0.8.2/includes/settings_chat.php (added)
-
tags/0.8.2/includes/settings_embed.php (added)
-
tags/0.8.2/includes/settings_options.php (added)
-
tags/0.8.2/includes/settings_warnings.php (added)
-
tags/0.8.2/includes/sync.php (added)
-
tags/0.8.2/includes/utils.php (added)
-
tags/0.8.2/readme.txt (added)
-
tags/0.8.2/src (added)
-
tags/0.8.2/src/ask-my-content (added)
-
tags/0.8.2/src/ask-my-content/block.json (added)
-
tags/0.8.2/src/ask-my-content/edit.js (added)
-
tags/0.8.2/src/ask-my-content/editor.scss (added)
-
tags/0.8.2/src/ask-my-content/index.js (added)
-
tags/0.8.2/src/ask-my-content/render.php (added)
-
tags/0.8.2/src/ask-my-content/style.scss (added)
-
tags/0.8.2/src/ask-my-content/view.js (added)
-
trunk/ask-my-content.php (modified) (3 diffs)
-
trunk/build/ask-my-content/block.json (modified) (1 diff)
-
trunk/build/blocks-manifest.php (modified) (1 diff)
-
trunk/includes/settings.php (modified) (2 diffs)
-
trunk/includes/settings_embed.php (modified) (1 diff)
-
trunk/includes/settings_warnings.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/ask-my-content/block.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ask-my-content/trunk/ask-my-content.php
r3448236 r3449058 4 4 * Plugin Name: Ask My Content - AI Q&A Chatbot 5 5 * 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. 16 * Version: 0.8.2 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 7.4 … … 92 92 $settings_path = $base_dir . 'assets/js/askmyco-settings.js'; 93 93 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'; 99 99 100 100 if (! wp_script_is($core_handle, 'registered')) { … … 209 209 210 210 $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'; 212 212 213 213 wp_enqueue_script( -
ask-my-content/trunk/build/ask-my-content/block.json
r3448236 r3449058 3 3 "apiVersion": 3, 4 4 "name": "amc/ask-my-content", 5 "version": "0.8. 1",5 "version": "0.8.2", 6 6 "title": "Ask My Content", 7 7 "category": "widgets", -
ask-my-content/trunk/build/blocks-manifest.php
r3448236 r3449058 6 6 'apiVersion' => 3, 7 7 'name' => 'amc/ask-my-content', 8 'version' => '0.8. 1',8 'version' => '0.8.2', 9 9 'title' => 'Ask My Content', 10 10 'category' => 'widgets', -
ask-my-content/trunk/includes/settings.php
r3445867 r3449058 1 1 <?php 2 3 require_once __DIR__ . '/settings_warnings.php'; 2 4 3 5 if (! defined('ABSPATH')) { … … 26 28 </div> 27 29 <?php else : ?> 30 <?php askmyco_render_admin_warnings(); ?> 28 31 <?php include_once __DIR__ . '/settings_options.php'; ?> 29 32 <hr> -
ask-my-content/trunk/includes/settings_embed.php
r3448236 r3449058 81 81 askmyco_db_set_stop_requested(); 82 82 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 } 83 91 84 92 // If no run is active and nothing is scheduled, normalize to stopped now -
ask-my-content/trunk/readme.txt
r3448250 r3449058 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.9 7 Stable tag: 0.8. 17 Stable tag: 0.8.2 8 8 License: GPL-2.0-or-later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 151 151 == Changelog == 152 152 153 = 0.8.2 = 154 Added warnings that WP-CLI may be required for indexing, in case WP-Cron is disabled, and similar cases. 155 153 156 = 0.8.1 = 154 157 Amended WP-CLI command suite (`wp amc`) -
ask-my-content/trunk/src/ask-my-content/block.json
r3448236 r3449058 3 3 "apiVersion": 3, 4 4 "name": "amc/ask-my-content", 5 "version": "0.8. 1",5 "version": "0.8.2", 6 6 "title": "Ask My Content", 7 7 "category": "widgets",
Note: See TracChangeset
for help on using the changeset viewer.