- change title colour and font for groups of books
- update screenshot (and README that points to it)
(If you are interested in the recent changes, please check the [Changelog](changelog.md).)
-![Main GUI](screenshots/fanfix.png?raw=true "Main GUI")
+![Main GUI](screenshots/fanfix-1.3.2.png?raw=true "Main GUI")
It will convert from a (supported) URL to an .epub file for stories or a .cbz file for comics (a few other output types are also available, like Plain Text, LaTeX, HTML...).
JLabel label = new JLabel();
label.setText(String.format("<html>"
- + "<body style='text-align: center'><br>" + "%s"
- + "</body>" + "</html>", title));
+ + "<body style='text-align: center; color: gray;'><br><b>"
+ + "%s" + "</b></body>" + "</html>", title));
label.setHorizontalAlignment(JLabel.CENTER);
add(label, BorderLayout.NORTH);
}