Skip to content

Commit

Permalink
PlantUML version updated to 1.2024.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Fruchtzwerg94 committed Feb 22, 2024
1 parent 1eca090 commit 2d57266
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_build.yml
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions 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

Expand Down
2 changes: 1 addition & 1 deletion PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs
Expand Up @@ -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
Expand Down

0 comments on commit 2d57266

Please sign in to comment.