Skip to content

Commit 21adc86

Browse files
author
Open Lowcode SAS
committed
Final changes for Release 1.1.0
1 parent e00c7af commit 21adc86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/org/openlowcode/OLcVersionGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class OLcVersionGenerator {
2929
public final static String version = "1.1.0";
3030
public final static String clientversion = "1.1.0";
31-
public final static boolean stable = false;
31+
public final static boolean stable = true;
3232

3333
public static void main(String[] args) {
3434
try {

src/org/openlowcode/tools/pdf/PDFPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ public static BoxTextContent calculateBoxAndMaybeWriteText(float left, float top
12001200
ArrayList<String> paragraphlines = new ArrayList<String>();
12011201
int lastspace = -1;
12021202
// in this version, tab is treated as any other space
1203-
paragraphtext = paragraphtext.replace('\u00A0', ' ').replace('\u0009', ' ');
1203+
paragraphtext = paragraphtext.replace('\u00A0', ' ').replace('\u0009', ' ').replace('\u0003',' ');
12041204
while (paragraphtext.length() > 0) {
12051205
int spaceIndex = paragraphtext.indexOf(' ', lastspace + 1);
12061206
if (spaceIndex < 0)

0 commit comments

Comments
 (0)