Skip to content

Releases: mikitex70/plantuml-markdown

Fixed json support

09 May 18:46
Compare
Choose a tag to compare

Fixed PlantUML json support when the json is defined in an included file or variable.

Auto-create cachedir if missing

24 Apr 06:04
Compare
Choose a tag to compare

Another minor improvement/fix: the path indicated in 'cachedir' is now automatically created if it doesn't exist.

Speed improvement when generating PNG images

22 Apr 18:24
Compare
Choose a tag to compare

This version fixes a small issue that affected performance when generating PNG images from diagrams without hyperlinks.

Converted as a Python module

26 Mar 19:44
Compare
Choose a tag to compare

The extension has been refactored as a Python module to simplify installation.

Sall fix for the package release

10 Feb 12:20
Compare
Choose a tag to compare

This version has a small fix in the release script to be able to load the source archive into PyPi as well.

Fixed corrupted inline svg images

22 Jun 18:17
Compare
Choose a tag to compare

Sometimes inline SVG images were edited by Markdown who treated them as normal text.

Fixed urllib3 warning about use of insecure connections

27 Apr 05:46
Compare
Choose a tag to compare

When using a PlantUML server with self-signed certificates it is necessary to set the insecure configuration option to true, allowing for insecure connections.
But in this case 'urllib3' gives us a warning that it will appear on the rendered page; this release resolves this issue.
It also solves another small problem, when using other types of diagrams (such as plantgantt) with a PlantUML server.

Added two new configuration options

23 Apr 18:18
Compare
Choose a tag to compare

Added the following configuration options:

  • config: set the PlantUML configuration file (as the -config plantuml command line option)
  • plantuml_cmd: set the plantuml command to execute (defaults to plantuml); can be used for passing custom options to java, for example java -Dplantuml.include.path=includes -jar plantuml.jar.

See the README.md for more details.

Changed value for the insecure setting

12 Apr 18:07
Compare
Choose a tag to compare

The default value for the insecure setting, which disables the check of SSL certificates, has been changed from "False" to False (its now a boolean value).
This does not change the behavior of the settings, but it's more compliant with the session.request option.
See #86 more more details.

Forced UTF-8 encoding

06 Mar 17:09
Compare
Choose a tag to compare

Forced UTF-8 encoding when files are passed to local plantuml.
Make sure that the diagram files are in utf-8, especially in Windows.