Dokka Versions Save

API documentation engine for Kotlin

v1.6.10

2 years ago

Changes

Bugfixes

Maintenance

v1.6.0

2 years ago

Changes:

  • New UI
  • Support of version plugin for single module projects
  • Allow package-level suppression (#2209), thanks @owengray-google
  • GFM: Use Markdown syntax to render lists (#2098), thanks @sgilson
  • Fix names of nested inheritors
  • Fix adding new custom stylesheets in submodules
  • Add keywords expect and actual in signatures

v1.5.31

2 years ago

Changes:

  • Support Kotlin 1.5.31
  • Support JS KLib
  • Fix link to a javadoc enum entry

v1.5.30

2 years ago

Highlights of this release are:

  • Support kotlin 1.5.30
  • @literal is also supported without code tag, thanks @fsladkey
  • improvements in@link tag support. Now it supports line breaks!

v1.5.0

2 years ago

Kotlin compiler upgraded to 1.5.0

Fixes:

Make module name optional in CLI (#1850) Fix line separator issues (#1887) Fix preserving spaces in Javadoc comments (#1923) GFM renderer: sanitize line ends (#1936) Fix rendering html in briefs (#1931) Fix code blocks on Extension Points page (#1948) Remove extra dash (#1968) Don't use older dir from previous runs in versioning (#1963) Change jekyll links to be .html (#1990) Fix Gradle plugin application (#2000)

Added features:

Add a supertype for leaf dokka tasks that defines dokkaSourceSets (#1891) Add ability to specify older versions as a list of files (#1890) Cachable Gradle task (#1905) Multilanguage docs inheritance (#1951) Logging levels in CLI (#1976) Flatten multi-module structure (#1980)

Special thanks to external contributors: @rnett, @msink, @zsmb13, @rachelcarmena and @hfhbd

v1.4.32

3 years ago

Fixes:

  • Fix configuration for suppressing obvious functions (#1789)
  • Fix visibility on enum entry property (#1828)
  • Fix missing annotations in GFM and unresolved static imports (#1845)

Added features:

  • Reintroduce multimodule documentation (#1804)
  • Compiler bump to 1.4.32 (#1818)
  • Suppress inherited members (#1814)
  • Bump kotlinx.html to 0.7.3 (#1819) (requires adding "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven" repository)
  • Add ability to document generated files (#1832)
  • Handle html in KDoc (#1805)
  • Make anchors stable (#1851)

Special thanks to external contributors: @AzimMuradov and @hfhbd

v1.4.30

3 years ago

In this release we focused on improving multi-module experience that would allow links, search and navigation to be rendered for the whole project rather than independent modules. We have also updated the compiler to 1.4.30 and introduced the versioning plugin for the multi module, that lets users generate documentation for each version incrementally and switch between them on the main page.

Breaking changes

  • Dokka multi module no longer uses generic dokka${format} task but rather dokka${format}Partial where format is the desired output format like html or gfm

Improvements and bug fixes

  • JvmName support #1675
  • Use Maven directly to download additional dependencies #1644 thanks @adangel
  • Fix docs on DProperty #1671
  • Refactor ContentTable builder and fix GFM table rendering #1682
  • Versioning #1654
  • Footer customisation #1691
  • Resolve Trove issue #1715
  • Fix incorrect DRI conversion in KotlinAsJava modes for nested definitions #1701
  • JvmOverloads (#1712) and add detection of JvmSynthetic (#1718) thanks @bishiboosh
  • Annotations for parameters #1710
  • Fix links to method parameters from documentation #1713
  • Fix displaying default Java visibility #1738
  • Add legacy KotlinWebsite format to recognized link formats #1750
  • Fix parameters in CLI and bump kotlinx.cli #1755
  • Suppress tag support #1742
  • Add ability to suppress obvious functions like equals, toString #1758
  • Make Gradle plugin use api instead of implementation for dokka-core #1771

v1.4.20

3 years ago

Breaking changes

  • prefix was replaced by matchingRegex #598, thanks @martinbonnin

Improvements and bug fixes

  • Dokka is now build using Kotlin 1.4.20
  • javadoc now handles @inheritDoc annotation #1608
  • breadcrumbs improvements in html format #1590
  • functions and properties can be divided into inherited and declared #1535
  • argument order is now preserved #1619, thanks @gzoritchak
  • page navigation now has correct height on Safari #1633

v1.4.10.2

3 years ago

This release is focused mainly on polishing features that were already present in Dokka

Improvements:

  • Created "On this page" component in the HTML format to allow quicker navigation through long pages - #1504
  • Javadoc will now inform when it is misconfigured with multiple sourcesets - #1457
  • Created a Java-friendly API for plugins - #1495
  • CLI module name is now optional with default value - #1533
  • Added parsing of package-info in Java sources - #1528
  • Translators now run in parallel #1506
  • Added better handling of functional types in rendered output - #1483
  • Added default values for primitive properties. Added presenting default values in signatures - #1489
  • Types are now distinguished from functions in the navigation #1555
  • Multiple improvements to HTML format (shorter docs on list pages, signature placement) - #1529
  • Set aether authn when getting artifacts - #1512
  • Added separate pages for properties - #1494
  • Made logo replaceable - #1488
  • GFM now supports anchors - #1442

Bugfixes:

  • Handling of multiple authors - #1539
  • Merging documentations of modules and packages - #1480
  • Parsing strikethrough - #1397
  • Escape special characters in file names - #1481
  • Fix multiline links in Javadoc and wrong linebreaking of <pre> bodies #1518
  • Fix vararg signatures - #1516
  • Fix rendering of comment tables - #1560
  • Escape urls in anchors - #1519
  • Hide derived members that are not public - #1459

v1.4.10

3 years ago

Main features:

  • The New HTML format is much more mobile-friendly - #1279
  • Kotlin 1.4.10

Improvements:

Javadoc:

  • added subclasses page
  • added deprecated page

Other:

  • added favicon in HTML format
  • simplified where documentation for modules is being searched for - #1265

Bugs fixed:

  • Asterisks in KDoc cause the chunk of text to be ripped off - #1368
  • Missing variance in classlike signatures - #1384
  • NullPointerException on images - #1424
  • Javadoc version number is always 0.0.1 - #1406
  • Codeblocks from package markdown are not displayed in HTML - #1371
  • Change substituting typealiases with actual types - #1447
  • NotImplementedError after migrating from 0.10.1 to 1.4.0-rc-24 - #1255
  • Kotlin as Java should translate type aliases - #1115
  • Show fully qualified name for typealias target coming from different package - #950