diff --git a/PixivConstant.py b/PixivConstant.py index 0adf6cea..45dbadbb 100644 --- a/PixivConstant.py +++ b/PixivConstant.py @@ -2,7 +2,7 @@ # pylint: disable=I0011, C, C0302 -PIXIVUTIL_VERSION = '20160319' +PIXIVUTIL_VERSION = '20160414-beta1' PIXIVUTIL_LINK = 'https://nandaka.wordpress.com/tag/pixiv-downloader/' PIXIV_URL = 'http://www.pixiv.net' PIXIV_URL_SSL = 'https://www.secure.pixiv.net/login.php' diff --git a/PixivUtil2.py b/PixivUtil2.py index 6af88abd..8ade69e0 100644 --- a/PixivUtil2.py +++ b/PixivUtil2.py @@ -1064,7 +1064,9 @@ def process_new_illust_from_bookmark(mode, page_num=1, end_page_num=0): parsed_page.decompose() del parsed_page - if (end_page_num != 0 and i > end_page_num) or i > 100 or pb.isLastPage: + # Non premium is only limited to 100 page + # Premium user might be limited to 5000, refer to issue #112 + if (end_page_num != 0 and i > end_page_num) or i > 5000 or pb.isLastPage: print "Limit or last page reached." flag = False diff --git a/changelog.txt b/changelog.txt index 619c59c5..7982cc24 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +20160414-beta1 +- Fix Issue #112: change the max page limit for option 8 from 100 to 5000 for premium user. + 20160319 - Fix unicode decode error when downloading image. - Implement #107: add option to specify different database.