diff --git a/CLAUDE.md b/CLAUDE.md index 9bd44af..d443e4e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -397,3 +397,32 @@ wp-fedistream/ - Successfully pushed dev, main branches and v0.1.0 tag to origin - Remote URL updated from HTTPS to SSH for authentication - First release is now live at the repository + +### 2026-01-28 - Bugfix v0.1.1 and Feature v0.2.0 + +**Summary:** Fixed WooCommerce integration timing bug, added plugin action links and user guide. + +**v0.1.1 - Bugfix:** + +- Fixed WooCommerce product types not appearing in product selector +- Root cause: `Integration` constructor hooked `check_woocommerce` to `plugins_loaded` priority 5, but class was instantiated at priority 10 (too late) +- Solution: Call `check_woocommerce()` directly in constructor + +**v0.2.0 - Features:** + +- Added Dashboard and Settings links to WordPress Plugins page +- Created comprehensive `USERGUIDE.md` covering all features + +**Files Modified:** + +- `includes/WooCommerce/Integration.php` - Fixed hook timing +- `includes/Plugin.php` - Added `add_plugin_action_links()` method + +**Files Created:** + +- `USERGUIDE.md` - Comprehensive user documentation + +**Notes:** + +- All releases pushed to origin (v0.1.1 and v0.2.0 tags) +- Markdown linting fixes applied to USERGUIDE.md