From: Vincent Vanwaelscappel Date: Tue, 27 May 2025 13:26:02 +0000 (+0200) Subject: wip #7571 @0.5 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=70c787a6cf9e951512e43591c7a15d88b94584e4;p=cubist_pdf.git wip #7571 @0.5 --- diff --git a/resources/tools/fwstk/.idea/workspace.xml b/resources/tools/fwstk/.idea/workspace.xml index cf577ec..8136733 100644 --- a/resources/tools/fwstk/.idea/workspace.xml +++ b/resources/tools/fwstk/.idea/workspace.xml @@ -109,6 +109,7 @@ "WebServerToolWindowPanel.toolwindow.show.size": "false", "git-widget-placeholder": "master", "ignore.virus.scanning.warn.message": "true", + "junie.onboarding.icon.badge.shown": "true", "kotlin-language-version-configured": "true", "last_opened_file_path": "D:/Works/cubist_pdf/resources/tools/fwstk", "node.js.detected.package.eslint": "true", @@ -515,6 +516,7 @@ + 1487172253077 diff --git a/resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class b/resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class index b892f99..5dd8bec 100644 Binary files a/resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class and b/resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class differ diff --git a/resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar b/resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar index 01269e3..5f4f03a 100644 Binary files a/resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar and b/resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar differ diff --git a/resources/tools/fwstk/src/com/fluidbook/fwstk/Main.java b/resources/tools/fwstk/src/com/fluidbook/fwstk/Main.java index 6968686..5ffaa05 100644 --- a/resources/tools/fwstk/src/com/fluidbook/fwstk/Main.java +++ b/resources/tools/fwstk/src/com/fluidbook/fwstk/Main.java @@ -741,6 +741,9 @@ public class Main { if (l.getDictionary().containsKey("TU") && l.getDictionary().getString("TU") != null) { String t = l.getDictionary().getString("TU"); if (!Objects.equals(t, "")) { + t = t.replace("\r\n", "\n"); + t = t.replace("\r", "\n"); + t = t.replace("\n", "§!§"); myLink.type = 18; myLink.to = t; }