View Single Post
Old 02-12-2025, 09:58 AM   #10318
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 7,002
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Multi-reply

Quote:
Originally Posted by Tharos View Post
I use Windows 10 and should not actually be affected by the changes.
Calibre is the version from calibre-ebook.com.

I'll create a log this evening after work.

Edit:

Code:
	Traceback (most recent call last):
	  File "calibre_plugins.fanficfare_plugin.jobs", line 428, in do_download_for_worker
	NameError: name 'six' is not defined
Ah, I missed a six reference in the Smarten Punctuation code. Oops. Test version with fix up shortly.

Quote:
Originally Posted by lemonsqueezie View Post
Is there an easy way to prevent FanFicFare from including images?
Quote:
Originally Posted by chrnno View Post
Set include_images to false under whatever you want to exclude images from. Defaults if it is all.
Code:
## include images from img tags in the body and summary of
## stories.  Images will be converted to jpg for size if possible.
## include_images is *only* available in epub and html output format.
## You can also set include_images:coveronly to exclude images in the
## story text but still include specific cover images or
## default_cover_image, force_cover_image, or use_old_cover cover
## images.
include_images:true
Mostly correct. Yes, that is the setting, but in defaults.ini it's set under [epub] which takes precedence over personal.ini [defaults] since it's more specific. To turn off images for all epub downloads (the only format it defaults to on), put this in personal.ini:
Code:
[epub]
include_images:false
JimmXinu is offline   Reply With Quote