rebook
rebook copied to clipboard
DJVU files
Please, add conversion of DJVU files
In the function on_command_open_pdf_file_cb()
(about line 410), the first line is the supported format :
formats = [('PDF files', '*.pdf')]
You can add yourself the djvu extension like this :
formats = [('PDF files', '*.pdf'), ('DJVU files', '*.djvu')]
It doesn't work for me (Mac OS 11.4, python 3) but it should following the documentation of tkinter… Try it, hopefully it gonna work for you ;-)