diff --git a/CHANGELOG.md b/CHANGELOG.md index d4a17a4..85ddc22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [v2021.08.30.1](https://github.com/seanap/Audiobooks.bundle/tree/v2021.08.30.1) (2021-08-30) + +[Full Changelog](https://github.com/seanap/Audiobooks.bundle/compare/v2021.08.29.2...v2021.08.30.1) + +**Implemented enhancements:** + +- Add log levels to prefs [\#14](https://github.com/seanap/Audiobooks.bundle/issues/14) +- Use real log levels [\#24](https://github.com/seanap/Audiobooks.bundle/pull/24) ([djdembeck](https://github.com/djdembeck)) +- Map series' to moods, code quality improvements [\#23](https://github.com/seanap/Audiobooks.bundle/pull/23) ([djdembeck](https://github.com/djdembeck)) + ## [v2021.08.29.2](https://github.com/seanap/Audiobooks.bundle/tree/v2021.08.29.2) (2021-08-30) [Full Changelog](https://github.com/seanap/Audiobooks.bundle/compare/v2021.08.28.1...v2021.08.29.2) diff --git a/Contents/Code/__init__.py b/Contents/Code/__init__.py index 0b56a59..8219521 100644 --- a/Contents/Code/__init__.py +++ b/Contents/Code/__init__.py @@ -10,7 +10,7 @@ from update_tools import UpdateTool from urls import SiteUrl -VERSION_NO = '2021.08.30.1' +VERSION_NO = '2021.08.30.2' # Delay used when requesting HTML, # may be good to have to prevent being banned from the site @@ -677,7 +677,7 @@ def handle_series(self, helper, html): r, '//li[contains(@class, "seriesLabel")]/text()[2]' ).strip() if helper.volume == ",": - helper.helper.volume = "" + helper.volume = "" helper.volume2 = self.getStringContentFromXPath( r, '//li[contains(@class, "seriesLabel")]/text()[3]' ).strip() @@ -685,7 +685,7 @@ def handle_series(self, helper, html): helper.volume2 = "" helper.volume_def = ( - helper.helper.volume2 if helper.volume2 else helper.volume + helper.volume2 if helper.volume2 else helper.volume ) # fix series when audible 'forgets' the series linkā€¦