Changeset 3331966
- Timestamp:
- 07/22/2025 07:30:49 AM (5 months ago)
- Location:
- ai-bot-for-bbpress
- Files:
-
- 27 added
- 3 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/LICENSE (added)
-
tags/1.0.4/ai-bot-for-bbpress.php (added)
-
tags/1.0.4/documentation (added)
-
tags/1.0.4/documentation/building-agents.md (added)
-
tags/1.0.4/documentation/data-retrieval.md (added)
-
tags/1.0.4/documentation/plugin-generalization.md (added)
-
tags/1.0.4/documentation/realtime-api.md (added)
-
tags/1.0.4/inc (added)
-
tags/1.0.4/inc/admin (added)
-
tags/1.0.4/inc/admin/admin-central.php (added)
-
tags/1.0.4/inc/admin/register-settings.php (added)
-
tags/1.0.4/inc/api (added)
-
tags/1.0.4/inc/api/class-chatgpt-api.php (added)
-
tags/1.0.4/inc/context (added)
-
tags/1.0.4/inc/context/class-content-interaction-service.php (added)
-
tags/1.0.4/inc/context/class-database-agent.php (added)
-
tags/1.0.4/inc/context/class-forum-structure-provider.php (added)
-
tags/1.0.4/inc/context/class-local-context-retriever.php (added)
-
tags/1.0.4/inc/context/class-remote-context-retriever.php (added)
-
tags/1.0.4/inc/core (added)
-
tags/1.0.4/inc/core/class-ai-bot-service-container.php (added)
-
tags/1.0.4/inc/core/class-ai-bot.php (added)
-
tags/1.0.4/inc/core/class-bot-trigger-service.php (added)
-
tags/1.0.4/inc/core/class-generate-bot-response.php (added)
-
tags/1.0.4/inc/core/class-system-prompt-builder.php (added)
-
tags/1.0.4/readme.txt (added)
-
trunk/ai-bot-for-bbpress.php (modified) (1 diff)
-
trunk/inc/core/class-ai-bot.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-bot-for-bbpress/trunk/ai-bot-for-bbpress.php
r3331926 r3331966 4 4 * Plugin URI: https://wordpress.org/plugins/ai-bot-for-bbpress/ 5 5 * Description: AI bot for bbPress forums that can be configured to reply to mentions or keywords. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: Chubes 8 8 * Author URI: https://chubes.net -
ai-bot-for-bbpress/trunk/inc/core/class-ai-bot.php
r3331926 r3331966 134 134 } else { 135 135 // error_log( 'AI Bot Info: Successfully posted reply ID ' . $reply_id . ' to topic ID ' . $topic_id ); 136 137 // IMPORTANT: Fire the bbp_new_reply hook to ensure compatibility with notification plugins, 138 // points systems, activity feeds, and other bbPress integrations that expect this hook 139 do_action( 'bbp_new_reply', $reply_id, $topic_id, $forum_id, array(), $bot_user_id ); 140 136 141 return $reply_id; 137 142 } -
ai-bot-for-bbpress/trunk/readme.txt
r3331926 r3331966 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 36 Stable tag: 1.0.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 104 104 == Changelog == 105 105 106 = 1.0.4 = 107 * Fix: Bot replies now properly trigger WordPress hooks (bbp_new_reply) for better integration 108 * Enhancement: Bot replies now work correctly with notification plugins, points systems, and activity feeds 109 * Enhancement: Improved compatibility with bbPress ecosystem plugins that expect standard hooks 110 106 111 = 1.0.3 = 107 112 * NEW FEATURE: Forum Access Control - Bot can now be restricted to specific forums only
Note: See TracChangeset
for help on using the changeset viewer.