Skip to content

Commit

Permalink
Merge branch 'release-6.16.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
teodord committed Nov 17, 2020
2 parents fd32e77 + 7338836 commit 6d759f8
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 2 deletions.
Binary file not shown.
14 changes: 14 additions & 0 deletions jasperreports/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
JasperReports Library Change Log
=============================================

JasperReports 6.16.0 (2020-11-06)
---------------------------------------------

- allow generic element HTML export handlers to export generic elements as images
or any other built-in element type;

- new custom property to control the HTML exporting of custom visualization components as images;

- minor bug fixes and improvements;





JasperReports 6.15.0 (2020-10-06)
---------------------------------------------

Expand Down
27 changes: 27 additions & 0 deletions jasperreports/clirr-ignore.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
<differences>
<difference>
<className>net/sf/jasperreports/chrome/ResourceManager*</className>
<differenceType>7005</differenceType>
<method>*</method>
<to>*</to>
</difference>
<difference>
<className>net/sf/jasperreports/engine/util/ConcurrentMapping*</className>
<differenceType>7005</differenceType>
<method>*</method>
<to>*</to>
</difference>
<difference>
<className>net/sf/jasperreports/engine/fill/JRFillSubreport</className>
<differenceType>7004</differenceType>
<method>*loadReportSource(java.lang.Object, java.lang.String)</method>
</difference>
<difference>
<className>net/sf/jasperreports/engine/JasperReportsContext</className>
<differenceType>7012</differenceType>
<method>*getOwnProperty(java.lang.String)</method>
</difference>
<difference>
<className>net/sf/jasperreports/engine/export/GenericElementHtmlHandler</className>
<differenceType>7012</differenceType>
<method>*exportElement(*)</method>
</difference>
</differences>
2 changes: 1 addition & 1 deletion jasperreports/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@
<artifactId>clirr-maven-plugin</artifactId>
<version>2.8</version>
<configuration>
<comparisonVersion>6.14.0</comparisonVersion>
<comparisonVersion>6.15.0</comparisonVersion>
<ignoredDifferencesFile>${basedir}/clirr-ignore.xml</ignoredDifferencesFile>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ else if (fontInfo != null)
String handlerFamily = handleFont(fontInfo, locale);
if (handlerFamily != null)
{
fontFamily = handlerFamily;
fontFamily = handlerFamily + ", '" + fontFamily + "'"; // fallback to font family just in case it already exists in the system
}
}
return fontFamily;
Expand Down

0 comments on commit 6d759f8

Please sign in to comment.