Skip to content

Commit

Permalink
0.3.7.4 (2022-02-03)
Browse files Browse the repository at this point in the history
+ fj-mode-freemarker : fix in DocPhrase handling
  • Loading branch information
mttfranci committed Feb 3, 2022
1 parent 1d3e259 commit fb7fa8b
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions docgen/parameters.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"title" : "Venus (Fugerit Document Generation Framework)",
"name": "Venus",
"version" : "0.3.7.3",
"date" : "26/01/2022",
"version" : "0.3.7.4",
"date" : "03/02/2022",
"organization" : {
"name" : "Fugerit Org",
"url" : "https://www.fugerit.org"
Expand Down
6 changes: 5 additions & 1 deletion docgen/release-notes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
0.3.7.3 (2022-01-26)
0.3.7.4 (2022-02-03)
--------------------
+ fj-mode-freemarker : fix in DocPhrase handling

0.3.7.3 (2022-01-26)
--------------------
+ Added metadata info doc-language for whole document (currently only supported by fop renderer)

Expand Down
2 changes: 1 addition & 1 deletion fj-doc-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-base</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-ent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-ent</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-freemarker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-freemarker</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<#elseif (current.anchor)??>
<a <@handleStyleOnly styleValue=current.style/> name="${current.anchor}">${current.text}</a>
<#else>
<span <@handleStyleOnly styleValue=current.style/>${current.text}</span>
<span <@handleStyleOnly styleValue=current.style/>>${current.text}</span>
</#if>
</#macro>

Expand Down
2 changes: 1 addition & 1 deletion fj-doc-mod-fop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-mod-fop</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-mod-itext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-mod-itext</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-mod-jxl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-mod-jxl</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-mod-pdfbox/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-mod-pdfbox</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-mod-poi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-mod-poi</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-doc-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>
<version>0.3.7.3</version>
<version>0.3.7.4</version>
</parent>

<name>fj-doc-sample</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.fugerit.java</groupId>
<artifactId>fj-doc</artifactId>

<version>0.3.7.3</version>
<version>0.3.7.4</version>
<packaging>pom</packaging>

<name>fj-doc</name>
Expand Down

0 comments on commit fb7fa8b

Please sign in to comment.