Skip to content

v0.0.8

Latest

Choose a tag to compare

@JayNightmare JayNightmare released this 26 Nov 13:53

What's Changed

New Contributors

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.xml for Maven projects with maven-site-plugin and maven-javadoc-plugin.
    • Generates GitHub Actions workflow (.github/workflows/doc-site.yml) for automated deployment to GitHub Pages.
    • Updates README.md with instructions on how to generate and deploy the site.
    • New commands: ku-javadoc.configureSite and ku-javadoc.generateSite.