Compare commits

..

4 commits

Author SHA1 Message Date
Alexis Métaireau
c53a93f6c0
fixup! import order and lint 2024-10-28 15:48:29 +01:00
Alexis Métaireau
9355503d4a
chore: remove unused imports 2024-10-28 15:44:43 +01:00
Alexis Métaireau
72577a47b8
build: pin the PyMuPDF version to 1.24.11
This is the last PyMuPDF version to have support for python 3.8, which
is required for Ubuntu Focal (20.04)
2024-10-28 15:44:26 +01:00
Alexis Métaireau
06cbf5afcc
feat: show a deprecation warning for Ubuntu Focal (20.04) 2024-10-28 15:44:13 +01:00

View file

@ -61,11 +61,9 @@ about updates.</p>
HAMBURGER_MENU_SIZE = 30
WARNING_MESSAGE = """\
<p><b>Warning:</b> Ubuntu Focal systems and their derivatives will
stop being supported in subsequent Dangerzone releases. We encourage you to upgrade to a
more recent version of your operating system in order to get security updates.</p>
"""
WARNING_MESSAGE = """<p><b>Warning:</b> You are not receiving security updates because systems with Python 3.8 are no longer supported.
Please upgrade to a more recent version of your operating system to use an updated version of Dangerzone. While Dangerzone aims to protect
you from malicious documents, using an unsupported version may expose you to known security vulnerabilities.</p>"""
def load_svg_image(filename: str, width: int, height: int) -> QtGui.QPixmap: