From 1cceb1f5a7122e52d024c30b29c86c152b85f658 Mon Sep 17 00:00:00 2001 From: Teodor Danciu Date: Mon, 24 Jun 2019 16:47:26 +0300 Subject: [PATCH] add version constant --- .../net/sf/jasperreports/export/DocxExporterConfiguration.java | 2 +- .../net/sf/jasperreports/export/PptxExporterConfiguration.java | 2 +- .../src/net/sf/jasperreports/properties/PropertyConstants.java | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/jasperreports/src/net/sf/jasperreports/export/DocxExporterConfiguration.java b/jasperreports/src/net/sf/jasperreports/export/DocxExporterConfiguration.java index c24494bddd..c77497c8e1 100644 --- a/jasperreports/src/net/sf/jasperreports/export/DocxExporterConfiguration.java +++ b/jasperreports/src/net/sf/jasperreports/export/DocxExporterConfiguration.java @@ -98,7 +98,7 @@ public interface DocxExporterConfiguration extends ExporterConfiguration defaultValue = PropertyConstants.BOOLEAN_FALSE, category = PropertyConstants.CATEGORY_EXPORT, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT}, - sinceVersion = PropertyConstants.VERSION_6_8_0, + sinceVersion = PropertyConstants.VERSION_6_9_0, valueType = Boolean.class ) public static final String PROPERTY_EMBED_FONTS = JRDocxExporter.DOCX_EXPORTER_PROPERTIES_PREFIX + "embed.fonts"; diff --git a/jasperreports/src/net/sf/jasperreports/export/PptxExporterConfiguration.java b/jasperreports/src/net/sf/jasperreports/export/PptxExporterConfiguration.java index 296f9afb04..f78ea22de8 100644 --- a/jasperreports/src/net/sf/jasperreports/export/PptxExporterConfiguration.java +++ b/jasperreports/src/net/sf/jasperreports/export/PptxExporterConfiguration.java @@ -156,7 +156,7 @@ public interface PptxExporterConfiguration extends ExporterConfiguration defaultValue = PropertyConstants.BOOLEAN_FALSE, category = PropertyConstants.CATEGORY_EXPORT, scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT}, - sinceVersion = PropertyConstants.VERSION_6_8_0, + sinceVersion = PropertyConstants.VERSION_6_9_0, valueType = Boolean.class ) public static final String PROPERTY_EMBED_FONTS = JRPptxExporter.PPTX_EXPORTER_PROPERTIES_PREFIX + "embed.fonts"; diff --git a/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java b/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java index 4ed44cc9ea..6f91234330 100644 --- a/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java +++ b/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java @@ -238,4 +238,6 @@ public interface PropertyConstants String VERSION_6_8_1 = "6.8.1"; + String VERSION_6_9_0 = "6.9.0"; + }