Skip to content

Commit

Permalink
Fix typo for Issue #108
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandaka committed Apr 15, 2016
1 parent e4ad7aa commit d429972
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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 = '20160414-beta1'
PIXIVUTIL_VERSION = '20160415-beta2'
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
2 changes: 1 addition & 1 deletion PixivUtil2.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ def process_tags(mode, tags, page=1, end_page=0, wild_card=True, title_caption=F
skipped_count = 0

start_offset = (page - 1) * 20
stop_offset = end_date * 20
stop_offset = end_page * 20

PixivHelper.printAndLog('info', 'Searching for: (' + search_tags + ") " + tags)
flag = True
Expand Down
3 changes: 2 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
20160414-beta1
20160414-beta2
- Implement #108: enhance window titlebar to calculate the total images.
- Fix Issue #112: change the max page limit for option 8 from 100 to 5000 for premium user.
- Fix Issue #113: update filename sanitizer for windows.

20160319
- Fix unicode decode error when downloading image.
Expand Down

0 comments on commit d429972

Please sign in to comment.