- [ ] [Two Kinds](http://twokinds.keenspot.com/)
- [ ] [Slightly damned](http://www.sdamned.com/)
- [ ] Others? Any ideas?
-- [ ] A GUI (work in progress)
+- [x] A GUI (work in progress)
- [x] Make one
- [x] Make it run when no args passed
- [x] Fix the UI, it is ugly
- [x] Show a list of types
- [x] ..in the menu
- [x] ..as a screen view
- - [ ] options screen
+ - [x] options screen
- [ ] A TUI reader
- [ ] Check if it can work on Android
- [x] First checks: it should work, but with changes
# Fanfix
-## Version (wip)
+## Version 1.4.2
- New Options menu in UI to configure the program (minimalist for now)
+- Improve progress reporting (smoother updates, more details)
+- Better cover support for local files
## Version 1.4.1
"Cannot load file from library: "
+ file.getPath(), e));
} finally {
- pgFiles.setProgress(pgFiles.getProgress() + 1);
-
- System.out.println("files: " + pgFiles.getProgress()
- + "/" + pgFiles.getMax());
- System.out.println("dirs : " + pgDirs.getProgress()
- + "/" + pgDirs.getMax());
+ pgFiles.add(1);
}
}
public void run() {
run.run();
refreshBooks();
- reload.setProgress(100);
+ reload.done();
if (!pg.isDone()) {
// will trigger pgBar ActionListener:
- pg.setProgress(pg.getMax());
+ pg.done();
}
}
}, "outOfUi thread").start();
onSuccess.run();
}
}
- pgOnSuccess.setProgress(100);
+ pgOnSuccess.done();
}
});
}