]> _ Git - cubist_pdf.git/commitdiff
wip #8012 @1
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 17 Feb 2026 16:46:07 +0000 (17:46 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 17 Feb 2026 16:46:07 +0000 (17:46 +0100)
resources/tools/fwstk/.idea/workspace.xml
resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class
resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar
resources/tools/fwstk/src/com/fluidbook/fwstk/Main.java

index 50ebceb0942eb573b1d109fb8bc379f25d5ccbb0..82c104200bb2338f482e8762e4d83ba9518c9ad2 100644 (file)
       <workItem from="1769008557586" duration="495000" />
       <workItem from="1769682693343" duration="1821000" />
       <workItem from="1771337761714" duration="6158000" />
+      <workItem from="1771345404865" duration="243000" />
+      <workItem from="1771346134961" duration="579000" />
     </task>
     <task id="LOCAL-00001" summary="wip #1111 @0.5">
       <created>1487172253077</created>
index 3a364a1b681e358a2a1465527725273f144ae9d7..752ba7d9e120946b7b68a7e0f5a6ef4f3b4c17f8 100644 (file)
Binary files a/resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class and b/resources/tools/fwstk/bin/com/fluidbook/fwstk/Main.class differ
index 63db784801a2c3823a96b8db88b3c40ba01280c1..a210ac5f8d455f929cadf536dfacc29898139a14 100644 (file)
Binary files a/resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar and b/resources/tools/fwstk/out/artifacts/fwstk_jar/fwstk.jar differ
index 560c4ad3b9738f73596f72874ca8ba4a5a0ed268..cd8ada44604e0c60609d9e784d0ae18a72a6ed3e 100644 (file)
@@ -46,8 +46,8 @@ import org.apache.pdfbox.util.PDFImageWriter;
 
 public class Main {
 
-    private static String version = "0.94";
-    private static String date = "20220823";
+    private static String version = "0.95";
+    private static String date = "20261702";
     static int threads = 1;
     static String input = "";
     static Float linkOffsetX = 0.0f;
@@ -76,6 +76,8 @@ public class Main {
         PDDocument doc = null;
         Integer[] pages = null;
 
+        System.out.println("fwstk version " + version + " (" + date + ")");
+
         try {
             for (int i = 0; i < args.length; i++) {
                 if (args[i].trim().compareTo("--box") == 0) {
@@ -627,8 +629,7 @@ public class Main {
     }
 
     public static void saveLinks(String file, ArrayList<Link> listLinks) throws IOException {
-        BufferedWriter out = new BufferedWriter(new OutputStreamWriter(
-                Files.newOutputStream(Paths.get(file)), StandardCharsets.UTF_8));
+        BufferedWriter out = new BufferedWriter(new OutputStreamWriter(Files.newOutputStream(Paths.get(file)), StandardCharsets.UTF_8));
         out.write(Link.header());
         for (Link l : listLinks) {
             out.write(l.toFile());