View Single Post
Old 08-16-2024, 09:55 AM   #111
culytera
Zealot
culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.culytera ought to be getting tired of karma fortunes by now.
 
Posts: 125
Karma: 295674
Join Date: Jul 2021
Device: iPhone
Quote:
Originally Posted by citac View Post
I feel like I need to do something about the huge number of freeform tags that would accumulate if I let them all be imported, but I'm uncertain about removing some tags.
Editing your include_subject_tags is important for managing tags in Calibre, that's the option that affects it. That's why I only have the prefix_* entries. On my setup, the freeform tags are put in a long-text type column that doesn't show up in the tag browser.

Quote:
Do I understand correctly that the first option in examples below will delete the tag, which the second would rename it??
Code:
 freeformtags=>^(Alternate Universe)$=>
 freeformtags=>^(Alternate Universe -)=>AU -
Yes.

Quote:
Also, I was curious about your icons but they don't appear in the .ini except the one for Not Bookmarked\, Not Subscribed:

Code:
 icons_LIST=>^(Bookmarked\, Subscribed)$=>����
## Don't show bookmarked icon, don't show subscribed icon
 icons_LIST=>^(Not Bookmarked\, Not Subscribed)$=>◈
## Don't show bookmarked icon, show subscribed icon
 icons_LIST=>^(Not Bookmarked\, Subscribed)$=>��
## Show bookmarked icon, don't show subscribed icon
 icons_LIST=>^(Bookmarked\, Not Subscribed)$=>��
Those are emojis, the forum converts them since they're unicode. Without the & prefix it's:
Code:
## Show bookmarked icon, show subscribed icon
 icons_LIST=>^(Bookmarked\, Subscribed)$=>#128278;#128276;
## Don't show bookmarked icon, don't show subscribed icon
 icons_LIST=>^(Not Bookmarked\, Not Subscribed)$=>#9672;
## Don't show bookmarked icon, show subscribed icon
 icons_LIST=>^(Not Bookmarked\, Subscribed)$=>#128276;
## Show bookmarked icon, don't show subscribed icon
 icons_LIST=>^(Bookmarked\, Not Subscribed)$=>#128278;
You can see the result on the preview I posted on my previous message.

Reference: https://www.alansofficespace.com/uni...nicd128499.htm

Quote:
How does one even begin to decide which things to keep and which to remove, especially faced with an archive of fics that stretched back many years? And this is just for Ao3 fics; I don't even want to think about the mass of .txt files from old webrings and personal websites...
Yeah that's why I only stick to Ao3 😅

I attached how my setup looks, it's not the whole thing but honestly I don't have the energy to explain it step by step. If you have more questions I'll try to answer them. You can check out FanFicFare's wiki too.

https://github.com/JimmXinu/FanFicFa...i/CustomOutput
https://github.com/JimmXinu/FanFicFa...dataManagement
https://github.com/JimmXinu/FanFicFare/wiki/INI-File
https://github.com/JimmXinu/FanFicFa...eplaceMetadata

I've shared my setup previously in this thread as well, most of it is still the same.
Attached Thumbnails
Click image for larger version

Name:	custom_columns.jpg
Views:	304
Size:	462.0 KB
ID:	210202   Click image for larger version

Name:	custom_columns_details.jpg
Views:	290
Size:	574.0 KB
ID:	210203   Click image for larger version

Name:	tags.jpg
Views:	277
Size:	135.4 KB
ID:	210204   Click image for larger version

Name:	categories.jpg
Views:	285
Size:	111.4 KB
ID:	210205  
culytera is offline   Reply With Quote