You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at the moment we only store URLs of documents a user attempted to open previously. we should conisder copying those documents to our internal cache and show a nice list of them at startup.
The text was updated successfully, but these errors were encountered:
Agree on the "show a nice list" part, but I suggest for us to not keep the source files. We already have converted and cached HTMLs, let's just use that.
End user would click on document.odt in the recent documents list and the app would instantly open cached document.odt.html. We could do the same for externally opened documents too, but then we we need to keep a hash of source file, to know if the source file is modified or not.
Not keeping copies of source files moves us closer to the possibility of converting straight from the source, instead of copying to cache and converting from cache. Converting straight from the source implies using android.net.Uri as input, instead of java.io.File . pdf2htmlEX-Android can't handle Uri's yet, but eventually ... opendocument-app/pdf2htmlEX-Android#27 . Copy prevented is time and cache space saved.
at the moment we only store URLs of documents a user attempted to open previously. we should conisder copying those documents to our internal cache and show a nice list of them at startup.
The text was updated successfully, but these errors were encountered: