Skip to content

Releases: tnorbye/kdoc-formatter

1.6.9 IDE-only update: Intellij 2025.3 support

16 Dec 03:20
4bf082b

Choose a tag to compare

IDE-only update: Intellij 2025.3 support

1.6.8 IDE-only update: Intellij 2025.2 support

23 Jun 19:49
446d358

Choose a tag to compare

IDE-only update: Intellij 2025.2 support

1.6.7 Bug fixes

20 Jan 18:25
b7cf932

Choose a tag to compare

Release 1.6.7 includes the following fixes:

  • Fix issue #104: Include type parameters in parameter list reordering
  • Fix issue #105: Make add punctuation apply to all paragraphs, not just last
  • IDE plugin fixes (replaced deprecated API calls)

1.6.4: Change continuation indent from 4 to 3

04 Jul 16:37
03842f5

Choose a tag to compare

1.6.4

  • Switch continuation indent from 4 to 3. (IntelliJ's Dokka preview treats an indent of 4 or more as preformatted text even on a continued line; Dokka itself (and Markdown) does not.
  • Add ability to override the continuation indent in the IDE plugin settings.
  • Don't reorder @sample tags (backported facebook/ktfmt#406)

1.6.3: Compatibility with IntelliJ 2024.2, and K2 plugin compatibility

06 Jun 01:17
1531e1f

Choose a tag to compare

Merge pull request #99 from tnorbye/1.6.3

1.6.3: Compatibility with IntelliJ 2024.2 EAP and K2 compatibility

1.6.2: Compatibility with IntelliJ 2024.1

01 Feb 00:34
5956d02

Choose a tag to compare

This release updates the IntelliJ plugin to be compatible with IntelliJ 2024.1. (It also rebuilds everything with newer versions of Kotlin, IntelliJ release plugin, changelog plugin, etc.)

1.6.0: Update dependencies and minor bug fixes

23 Aug 01:14
a21125e

Choose a tag to compare

This release just picks up a couple of minor bug fixes and updates the dependencies (like Kotlin, the JDK (to 17), etc.

1.5.9: Compatibility with IntelliJ 2023.1

25 Jan 20:45
c63d0ec

Choose a tag to compare

Compatibility with IntelliJ 2023.1.

1.5.8: Bugfixes

09 Dec 02:50
d1ec377

Choose a tag to compare

  • Fixed a number of bugs:
    • #84: Line overrun when using closed-open interval notation
    • More gracefully handle unterminated [] references (for example when
      comment is using it in things like [closed, open) intervals)
    • Recognize and convert accidentally capitalized kdoc tags like @see
    • If you have a [ref] which spans a line such that the # ends up as a
      new line, don't treat this as a "# heading".
    • Make sure we don't line break at an expression starting with ">"
      since that would turn into a quoted line.
    • If you're using optimal line breaking and there's a really long,
      unbreakable word in the paragraph, switch that paragraph over to
      greedy line breaking (to make the paragraph better balanced since
      the really long word throws the algorithm off.)
    • Fix a few scenarios where markup conversion from <p> and </p>
      wasn't converting everything.
    • Allow @Property[name], not just @param[name]
    • The --hanging-indent flag now also sets the nested list indent
      (if >= 3)
  • Some minor code cleanup.

v1.5.7: Merge pull request #81 from tnorbye/1.5.7

03 Aug 18:22
629085e

Choose a tag to compare

1.5.7 fixes the following bugs and feature requests:

  • #76: Preserve newline style (CRLF on Windows)
  • #77: Preformatting error
  • #78: Preformatting stability
  • #79: Replace {@param name} with [name]