Skip to content

Commit a0e4c07

Browse files
committed
Release 2.1.8
1 parent 3000a21 commit a0e4c07

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SequenceDiagram Changelog
22

33
## [Unreleased]
4+
## [2.1.8]
45
### Fixed
56
- Unable to export large images #122, #119
67

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Please try to experience it and find what happen.
101101
Have fun!
102102

103103
## Version History
104-
**Current Version 2.1.7**
104+
**Current Version 2.1.8**
105105

106106
versions:
107107
[Changelog](CHANGELOG.md)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pluginGroup = vanstudio
55
pluginName = SequenceDiagram
6-
pluginVersion = 2.1.7
6+
pluginVersion = 2.1.8
77

88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.

src/main/java/org/intellij/sequencer/diagram/app/actions/ExportAction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
public class ExportAction extends SequenceAction {
1212

13-
private Display _display = null;
13+
private final Display _display;
1414

1515
public ExportAction(Display display) {
1616
super("ExportAction", true);
@@ -30,7 +30,7 @@ public void actionPerformed(ActionEvent e) {
3030

3131
private void export(File file) {
3232
try {
33-
_display.saveImageToFile(file);
33+
_display.saveImageToSvgFile(file);
3434
} catch(IOException e) {
3535
e.printStackTrace();
3636
}

0 commit comments

Comments
 (0)