07-12-2024, 08:45 AM | #826 | |
Resident Curmudgeon
Posts: 77,221
Karma: 138591138
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
Quote:
To check if you are setup correctly, go to My Books and then pick a book. press the ... and choose View Details. You should then be able to see the blurb. |
|
07-12-2024, 08:56 AM | #827 | |
Grand Sorcerer
Posts: 12,142
Karma: 7908995
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
That said, I agree that when using a Kobo it is much better to put the blurb into its book details. This requires that the blurb be in the Comments column. |
|
07-12-2024, 07:12 PM | #828 |
null operator (he/him)
Posts: 21,181
Karma: 28819096
Join Date: Mar 2012
Location: Sydney Australia
Device: none
|
Maybe someone can devise a way to use a jacket page generated by Polish or Modify as a cover page… other than taking a screen shot of it and adding that to the epub.
BR |
07-14-2024, 07:31 AM | #829 |
Resident Curmudgeon
Posts: 77,221
Karma: 138591138
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
07-14-2024, 07:58 AM | #830 |
null operator (he/him)
Posts: 21,181
Karma: 28819096
Join Date: Mar 2012
Location: Sydney Australia
Device: none
|
No idea Jon, I rip the covers off and use a non graphic file manager and no frills readers.
BR |
07-19-2024, 02:34 AM | #831 | |
Junior Member
Posts: 4
Karma: 10
Join Date: Aug 2019
Device: Kindle PW3
|
Quote:
https://docs.google.com/document/d/1...t?usp=drivesdk |
|
09-12-2024, 08:12 PM | #832 |
Junior Member
Posts: 4
Karma: 10
Join Date: Mar 2011
Device: Amazon Fire
|
So first off, I love this plugin. That said, I've had a look through the thread and I see there used to be a stroke option for fonts that got removed at some point, somebody asked about it last year and never got a response so imma ask again now if we could ever see that come back? Or a drop shadow or background box, just something to help things stand out on busier backgrounds.
Also what exactly do Background and Border in the fonts tab actually do? I've tried changing them to random colours but I'm not seeing any difference to my fonts. And finally, is there any way that the fonts dropdown menu could show what the fonts look like? Right now I'm having to open the fonts setting in Control Panel to remind myself what they look like every time I want to make a new template and it's a bit of a pain. I just have a lot of thoughts about fonts, apparently. |
09-12-2024, 09:46 PM | #833 |
Well trained by Cats
Posts: 30,548
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Border There are 2 places controlled on the dimensions tab
Background is the cover area Foreground is the color of the character |
09-13-2024, 12:42 PM | #834 |
Junior Member
Posts: 4
Karma: 10
Join Date: Mar 2011
Device: Amazon Fire
|
Ahh, I did suspect that was the case! Might be an idea to move those two options to Settings and just leave Fill in the Fonts tab to cut down on confusion, if only because Border really does look like it's a stroke setting and I'm sad it's not.
|
11-09-2024, 01:39 AM | #835 |
Junior Member
Posts: 2
Karma: 10
Join Date: Nov 2024
Device: Kindle
|
Applying A Custom Cover Automatically - With Action Chainsd
Hello!
I am looking for a way to add custom covers to my news collections generated by the fetch news feature in Calibre. I have looked through this forum and am aware that I am not the first person to try to do such a things, however I haven't found a solution as of yet. Having found this plugin it alters and creates a cover in the way I like, however I have not found a way to active this plugin without the use of user interface and user interactions. What I would like to do is this: 1. A new epub is create by Calibre, the Actions Chains Plugin (for example) detects the change in the library 2. Actions Chains calls the Generate Covers Plugin to apply a cover onto the new epub via a pre defined style profile in Generate Covers I unfortunately am very much a beginner when it comes to code, but I do believe there is a way to automate this process with the use of Python. Action Chains can use python code directly, so my hope was to find the code used to apply the cover with Generate Covers to add it to an action chain. Any and all help is appreciated. |
01-06-2025, 06:41 PM | #836 |
Calibre Plugins Developer
Posts: 4,693
Karma: 2162246
Join Date: Oct 2010
Location: Australia
Device: Kindle Oasis
|
Generate Cover v2.3.5
Release Notes
https://github.com/kiwidude68/calibr...e_cover-v2.3.5 Special thanks to @chaley on this one for finding the issue when also taking the time to respond to a user query. Full details can be found on the issue thread here: https://github.com/kiwidude68/calibr...ins/issues/101 TLDR - a user wanted to include the comments field in their cover, but stripping out any html around it first. This can be done use a python template for the formatter, once a blocking issue in the plugin was corrected. If anyone else needs the same functionality, you can paste this into the custom text field: Code:
python: def evaluate(book, context): from qt.core import QTextEdit from calibre.gui2.comments_editor import fix_html e = QTextEdit() e.setHtml(book.comments) e.setHtml(fix_html(e.toHtml(), e.toPlainText())) return e.toPlainText() |
01-09-2025, 06:18 AM | #837 |
Enthusiast
Posts: 40
Karma: 10
Join Date: May 2020
Device: Kobo H2O, Kobo Libra H2O, Boox Tab Ultra C
|
Hello!
I've had a small problem with the last update: In my Custom Text option, I had a very simple Code:
{#words} {#genre} Now, this only adds a space in-between. I've fixed this issue by adding a <br>, so I'm not complaining, I just wasn't sure if this is an bug or not? |
01-09-2025, 06:32 AM | #838 | |
Grand Sorcerer
Posts: 12,142
Karma: 7908995
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
Code:
program: $#words & character('newline') & $#genre |
|
01-09-2025, 06:38 AM | #839 |
Enthusiast
Posts: 40
Karma: 10
Join Date: May 2020
Device: Kobo H2O, Kobo Libra H2O, Boox Tab Ultra C
|
Thank you! I knew this was probably the case, but since it still means that the way it worked before was the bug I thought it might be useful to report it!
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[GUI Plugin] Goodreads Sync | kiwidude | Plugins | 1777 | 12-23-2024 07:37 PM |
[GUI Plugin] Clipboard Search | kiwidude | Plugins | 29 | 04-02-2024 11:05 PM |
[GUI Plugin] Open With | kiwidude | Plugins | 403 | 04-01-2024 09:39 AM |
[GUI Plugin] User Category | kiwidude | Plugins | 123 | 03-17-2024 12:59 AM |
[GUI Plugin] Quick Preferences | kiwidude | Plugins | 62 | 03-17-2024 12:47 AM |