Quote:
Originally Posted by kolbinski
When I download a story from fanfiction.net can you please add a way so can change the epub so the story says on haitus, abandoned or completed or in-progress. I want to change the tag in the downloaded epub
|
For hiatus/abandoned, I use Action Chains to update the column from this template. But that's just the Calibre library. ePubs would need to be modified manually.
Code:
program:
now = format_date(today(),'iso');
updated = $$#fanficupdated;
status = $#fanficstatus;
if
status=='In-Progress'
&& $#fanficerror
then
'Abandoned'
elif
status=='In-Progress'
&& days_between(now, updated) ># 180
then
'Dormant'
else
status
fi