Skip to content

Releases: Vanco/SequencePlugin

SequenceDiagram 2.0.4

19 Dec 01:13
Compare
Choose a tag to compare

Rebuild for 203.*

SequenceDiagram 2.0.1

09 Apr 23:36
Compare
Choose a tag to compare

New SequenceDiagram support idea 2020.x

SequenceDiagram v1.3

05 Apr 08:47
Compare
Choose a tag to compare

Add Lambda Expression support.

SequenceDiagram v1.2.8

12 Jan 14:20
Compare
Choose a tag to compare

export call stack to text file #34

SequenceDiagram v1.2.7

02 Aug 16:19
Compare
Choose a tag to compare

fix#26: Dead loop when generate Wrapper Patten class. fix issue when disable smartInterface option.

SequenceDiagram V1.2.6

06 Oct 02:33
ca546e9
Compare
Choose a tag to compare

fix issue #22,
fixed last tab close issue.

SequenceDiagram V1.2.2

05 Nov 13:24
Compare
Choose a tag to compare

hotfix: #10 NPE when visitNewException.

SequenceDiagram V1.2.1

21 Oct 05:39
Compare
Choose a tag to compare

Hotfix NPE when try to find the implementation of interface by scan the new expression. Add bird view icon in lower right corner. change the icon set to support retina display.

SequenceDiagram V1.2

20 Oct 02:16
Compare
Choose a tag to compare

This version add new feature, Smart Interface, Which will try to find the implementation of interface, and show it in diagram. You also can choose it by yourself, when you opt-out the Smart Interface option.

The implementation class will draw with a dash link from interface. This may not a UML standard, hope it is not confusing you.

The popup menu in the diagram will help you to trailer the diagram.

SequenceDiagram V1.1 release

11 Apr 11:16
Compare
Choose a tag to compare

SequenceDiagram V1.1 release has great improvement. Now is support generate more meaningful diagram on pipeline call and call in parameter with the correct order. e.g. pipeline call

 roster
  .stream()
  .filter(p -> p.getGender() == Person.Sex.MALE
              && p.getAge() >= 18
              && p.getAge() <= 25)
  .map(p -> p.getEmailAddress())
  .forEach(email -> System.out.println(email));

and call in parameter

ref.ask(new Hello(id, Optional.empty()));