Changeset 3384842
- Timestamp:
- 10/26/2025 08:53:05 PM (5 months ago)
- Location:
- ask-my-content/trunk
- Files:
-
- 5 edited
-
ask-my-content.php (modified) (2 diffs)
-
build/ask-my-content/block.json (modified) (1 diff)
-
build/blocks-manifest.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
src/ask-my-content/block.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ask-my-content/trunk/ask-my-content.php
r3384523 r3384842 2 2 3 3 /** 4 * Plugin Name: Ask My Content 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.4. 26 * Version: 0.4.3 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.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'; 99 99 100 100 if (! wp_script_is($core_handle, 'registered')) { -
ask-my-content/trunk/build/ask-my-content/block.json
r3384523 r3384842 3 3 "apiVersion": 3, 4 4 "name": "amc/ask-my-content", 5 "version": "0.4. 2",5 "version": "0.4.3", 6 6 "title": "Ask My Content", 7 7 "category": "widgets", -
ask-my-content/trunk/build/blocks-manifest.php
r3384523 r3384842 6 6 'apiVersion' => 3, 7 7 'name' => 'amc/ask-my-content', 8 'version' => '0.4. 2',8 'version' => '0.4.3', 9 9 'title' => 'Ask My Content', 10 10 '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 === 2 2 Contributors: ugoltsev 3 3 Tags: ai, chatbot, q-and-a, content-search, openai … … 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8 7 Stable tag: 0.4. 27 Stable tag: 0.4.3 8 8 License: GPL-2.0-or-later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 119 119 * Initial release – shortcode, block, automatic content sync, AI-powered answers. 120 120 121 = 0.4.3 = 122 Changed the plugin name from "Ask My Content" to "Ask My Content - AI Q&A Chatbot" 123 121 124 == Upgrade Notice == 122 125 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 = 127 Changed 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 3 3 "apiVersion": 3, 4 4 "name": "amc/ask-my-content", 5 "version": "0.4. 2",5 "version": "0.4.3", 6 6 "title": "Ask My Content", 7 7 "category": "widgets",
Note: See TracChangeset
for help on using the changeset viewer.