What's Changed
- Feature Site by @JayNightmare in #1
New Contributors
- @JayNightmare made their first contribution in #1
Full Changelog: v0.0.5...v0.0.8
[0.0.8] - 26/11/2025
- Major Fix: Improved the speed of file doc generation by:
- Optimising the prompt structure
- Adding test cases to check for enough existing documentation before making API calls
- Files with sufficient Javadoc comments are now skipped to save time and resources.
- Checked for enough tags (@param, @return, etc.) and descriptive summaries.
- Considered a comment descriptive if it has at least 15 characters (excluding whitespace).
- Files with at least 80% of methods/classes documented are skipped.
- Refined Javadoc generation prompt to include file description and author tag.
[0.0.7] - 26/11/2025
- Improved documentation site generation:
- Enhanced search functionality for better navigation.
- Added support for custom themes in Maven site generation.
- Fixed responsive design issues on mobile devices.
- Updated onboarding walkthrough to include documentation site setup instructions.
[0.0.7-beta] - 26/11/2025
- Added "Documentation Site" feature:
- Supports both Maven and non-Maven Java projects.
- Configures
pom.xmlfor Maven projects withmaven-site-pluginandmaven-javadoc-plugin. - Generates GitHub Actions workflow (
.github/workflows/doc-site.yml) for automated deployment to GitHub Pages. - Updates
README.mdwith instructions on how to generate and deploy the site. - New commands:
ku-javadoc.configureSiteandku-javadoc.generateSite.