View Single Post
Old 09-10-2024, 08:57 PM   #9920
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: 6,985
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Multi-reply

Regex

Quote:
Originally Posted by Homer55 View Post
does this means that this will apply only when the tag is for example "Wizarding World" but not if the tag is "Wizarding Worlds"?
Correct.

Quote:
Originally Posted by Homer55 View Post
Also, there's a fic that get's tagged as "Saga Of Tanya The Evil, Tanya the Evil (Sort-of), Tanya the evil" tanya the evil get's repeated three times. something like

Code:
 category=>^ (Saga Of Tanya The Evil|Tanya the Evil \(Sort-of\)|Tanya the evil)$=>Youjo Senki
would be fine? I ask becuase of the multiple tanya's there
Yes, but you have a space right after ^ that matters in regexp.

You could generalize it to something like:
Code:
 category=>(?i)^.*Tanya The Evil.*$=>Youjo Senki
# (?i) means ignore case and must be at the very start
And it's better to use [code] tags instead of [quote] tags for code sections. I put your code back in--the site discards nested quotes when quoting to reply. FYI.

Series for Anthologies

Quote:
Originally Posted by Nickname View Post
Is there a way to add series[0] to existing anthologies in Calibre ?
I found the option to add it to "New Anthologies", but have not figured out what I need to do to make it happen to ones I already have....
Not with FFF. But because FFF uses the series name for the anthology title, you can copy it to the Series column. This also removes ' Anthology' from it.

A quick search found this old post that explains how. Except you'd want:

Search Mode: Regular Expression
Search Field: title
Search for: (.*) Anthology
Replace with: \1
Destination Field: series

Quote:
Originally Posted by Nickname View Post
Also : is there a way to make an anthology from the CLI, or is it a plugin option only ?
Plugin only. My general assumption is CLI users can use epubmerge.py to merge their own anthologies.

Email

Quote:
Originally Posted by John Maverick View Post
I have received this email in my @hotmail.com mail.
Other people have reported problems using Microsoft / Outlook also.

I've never used it with any service but Gmail. Gmail started requiring 2FA, but gave an option called Google App Passwords for unique-per-app passwords.

One user reported success switching to mail.gmx.com. I know nothing about it.
JimmXinu is offline   Reply With Quote