diff --git a/calibre-plugin/__init__.py b/calibre-plugin/__init__.py index 14146f7f..546336a6 100644 --- a/calibre-plugin/__init__.py +++ b/calibre-plugin/__init__.py @@ -48,7 +48,7 @@ class FanFicFareBase(InterfaceActionBase): description = _('UI plugin to download FanFiction stories from various sites.') supported_platforms = ['windows', 'osx', 'linux'] author = 'Jim Miller' - version = (2, 5, 0) + version = (2, 5, 1) minimum_calibre_version = (1, 48, 0) #: This field defines the GUI plugin class that contains all the code diff --git a/calibre-plugin/plugin-defaults.ini b/calibre-plugin/plugin-defaults.ini index 27083687..58b052dd 100644 --- a/calibre-plugin/plugin-defaults.ini +++ b/calibre-plugin/plugin-defaults.ini @@ -1575,6 +1575,8 @@ comments_label:Comments include_in_category:category,searchtags +[royalroadl.com] + [samandjack.net] ## Some sites require login (or login for some rated stories) The ## program can prompt you, or you can save it in config. In diff --git a/fanficfare/cli.py b/fanficfare/cli.py index eb40c88c..6667929f 100644 --- a/fanficfare/cli.py +++ b/fanficfare/cli.py @@ -26,7 +26,7 @@ import pprint import string import sys -version="2.5.0" +version="2.5.1" if sys.version_info < (2, 5): print 'This program requires Python 2.5 or newer.' diff --git a/fanficfare/defaults.ini b/fanficfare/defaults.ini index cfb452f2..e93a4b75 100644 --- a/fanficfare/defaults.ini +++ b/fanficfare/defaults.ini @@ -1594,6 +1594,8 @@ comments_label:Comments include_in_category:category,searchtags +[royalroadl.com] + [samandjack.net] ## Some sites require login (or login for some rated stories) The ## program can prompt you, or you can save it in config. In diff --git a/setup.py b/setup.py index ce406f7e..43065ef5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="FanFicFare", # Versions should comply with PEP440. - version="2.5.0", + version="2.5.1", description='A tool for downloading fanfiction to eBook formats', long_description=long_description,