From 2d57266b8599fb28a5ae7fc7e11f2d5ab03d7e2e Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 22 Feb 2024 22:14:30 +0100 Subject: [PATCH] PlantUML version updated to 1.2024.3 --- .github/workflows/CI_build.yml | 4 ++-- CHANGELOG.md | 1 + PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index b8d8a5f..4885978 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -40,8 +40,8 @@ jobs: - name: Download libraries if: matrix.build_configuration == 'Release' run: | - curl -L --url https://github.com/plantuml/plantuml/releases/download/v1.2023.10/plantuml-1.2023.10.jar --output deploy/plantuml-1.2023.10.jar - if ((Get-FileHash -Algorithm MD5 -Path "deploy/plantuml-1.2023.10.jar").Hash -ne "b98ae548b0e26d0ca985c4fa6cdf5665") { throw "MD5 sum is invalid" } + curl -L --url https://github.com/plantuml/plantuml/releases/download/v1.2024.3/plantuml-1.2024.3.jar --output deploy/plantuml-1.2024.3.jar + if ((Get-FileHash -Algorithm MD5 -Path "deploy/plantuml-1.2024.3.jar").Hash -ne "6a918f7a0710b7d6e5373e9151ffa481") { throw "MD5 sum is invalid" } curl -L --url http://beta.plantuml.net/plantuml-jlatexmath.zip --output deploy/plantuml-jlatexmath.zip if ((Get-FileHash -Algorithm MD5 -Path "deploy/plantuml-jlatexmath.zip").Hash -ne "32a81facc3b8ed331f0d19f2c23d709a") { throw "MD5 sum is invalid" } tar -xf deploy/plantuml-jlatexmath.zip -C deploy diff --git a/CHANGELOG.md b/CHANGELOG.md index 886ce62..4ab4556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # X.X.X.X (XX.XX.XXXX) +- PlantUML version updated to 1.2024.3 - Set generation working directory to current file to allow relative includes - SVG.NET library updated to 3.4.7, dependent ExCSS library updated to 4.2.3 to fix SVG export namespace prefix not set accordingly diff --git a/PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs b/PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs index 1d3a5a8..d9d9e46 100644 --- a/PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs +++ b/PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs @@ -14,7 +14,7 @@ namespace PlantUmlViewer internal class PlantUmlViewer { public const string PLUGIN_NAME = "PlantUML Viewer"; - public const string PLANT_UML_VERSION = "1.2023.10"; + public const string PLANT_UML_VERSION = "1.2024.3"; private const string PLANT_UML_BINARY = "plantuml-" + PLANT_UML_VERSION + ".jar"; private enum CommandId