Skip to content

Commit 49bb1d2

Browse files
0.3.9.4 (2022-04-06)
+ para can now contains para and phrases (fop and freemarker mod) + Changed fj-core version to 0.7.6.8
1 parent 2d9de31 commit 49bb1d2

File tree

19 files changed

+517
-22
lines changed

19 files changed

+517
-22
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.9.2",
5-
"date" : "17/03/2022",
4+
"version" : "0.3.9.4",
5+
"date" : "06/04/2022",
66
"organization" : {
77
"name" : "Fugerit Org",
88
"url" : "https://www.fugerit.org"

docgen/release-notes.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
0.3.9.3 (2022-03-18)
1+
0.3.9.4 (2022-04-06)
2+
--------------------
3+
+ para can now contains para and phrases (fop and freemarker mod)
4+
+ Changed fj-core version to 0.7.6.8
5+
6+
0.3.9.3 (2022-03-18)
27
--------------------
38
+ Fix to phrase link style in mod-fop
49

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.9.3</version>
10+
<version>0.3.9.4</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-9";
63+
public static final String CURRENT_VERSION = "1-10";
6464

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The Apache Software Foundation (http://www.apache.org/).
3131
* @author mfranci
3232
*
3333
*/
34-
public class DocPara extends DocElement implements DocStyle {
34+
public class DocPara extends DocContainer implements DocStyle {
3535

3636
/**
3737
*

fj-doc-base/src/main/java/org/fugerit/java/doc/base/xml/DocContentHandler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ public class DocContentHandler implements ContentHandler {
8383
"meta",
8484
"metadata",
8585
"header",
86-
"footer",
86+
"footer",
87+
"para",
8788
"header-ext",
8889
"footer-ext",
8990
DocBackground.TAG_NAME,

0 commit comments

Comments
 (0)