-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multiple ebook formats & ebook_name config (#20)
* Bump version: 0.8.1 → 0.8.2 Added the feature to download multiple ebook formats simultaneously * fix: Plugins not being added * fix: URL encoding issue * fix: File hash issue Refactored the code in `fichub.py` to save the hash & download_url for the fic correctly * chore: Added `meta` props to the files dictionary * Bump version: 0.8.2 → 0.8.3 Added `filename_format` feature where users can configure the file name for the book as per the props mentioned in the README * refactor: Exception Handler Changed the Exception Handler from catching only Attribute Errors to all Errors * fix: Remove extraMeta prop from the filename_format options * fix: Rename meta key's id to ichub_id to avoid conflict * fix: Hardcoded filename_formats to ensure backwards compatibility with future API updates * fix: Remove unsafe chars from the filename * Bump version: 0.8.3 → 0.8.4 Added priority based processing for the rawExtendedMeta & extraMeta where it will process it in this order: rawExtendedMeta >> extraMeta >> None * refactor: extraMeta processing * Bump version: 0.8.4 → 0.9.0
- Loading branch information
Showing
10 changed files
with
268 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.8.1 | ||
current_version = 0.9.0 | ||
commit = True | ||
tag = False | ||
parse = ^ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ __pycache__/ | |
|
||
# ebooks | ||
*.epub | ||
*.mobi | ||
|
||
# C extensions | ||
*.so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.8.1" | ||
__version__ = "0.9.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.