Fix for images export
This commit is contained in:
parent
53abcf9ecd
commit
546036a78b
2 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,7 @@ apply plugin: 'java'
|
||||||
repositories{
|
repositories{
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
def releaseVersion = "0.5.9"
|
def releaseVersion = "0.5.10"
|
||||||
def propertyFile = file "src/main/java/w2phtml/project.properties"
|
def propertyFile = file "src/main/java/w2phtml/project.properties"
|
||||||
Properties properties = new Properties()
|
Properties properties = new Properties()
|
||||||
propertyFile.withReader { properties.load(it) }
|
propertyFile.withReader { properties.load(it) }
|
||||||
|
@ -40,6 +40,7 @@ jar {
|
||||||
}
|
}
|
||||||
from('src/main/java') {
|
from('src/main/java') {
|
||||||
include '**/*.properties'
|
include '**/*.properties'
|
||||||
|
include '**/*.rdf'
|
||||||
include '**/*.xml'
|
include '**/*.xml'
|
||||||
exclude '**/*Test.class'
|
exclude '**/*Test.class'
|
||||||
exclude '**/AllTests.class'
|
exclude '**/AllTests.class'
|
||||||
|
|
|
@ -72,6 +72,7 @@ public class BinaryGraphicsDocument implements OutputFile {
|
||||||
public BinaryGraphicsDocument(BinaryGraphicsDocument bgd) {
|
public BinaryGraphicsDocument(BinaryGraphicsDocument bgd) {
|
||||||
this.sFileName = bgd.getFileName();
|
this.sFileName = bgd.getFileName();
|
||||||
this.sMimeType = bgd.getMIMEType();
|
this.sMimeType = bgd.getMIMEType();
|
||||||
|
this.blob = bgd.getData();
|
||||||
this.bAcceptedFormat = bgd.isAcceptedFormat();
|
this.bAcceptedFormat = bgd.isAcceptedFormat();
|
||||||
this.bRecycled = true;
|
this.bRecycled = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue