Quote:
Originally Posted by JimmXinu
The FFF plugin has a signal it will emit after the "proceed with updating your library" dialog.
The code for the Action Chains Module I tested with is:
Code:
from calibre_plugins.action_chains.events import ChainEvent
class SearchChanged(ChainEvent):
# replace with the name of your event
name = 'FFF done'
def get_event_signal(self):
return self.gui.iactions['FanFicFare'].download_finished_signal
All I've done with it is call a chain that printed 'HERE!'.
|
If 'mark added/updated books when finished' is enabled, these selection modifier settings will select all updated books.
I created a chain with this selection modifier and then a chain caller to my fanfic cleanup chain. Seems to work as intended.