diff --git a/build.gradle b/build.gradle index 4bdcb82..5c00d98 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'java' repositories{ mavenCentral() } -def releaseVersion = "0.5.9" +def releaseVersion = "0.5.10" def propertyFile = file "src/main/java/w2phtml/project.properties" Properties properties = new Properties() propertyFile.withReader { properties.load(it) } @@ -40,6 +40,7 @@ jar { } from('src/main/java') { include '**/*.properties' + include '**/*.rdf' include '**/*.xml' exclude '**/*Test.class' exclude '**/AllTests.class' diff --git a/src/main/java/w2phtml/base/BinaryGraphicsDocument.java b/src/main/java/w2phtml/base/BinaryGraphicsDocument.java index 2e79c33..70e96f3 100644 --- a/src/main/java/w2phtml/base/BinaryGraphicsDocument.java +++ b/src/main/java/w2phtml/base/BinaryGraphicsDocument.java @@ -72,6 +72,7 @@ public class BinaryGraphicsDocument implements OutputFile { public BinaryGraphicsDocument(BinaryGraphicsDocument bgd) { this.sFileName = bgd.getFileName(); this.sMimeType = bgd.getMIMEType(); + this.blob = bgd.getData(); this.bAcceptedFormat = bgd.isAcceptedFormat(); this.bRecycled = true; }