aw-cloud
aw-cloud
 Hope that helps. Basically switching to two page mode and going back to a document that was in single page mode when last opened causes issues.
No once you readjust switching between them works fine. It's only a problem when your current document is in two page mode and you switch back to one that was...
Yeah that would be good. I think a couple of features would be better with per-document settings (indexing, two_page and the recto-verso adjustment etc.) Not sure how much work it...
I had the same thing happen recently on the dev branch and get the same error with your file. I think the problem is technically with your pdf rather than...
You can clone my fork directly with `git clone https://github.com/aw-cloud/sioyek.git -b development` and then build as normal. Or one of the suggestions [on this stack overflow post](https://stackoverflow.com/questions/14947789/github-clone-from-pull-request) should work. I...
Your file has invalid utf8, I think in the metadata title field. On opening the document `detect_paper_name` is called which calls `utf8_decode`; neither check whether the input is actually valid...
Yes but it makes more sense to let `utf8_decode` fail when it's given invalid input. If `utf8_decode` handled errors you'd have to decide on something sensible to return in those...
Not sure what you mean by pre-call error handling, but that's not necessarily true. You can catch exceptions at any convenient place in the stack, you can cover multiple calls...