Skip to content

Commit

Permalink
Fix issue #112
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandaka committed Apr 14, 2016
1 parent 6758802 commit 354ab47
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PixivConstant.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 3 additions & 1 deletion PixivUtil2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 354ab47

Please sign in to comment.