From: Niki Roo Date: Sat, 4 Mar 2017 15:29:42 +0000 (+0100) Subject: UI: change title display in groups (+README) X-Git-Url: http://git.nikiroo.be/?p=nikiroo-utils.git;a=commitdiff_plain;h=71d72f342e245b8d3d1e65f1fcd6f0a285da2eb7 UI: change title display in groups (+README) - change title colour and font for groups of books - update screenshot (and README that points to it) --- diff --git a/README.md b/README.md index 01f7419..6b6edba 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Fanfix is a small Java program that can download stories from some supported web (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...). diff --git a/screenshots/fanfix.png b/screenshots/fanfix-1.0.0.png similarity index 100% rename from screenshots/fanfix.png rename to screenshots/fanfix-1.0.0.png diff --git a/screenshots/fanfix-1.3.2.png b/screenshots/fanfix-1.3.2.png new file mode 100644 index 0000000..6ea39ce Binary files /dev/null and b/screenshots/fanfix-1.3.2.png differ diff --git a/src/be/nikiroo/fanfix/reader/LocalReaderGroup.java b/src/be/nikiroo/fanfix/reader/LocalReaderGroup.java index 8667ffd..c575546 100644 --- a/src/be/nikiroo/fanfix/reader/LocalReaderGroup.java +++ b/src/be/nikiroo/fanfix/reader/LocalReaderGroup.java @@ -63,8 +63,8 @@ public class LocalReaderGroup extends JPanel { JLabel label = new JLabel(); label.setText(String.format("" - + "
" + "%s" - + "" + "", title)); + + "
" + + "%s" + "" + "", title)); label.setHorizontalAlignment(JLabel.CENTER); add(label, BorderLayout.NORTH); }