Skip to content

Commit 6c55248

Browse files
committed
1.5.0 (2023-08-20)
+ [enhancement][fj-doc-base] Now DocTypeHandlerDefault implements ConfigurableObject instead of extending XMLConfigurableObject to reduce hierarchy depth[1.5.0-rc.3] + [dependency]Updated fj-version to 8.1.0-rc.1 [1.5.0-rc.3] + [enhancement][fj-doc-base] DocConstants refactor to conform to singleton pattern [1.5.0-rc.3] + [removed][fj-doc-mod-fop] removed org.fugerit.java.doc.mod.fop.FreeMarkerFopProcess [1.5.0-rc.3] + [removed][fj-doc-val-pdfbox] removed deprecated class org.fugerit.java.doc.val.pdf.boc.PdfboxValidator [1.5.0-rc.3] + [enhancement] added sonar cloud quality gate [1.5.0-rc.3] + [enhancement][fj-doc-lib-autodoc] now the default html does not use a template but the standard html generation [1.5.0-rc.3] + [enhancement][fj-doc-freemarker] html type handler automatically add doctype and xml lang (default to 'en') [1.5.0-rc.3] + [enhancement][fj-doc-base] doc-2-1.xsd (added new 'alt' attribute for table) [1.5.0-rc.3] + [enhancement][fj-doc-freemarker] added doctype definition to html type handler [1.5.0-rc.3] + [documentation][fj-doc-base]Added documentation to the doc-2-0.xsd [1.5.0-rc.2] + [enhancement][fj-doc-mod-fop] optimization in style rendering for FO/PDF Type Handler [1.5.0-rc.2] + [enhancement][fj-doc-mod-fop] added support for table 'padding' and 'spacing' (convert to fo cell padding and margin) [1.5.0-rc.2] + [enhancement][fj-doc-freemarker] added support for table 'padding' and 'spacing' (convert to html cell padding and margin) [1.5.0-rc.2] + [enhancement][fj-doc-base] Added generic meta information 'default-table-spacing' and 'default-table-padding' [1.5.0-rc.2] + [enhancement][fj-doc-playground-quarkus] updated quarkus version to 3.2.4.Final [1.5.0-rc.2] + [enhancement][fj-doc-base] Added generic meta information 'default-cell-border-width' [1.5.0-rc.1] + [enhancement][fj-doc-freemarker] optimization in style rendering for HTML Type Handler [1.5.0-rc.1] + [fix][fj-doc-freemarker] fixed multiple parents loading for FreemarkerDocProcessConfig [1.4.6-rc.2] + [documentation][fj-doc-lib-autodoc]Some fix in meta info generation [1.4.6-rc.1] + [documentation][fj-doc-lib-autodoc]Added anchor to specific meta info [1.4.6-rc.1] + [documentation][fj-doc-base]Improved javadoc [1.4.6-rc.1] + [enhancement][fj-doc-freemarker] added compatibility process() + validation method to FreemarkerDocProcessConfig [1.4.6-rc.1]
1 parent d039b1f commit 6c55248

File tree

30 files changed

+33
-33
lines changed

30 files changed

+33
-33
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ There are five kinds of components (each components README.md contains module st
1717
* [Core library (fj-doc-base)](fj-doc-base/README.md) (contains a simple renderer for [Markdowm BASIC](fj-doc-base/src/main/java/org/fugerit/java/doc/base/typehandler/markdown/SimpleMarkdownBasicTypeHandler.java) and [Markdown EXT](fj-doc-base/src/main/java/org/fugerit/java/doc/base/typehandler/markdown/SimpleMarkdownExtTypeHandler.java))
1818
* [Json extension (fj-doc-base-json)](fj-doc-base-json/README.md) (allow for using json as document generator instead of standard xml generator) [since 0.7.0]
1919
* [Yaml extension (fj-doc-base-yaml)](fj-doc-base-yaml/README.md) (allow for using yaml as document generator instead of standard xml generator) [since 0.7.0]
20-
* Doc format XSD [public](https://www.fugerit.org/data/java/doc/xsd/doc-2-0.xsd) and [private](fj-doc-base/src/main/resources/config/doc-2-0.xsd)
20+
* Doc format XSD [public](https://www.fugerit.org/data/java/doc/xsd/doc-2-1.xsd) and [private](fj-doc-base/src/main/resources/config/doc-2-0.xsd)
2121

2222
### 2. Modules :
2323
* [FreeMarker template, (fj-doc-freemarker)](fj-doc-freemarker/README.md) (contains a simple renderer for [HTML](fj-doc-freemarker/src/main/java/org/fugerit/java/doc/freemarker/html/FreeMarkerHtmlTypeHandler.java) and [HTML FRAGMENT](fj-doc-freemarker/src/main/java/org/fugerit/java/doc/freemarker/html/FreeMarkerHtmlFragmentTypeHandler.java))

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" : "1.5.0-rc.1",
5-
"date" : "17/08/2023",
4+
"version" : "1.5.0",
5+
"date" : "20/08/2023",
66
"organization" : {
77
"name" : "Fugerit Org",
88
"url" : "https://www.fugerit.org"

docgen/release-notes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
1.5.0-rc.3 (2023-08-XX)
1+
1.5.0 (2023-08-20)
22
------------------
33
+ [enhancement][fj-doc-base] Now DocTypeHandlerDefault implements ConfigurableObject instead of extending XMLConfigurableObject to reduce hierarchy depth[1.5.0-rc.3]
4-
+ [dependency]Updated fj-version to 8.1.0-rc.1 [1.5.0-rc.3]
4+
+ [dependency]Updated fj-version to 8.1.0 [1.5.0-rc.3]
55
+ [enhancement][fj-doc-base] DocConstants refactor to conform to singleton pattern [1.5.0-rc.3]
66
+ [removed][fj-doc-mod-fop] removed org.fugerit.java.doc.mod.fop.FreeMarkerFopProcess [1.5.0-rc.3]
77
+ [removed][fj-doc-val-pdfbox] removed deprecated class org.fugerit.java.doc.val.pdf.boc.PdfboxValidator [1.5.0-rc.3]

fj-doc-base-json/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>1.5.0-rc.3</version>
10+
<version>1.5.0</version>
1111
</parent>
1212

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

fj-doc-base-yaml/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>1.5.0-rc.3</version>
10+
<version>1.5.0</version>
1111
</parent>
1212

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

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>1.5.0-rc.3</version>
10+
<version>1.5.0</version>
1111
</parent>
1212

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

fj-doc-base/src/main/docs/doc_xsd_config_ref.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</head>
1212
<body>
1313
<div>
14-
<h1 style="font-weight: bold;">Reference xsd documentation for Venus - Fugerit Document Generation Framework (fj-doc) 2.1.0-rc.1</h1>
14+
<h1 style="font-weight: bold;">Reference xsd documentation for Venus - Fugerit Document Generation Framework (fj-doc) 2.1.0</h1>
1515
<table style='width: 100%' aria-describedby="Reference xsd documentation for Venus - Fugerit Document Generation Framework (fj-doc)">
1616
<thead>
1717
<tr>

fj-doc-bom-core/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>1.5.0-rc.3</version>
10+
<version>1.5.0</version>
1111
</parent>
1212

1313
<name>fj-doc-bom-core</name>

fj-doc-bom-fop/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>1.5.0-rc.3</version>
10+
<version>1.5.0</version>
1111
</parent>
1212

1313
<name>fj-doc-bom-fop</name>

fj-doc-bom/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>1.5.0-rc.3</version>
10+
<version>1.5.0</version>
1111
</parent>
1212

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

0 commit comments

Comments
 (0)