Skip to content

Commit

Permalink
Release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
Fruchtzwerg94 committed May 27, 2022
1 parent cf3b8b4 commit d9bbcfc
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# X.X.X.X (XX.XX.XXXX)
# 1.1.0.4 (27.05.2022)
- Added support for dark interfaces
- Implemented calcellation of an ongoing generation
- Implemented cancellation of an ongoing generation
- Improved error message if Java was not found
- Extended icon to highlight itself and close preview if opened
- Added menu entry and shortcut Shift + U to refresh diagram
Expand Down
7 changes: 5 additions & 2 deletions PlantUmlViewer/PlantUmlViewer/Forms/PreviewWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,11 @@ public async void Button_Refresh_Click(object sender, EventArgs e)
}
}

toolStripStatusLabel_Time.Text = DateTime.Now.ToShortTimeString();
toolStripStatusLabel_Time.BackColor = colorSuccess;
InvokeIfRequired(() =>
{
toolStripStatusLabel_Time.Text = DateTime.Now.ToShortTimeString();
toolStripStatusLabel_Time.BackColor = colorSuccess;
});
}
catch (JavaNotFoundException jnfEx)
{
Expand Down
4 changes: 2 additions & 2 deletions PlantUmlViewer/PlantUmlViewer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.2.3")]
[assembly: AssemblyFileVersion("1.0.2.3")]
[assembly: AssemblyVersion("1.1.0.4")]
[assembly: AssemblyFileVersion("1.1.0.4")]
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PlantUML Viewer
[![License](https://img.shields.io/github/license/Fruchtzwerg94/PlantUmlViewer.svg)](https://github.com/nea/MarkdownViewerPlusPlus/blob/master/LICENSE.md)
[![Latest release](https://img.shields.io/badge/release-1.0.2-green.svg)](https://github.com/Fruchtzwerg94/PlantUmlViewer/releases/tag/1.0.2.3)
[![Latest release](https://img.shields.io/github/v/tag/Fruchtzwerg94/PlantUmlViewer?color=green)](https://github.com/Fruchtzwerg94/PlantUmlViewer/releases)
[![Downloads](https://img.shields.io/github/downloads/Fruchtzwerg94/PlantUmlViewer/total)](https://tooomm.github.io/github-release-stats/?username=Fruchtzwerg94&repository=PlantUmlViewer)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/insanitydesign)

Expand Down Expand Up @@ -35,11 +35,15 @@ PlantUML Viewer can be opened
* via the *Plugins* submenu

![PlantUML Viewer](doc/PlantUmlViewer.png)
![PlantUML Viewer](doc/PlantUmlViewerDark.png)

By clicking the *Refresh* button the diagram gets generated out of the current opened document. The file extension doesn't matter. The diagram can be moved by dragging and zoomed by scrolling. The currently showed diagram can be exported as PNG image by clicking the *Export* button.

Make sure *JAVA_PATH* is set in your system or set the right path to your Java installation in the plugins options.

![PlantUML Viewer](doc/Menu.png)
![PlantUML Viewer](doc/Options.png)

You may also want use this plugin in combination with [PlantUML_Notepad-_UDL](https://github.com/brianmaher84/PlantUML_Notepad-_UDL), which enables the PlantUML language syntax for Notepad++.

## License and credits
Expand Down
Binary file added doc/Menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 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.
Binary file modified doc/PlantUmlViewer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/PlantUmlViewerDark.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 d9bbcfc

Please sign in to comment.