Add about

This commit is contained in:
CPD 2025-03-05 15:26:33 +01:00
parent 83fa6fabf5
commit bff309a077
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,5 @@
## About
- Author: Matthias Quintern
- License: [GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html)
- Source Code: https://git.quintern.xyz/MatthiasQuintern/cpdctrl-gui

View File

@ -1,4 +1,5 @@
from PyQt6.QtWidgets import QTextBrowser from PyQt6.QtWidgets import QTextBrowser
from PyQt6.QtGui import QDesktopServices
from ...resources import get_resource_path from ...resources import get_resource_path
@ -11,3 +12,8 @@ class MarkdownView(QTextBrowser):
with open(self.filepath, "r") as file: with open(self.filepath, "r") as file:
content = file.read() content = file.read()
self.setMarkdown(content) self.setMarkdown(content)
# open links with the OS web browser
self.anchorClicked.connect(QDesktopServices.openUrl)
# dont follow links
self.setOpenLinks(False)