-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from OP-TED/release/0.10.0
Merge release/0.10.0 into main
- Loading branch information
Showing
8 changed files
with
66 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
# eForms Notice Viewer 0.9.0 - Release Notes | ||
# eForms Notice Viewer 0.10.0 - Release Notes | ||
|
||
_The eForms Notice Viewer is a sample command line application that demonstrates how you can use the [eForms SDK](https://github.com/OP-TED/eForms-SDK) in a metadata driven application that visualises eForms notices._ | ||
|
||
--- | ||
## In this release: | ||
|
||
This is the first version of the Notice Viewer, that uses the new, pre-release version 2.0.0-alpha.1 of the EFX Toolkit. As a result, the application: | ||
## In this release | ||
|
||
- Now supports EFX-2 templates, and therefore can visualise notices created with SDK-2. | ||
- Can no longer visualise notices created with pre-release versions of SDK-1 (SDK 0.x.x). | ||
This version of the Notice Viewer, uses the pre-release version 2.0.0-alpha.2 of the EFX Toolkit. | ||
|
||
This release: | ||
|
||
- Fixes a bug in label_from_key.ftl that caused erroneous rendering of some labels. | ||
- Updates variable_expression.ftl to render a comma separated list from sequences of values. | ||
- Improves unit testing. | ||
|
||
--- | ||
|
||
Documentation for this sample application is available at: https://docs.ted.europa.eu/eforms/latest/notice-viewer | ||
|
||
This version depends on: | ||
- [EFX toolkit for Java](https://github.com/OP-TED/efx-toolkit-java) version 2.0.0-alpha.1. | ||
- [eForms Core for Java](https://github.com/OP-TED/eforms-core-java) library version 1.0.5. | ||
|
||
- [EFX toolkit for Java](https://github.com/OP-TED/efx-toolkit-java) version 2.0.0-alpha.2. | ||
- [eForms Core for Java](https://github.com/OP-TED/eforms-core-java) library version 1.3.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/test/java/eu/europa/ted/eforms/viewer/DependencyFactoryForUnitTesting.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package eu.europa.ted.eforms.viewer; | ||
|
||
import java.nio.file.Path; | ||
|
||
/** | ||
* Extends {@link DependencyFactory} to allow the use of SNAPSHOT versions when | ||
* unit testing. | ||
*/ | ||
public class DependencyFactoryForUnitTesting extends DependencyFactory { | ||
|
||
public DependencyFactoryForUnitTesting(Path sdkRoot) { | ||
super(sdkRoot, true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters