asciidoctor / asciidoctor-diagram

:left_right_arrow: Asciidoctor diagram extension, with support for AsciiToSVG, BlockDiag (BlockDiag, SeqDiag, ActDiag, NwDiag), Ditaa, Erd, GraphViz, Mermaid, Msc, PlantUML, Shaape, SvgBob, Syntrax, UMLet, Vega, Vega-Lite and WaveDrom.
http://asciidoctor.org
MIT License
435 stars 106 forks source link

C4-PlantUML prefers PlantUML 1.2021.6 or higher. #360

Closed wfouche closed 3 years ago

wfouche commented 3 years ago

Asciidoctor-diagram 2.1.2 uses PlantUML 1.2021.2. With a version of PlantUML of 1.2021.5 or less, it produces the following log message when processing a C4-PlantUML diagram:

[Log] "dynamic undefined legend colors" requires PlantUML version >= 1.2021.6, therefore only static assigned colors are used

When is Asciidoctor-diagram 2.1.3 planned to be released? (since it will be released with at least PlantUML 1.2021.8 or higher).

pepijnve commented 3 years ago

Starting with asciidoctor-diagram 2.1 PlantUML is no longer bundled inside the main gem directly. This was done to avoid having to make nee releases every time a new PlantUML release becomes available. You should be able to pull in the latest version of https://rubygems.org/gems/asciidoctor-diagram-plantuml That's currently at 1.2012.8.

wfouche commented 3 years ago

Thanks.