Add about
This commit is contained in:
parent
83fa6fabf5
commit
bff309a077
5
cpdctrl_gui/resources/about.md
Normal file
5
cpdctrl_gui/resources/about.md
Normal 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
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user