Skip to content

Releases: lightbend/paradox

v0.4.0

21 Aug 09:59
Compare
Choose a tag to compare
  • Improved scalafiddle integration
  • Var substitution in markdown files doesn't work with dotted identifiers

See: https://github.com/lightbend/paradox/milestone/8?closed=1

v0.3.6

03 Aug 08:24
@2m 2m
d2d64fa
Compare
Choose a tag to compare

Fixes

  • Paradox Theme artifact is no longer added to the Compile configuration dependencies (#225), thanks to @magro
  • github.base_url now considers stable versions (#227)
  • Cookie values are now encoded (#220)

New Features

  • Opened up SourceDirective trait for plugins (#219), thanks to @metasim
  • Absolute links to snippets now resolve from the build directory (#209)

Credits

Author Commits Lines added Lines removed
2m 2m 4 98 18
magro magro 1 48 3
xuwei-k xuwei-k 1 4 1
raboof raboof 1 1 1
metasim metasim 1 1 1

0.3.5

24 Jun 11:27
@2m 2m
c0ce819
Compare
Choose a tag to compare

This is a bug fix release, that fixes a regression (#212) in 0.3.4 where documentation would not build, if there was a property placeholder in a source link of a snippet directive.

0.3.4

24 Jun 11:27
@2m 2m
aeab252
Compare
Choose a tag to compare

New features

  • Custom HTML tags in markdown #186
  • CSS class names on snip directives #189
  • New paradowBrowse command to open documentation in the browser #193
  • Nesting of the block directives #188
  • Links to snippet sources #168
  • Outdated documentation warning #203
  • Support for multiple artifacts in the dependencies block #180
  • MardownSpec extracted to a new artifact: "com.lightbend.paradox" %% "testkit" % "0.3.4" #211

Fixed bugs

  • Indent fixes in multi-snippets #201

Credits

Author Commits Lines added Lines removed
ennru ennru 10 177 58
raboof raboof 9 88 27
2m 2m 7 2973 2795
jonas jonas 5 45 40
SethTisue SethTisue 2 20 19
ktoso ktoso 1 9 0

0.3.2

21 Dec 17:46
Compare
Choose a tag to compare

v0.3.1...v0.3.2

Fixes and enhancements

  • Allow site root relative base URLs in *doc & extref directives by @bantonsson
  • Recognize headers within group blocks by @raboof
  • Fix java URLEncoding by @andreaTP
  • Point to examples of public external themes by @jonas
  • Speed up @ref directive by pre-calculating part of mappings by @jrudolph

0.3.1

27 Sep 03:58
Compare
Choose a tag to compare

v0.3.0...v0.3.1

Fixes and enhancements

  • Disable autoScalaLibrary in theme projects #153 by @jonas

0.3.0

20 Sep 00:47
Compare
Choose a tag to compare

v0.2.13...v0.3.0

Fixes and enhancements

sbt 1.0 and 0.13

sbt-paradox is now cross-built for sbt 1.0 and 0.13

New @@dependency directive

Create dependency code examples for different build tools. See library dependencies feature for more details.

0.2.13

13 Jul 00:44
Compare
Choose a tag to compare

v0.2.12...v0.2.13

Fixes and enhancements

0.2.12

18 May 23:16
Compare
Choose a tag to compare

v0.2.11...v0.2.12

Fixes and enhancements

0.2.11

15 May 21:20
Compare
Choose a tag to compare

v0.2.10...v0.2.11

Fixes and enhancements

Custom directives

Custom directives can be added more easily:

paradoxDirectives += { context: Writer.Context =>
  new SignatureDirective(context.location.tree.label)
}