Bugfix
This commit is contained in:
parent
6b09e2b1f5
commit
a4520bb046
4 changed files with 8 additions and 7 deletions
|
@ -2,7 +2,7 @@ apply plugin: 'java'
|
|||
repositories{
|
||||
mavenCentral()
|
||||
}
|
||||
def releaseVersion = "0.5.12"
|
||||
def releaseVersion = "0.5.13"
|
||||
def propertyFile = file "src/main/java/w2phtml/project.properties"
|
||||
Properties properties = new Properties()
|
||||
propertyFile.withReader { properties.load(it) }
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#Wed Apr 22 20:17:51 CEST 2020
|
||||
releaseVersion=0.5.7
|
||||
releaseDate=20\:17\:51 22-04-2020
|
||||
#Thu Jun 25 12:35:29 CEST 2020
|
||||
releaseVersion=0.5.12
|
||||
releaseDate=12\:35\:29 25-06-2020
|
||||
|
|
|
@ -69,6 +69,7 @@ public class Separator {
|
|||
int curLevel = Integer.parseInt(sLevel);
|
||||
|
||||
if (noSplitNeeded(pageNum, curLevel)) {
|
||||
System.out.println("No split needed");
|
||||
return hnode;
|
||||
}
|
||||
|
||||
|
@ -112,7 +113,7 @@ public class Separator {
|
|||
}
|
||||
|
||||
private boolean noSplitNeeded(int pageNum, int curLevel) {
|
||||
return !greenstoneSeparation && !isSplitTime(curLevel,pageNum);
|
||||
return !greenstoneSeparation && !pagination && !isSplitTime(curLevel,pageNum);
|
||||
}
|
||||
|
||||
private void addToCommentStack(String sLevel) {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<identifier value="pro.litvinovg.writer2paginatedhtml"/>
|
||||
|
||||
<version value="0.5.10"/>
|
||||
<version value="0.5.12"/>
|
||||
|
||||
<dependencies>
|
||||
<OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue