Quote:
Originally Posted by ownedbycats
When editing the Reject URL list, sorting by "Note" doesn't work while the others do. Is that a side effect of the dropdown menu?
|
Probably.
FFF enables sorting on the table with
setSortingEnabled(True). The Note column is a
calibre.gui2.complete2.EditWithComplete object. I pass it a
sort_func=lambda x:1 parameter, but that's so it doesn't sort the Reject Reasons list. Removing it doesn't allow sorting on the column.
Quote:
Originally Posted by Mandabar
Hiya Jimm, I noticed an issue. I'm not 100% sure if it was caused by the xenforo changes or not, but I'm unable to get updates on a story from their unlisted forums (requires login to read). My latest update in the EPUB is chapter 3-5, updated on Oct 9th.
The URL is https://forums.spacebattles.com/threads/dragon-hack-litrpg.766840/
|
SB doesn't giving any indication about the difference between 'thread requires login' and 'thread doesn't exist'. So you need
always_login:true to download those.
I'm able to download that story with
always_login:true and user/pass in INI.
Quote:
Originally Posted by Mandabar
To make a long story short, I figured out the issue. It couldn't handle certain characters in the password and would ignore the input. If I put it manually in the ini, saved it, and then reopened it, the password would be incomplete. I finally just changed the password to something else. The specifics of the character escape me right now, but I think it may have been.. a ! ? Or maybe a #
|
The character '%' is special to INI format and needs to be escaped as '%%'. Lines beginning with # (including leading spaces) are comments. That's all I know about.