Skip to content

Commit

Permalink
PlantUML and libraries updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Fruchtzwerg94 committed Jan 10, 2023
1 parent 65d7ea7 commit a4a7050
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# X.X.X.X (X.X.X.X)
- PlantUML version updated to 1.2023.0
- Added fluent and dark style icons
- Updated to common zoom and scroll behaviour Ctrl + mouse wheel to zoom and (Shift +) mouse wheel to scroll vertically and horizontally
- Added include option
Expand All @@ -9,7 +10,8 @@
- Fixed generation may takes exponentially long for diagrams producing big images
- Fixed setting Java path in options not applied without restarting Notepad++
- Switched order of Ok and Cancel button in options window
- Added information about used Plant UML version in about window
- Added information about used PlantUML version in about window
- Json.NET library updated to 13.0.2
- SVG.NET library updated to 3.4.4

# 1.4.0.8 (07.10.2022)
Expand Down
3 changes: 1 addition & 2 deletions PlantUmlViewer/PlantUmlViewer/Forms/AboutWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Diagnostics;
using System.Net;
using System.Net.Http;
using System.Reflection;
using System.Windows.Forms;

using Newtonsoft.Json.Linq;
Expand All @@ -19,7 +18,7 @@ public AboutWindow()
this.Text = "About " + PlantUmlViewer.PLUGIN_NAME;
this.label_ProductName.Text = AssemblyAttributes.Product;
this.label_PluginVersion.Text = string.Format("Plugin version {0}", AssemblyAttributes.Version);
this.label_PlantUmlVersion.Text = string.Format("Plant UML version {0}", PlantUmlViewer.PLANT_UML_VERSION);
this.label_PlantUmlVersion.Text = string.Format("PlantUML version {0}", PlantUmlViewer.PLANT_UML_VERSION);
this.label_Copyright.Text = AssemblyAttributes.Copyright;
this.richTextBox_Text.SelectedRtf = Properties.Resources.AboutText;
}
Expand Down
2 changes: 1 addition & 1 deletion PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.cs
Original file line number Diff line number Diff line change
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.2022.8";
public const string PLANT_UML_VERSION = "1.2023.0";
private const string PLANT_UML_BINARY = "plantuml-" + PLANT_UML_VERSION + ".jar";

private enum CommandId
Expand Down
2 changes: 1 addition & 1 deletion PlantUmlViewer/PlantUmlViewer/PlantUmlViewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<HintPath>..\packages\Fizzler.1.2.1\lib\netstandard2.0\Fizzler.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Svg, Version=3.4.0.0, Culture=neutral, PublicKeyToken=12a0bac221edeae2, processorArchitecture=MSIL">
<HintPath>..\packages\Svg.3.4.4\lib\net462\Svg.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion PlantUmlViewer/PlantUmlViewer/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<package id="Fizzler" version="1.2.1" targetFramework="net461" />
<package id="ILMerge" version="3.0.41" targetFramework="net461" />
<package id="MSBuild.ILMerge.Task" version="1.1.3" targetFramework="net461" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net461" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net462" />
<package id="Svg" version="3.4.4" targetFramework="net462" />
<package id="System.Buffers" version="4.5.1" targetFramework="net461" />
<package id="System.Memory" version="4.5.4" targetFramework="net461" />
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The diagram can be
The currently showed diagram can be exported or copied to clipboard as PNG or SVG image by clicking the *Export* (<img src="PlantUmlViewer/PlantUmlViewer/Resources/Save.png" width="20">) button or using the right click context menu.
If your document contains multiple diagrams and or pages, you can use the navigation buttons to show the next (<img src="PlantUmlViewer/PlantUmlViewer/Resources/NavigateRight.png" width="20">) or previous (<img src="PlantUmlViewer/PlantUmlViewer/Resources/NavigateLeft.png" width="20">) diagram and next (<img src="PlantUmlViewer/PlantUmlViewer/Resources/NavigateUp.png" width="20">) or previous (<img src="PlantUmlViewer/PlantUmlViewer/Resources/NavigateDown.png" width="20">) page.

Make sure *JAVA_PATH* is set in your system or set the right path to your Java installation in the plugins options.
Make sure *JAVA_PATH* is set in your system or set the right path to your Java installation. It can be set together with other options in the plugins options window.

![PlantUML Viewer menu](doc/Menu.png)
![PlantUML Viewer options](doc/Options.png)
Expand Down
Binary file modified doc/Options.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a4a7050

Please sign in to comment.