pwang7 / rebook

96 stars 11 forks source link

DJVU files #4

Open leppenen opened 3 years ago

leppenen commented 3 years ago

Please, add conversion of DJVU files

R-e-d-J commented 3 years ago

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 ;-)