Skip to content

Commit

Permalink
add version constant
Browse files Browse the repository at this point in the history
  • Loading branch information
teodord committed Jun 24, 2019
1 parent 94ad835 commit 1cceb1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,6 @@ public interface PropertyConstants

String VERSION_6_8_1 = "6.8.1";

String VERSION_6_9_0 = "6.9.0";

}

0 comments on commit 1cceb1f

Please sign in to comment.