Skip to content

Commit 115cf53

Browse files
0.3.8.9 (2022-03-07)
+ Changed doc version to doc-1-9 (deep changes to list handling)
1 parent f03cd0f commit 115cf53

File tree

19 files changed

+524
-30
lines changed

19 files changed

+524
-30
lines changed

docgen/parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"title" : "Venus (Fugerit Document Generation Framework)",
33
"name": "Venus",
4-
"version" : "0.3.8.8",
5-
"date" : "06/03/2022",
4+
"version" : "0.3.8.9",
5+
"date" : "07/03/2022",
66
"organization" : {
77
"name" : "Fugerit Org",
88
"url" : "https://www.fugerit.org"

docgen/release-notes.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
0.3.8.7 / 0.3.8.8 (2022-03-06)
1+
0.3.8.9 (2022-03-07)
2+
--------------------
3+
+ Changed doc version to doc-1-9 (deep changes to list handling)
4+
5+
0.3.8.7 / 0.3.8.8 (2022-03-06)
26
--------------------
37
+ Added support for different symbols on FOP/HTML rendered list (dash, minus, letters, numbers)
48

fj-doc-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-doc</artifactId>
10-
<version>0.3.8.8</version>
10+
<version>0.3.8.9</version>
1111
</parent>
1212

1313
<name>fj-doc-base</name>

fj-doc-base/src/main/java/org/fugerit/java/doc/base/facade/DocFacade.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The Apache Software Foundation (http://www.apache.org/).
6060
*/
6161
public class DocFacade {
6262

63-
public static final String CURRENT_VERSION = "1-8";
63+
public static final String CURRENT_VERSION = "1-9";
6464

6565
private static Logger logger = LoggerFactory.getLogger( DocFacade.class );
6666

fj-doc-base/src/main/java/org/fugerit/java/doc/base/model/DocLi.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,16 @@ public DocElement getContent() {
1111
return this.getElementList().get( 0 );
1212
}
1313

14+
public DocElement getSecondContent() {
15+
return this.getElementList().get( 1 );
16+
}
17+
1418
public boolean isContentList() {
1519
return this.getContent().getClass().equals( DocList.class );
1620
}
21+
22+
public boolean isSecondList() {
23+
return this.getElementList().size() > 1 && this.getSecondContent().getClass().equals( DocList.class );
24+
}
1725

1826
}

0 commit comments

Comments
 (0)