<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>
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;
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) {
}
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());