diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e2c6de..066504a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,47 @@ +*Happypanda v0.27* +- Many visual changes +- New ribbon indicating gallery type in gridview +- New sidebar widget: + + New feature: Gallery lists + + New feature: Artists list + + Moved *NS & Tags* treelist from settings to sidebar widget +- Added a "gallery source is missing" indicator in grid view +- Metadata fetcher: + + Galleries with multiple hits found will now come last in the fetching process + + Added fallback system to fetch metadata from other sources than EH + + Currently supports panda.chaika.moe + +- Removed EH member_id and pass_hash in favor for EH login method +- Added new sort option: *last read* +- Added option to exclude/include gallery from auto metadata fetcher in the contextmenu +- Added general key shortcuts (read about the not so obvious shortcuts in the wiki) +- Added support for new metafile: *HDoujin downloader*'s default into.txt file +- Updated database to version 0.23: + - Gallery lists addition + - New unique indexes in some tables + - Thumbnail paths are now relative (removing the need to rebuild thumbs when moving Happypanda folder) +- Settings: + + Added option to force support for high DPI displays + + Added option to control the gallery size in grid view + + Enabled most *Gallery* options in the *Visual* section for OSX + + Added options to customize gallery type ribbon colors + + Added options to set default gallery values + + Added a way to add custom languages in settings + + Added option to send deleted files to recycle bin + + Added option to hide the sidebar widget on startup +- Bug fixes: + + Fixed a bug causing some external viewers to only be able to view the first image + + Fixed metadata disappearance bug (hopefully, for real this time!) + + Fixed decoding issues preventing some galleries from getting imported + + Fixed lots of critical database issues requiring a rebuild for updating users + + Fixed gallery downloading from g.e-hentai + + Fixed bug causing "Show in library" to not work properly + + Fixed a bug causing a hang while fetching metadata + + Fixed a bug causing autometadata fetcher to sometimes fail fetching for some galleries + + Fixed hand when checking for duplicates + + Fixed database rebuild issues + + Potentially fixed a bug preventing archives from being imported, courtesy of KuroiKitsu + *Happypanda v0.26* - Startup is now slighty faster - New redesigned gallery metadata window! diff --git a/misc/screenshot1.png b/misc/screenshot1.png index 58623d6..da113bb 100644 Binary files a/misc/screenshot1.png and b/misc/screenshot1.png differ diff --git a/misc/screenshot2.png b/misc/screenshot2.png index e57dcbe..303e045 100644 Binary files a/misc/screenshot2.png and b/misc/screenshot2.png differ diff --git a/misc/screenshot3.png b/misc/screenshot3.png index 340f4b7..fc017ba 100644 Binary files a/misc/screenshot3.png and b/misc/screenshot3.png differ diff --git a/misc/screenshot4.png b/misc/screenshot4.png index f01ca9f..0bcecd9 100644 Binary files a/misc/screenshot4.png and b/misc/screenshot4.png differ diff --git a/version/pewnet.py b/version/pewnet.py index 534db1f..e748f35 100644 --- a/version/pewnet.py +++ b/version/pewnet.py @@ -1,4 +1,4 @@ -#""" +#""" #This file is part of Happypanda. #Happypanda is free software: you can redistribute it and/or modify #it under the terms of the GNU General Public License as published by @@ -922,7 +922,7 @@ def login(cls, user, password): 'PassWord':password } - eh_c = requests.post('https://forums.e-hentai.org/index.php?act=Login&CODE=01', data=p).cookies.get_dict() + eh_c = requests.post('https://forums.e-hentai.org/index.php?act=Login&CODE=01', data=p, verify='cacert.pem').cookies.get_dict() exh_c = requests.get('http://exhentai.org', cookies=eh_c).cookies.get_dict() eh_c.update(exh_c)