Quote:
Originally Posted by Amalthia
Hi, does anyone else in this thread download the story completion status from AO3?
I'm currently downloading that information and placing it in it's own custom column "Status." I then I use the "Look and Feel" setting "Column Coloring" to change the columns color so I can visually see if the story is in-progress or not.
The only problem I'm currently experiencing is that for Anthologies the "status" information is included in the fandom tags metadata. So when I download a series with FanFicFare I'm seeing "Completed" or "In-Progress" along with the fandom.
It's not doing this for non-series. I was curious to know if anyone else is experiencing this behavior or not.
Thanks,
Amalthia
|
Yes. I think it's intended behaviour.
I use Action Chains to do some metadata processing that FanFicFare itself can't handle and use this single-field edit on 'tags' to remove it:
Code:
program:
if
$#fanficstatus=='Anthology'
then
list_difference($tags, "In-Progress, Completed", ',')
else
$tags
fi