-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from PyQt5.QtWidgets import QDialog, QGridLayout, QLabel | ||
from PyQt5.QtCore import Qt | ||
|
||
class UpdateNotification(QDialog): | ||
|
||
def __init__(self, url): | ||
super(QDialog,self).__init__() | ||
|
||
self.url = url | ||
self.setWindowTitle("Update!") | ||
self.layout = QGridLayout(self) | ||
label = QLabel("New update available. You download it here : <br/> <a href='{}'>New Release!</a>".format(self.url)) | ||
label.setTextFormat(Qt.RichText) | ||
label.linkActivated.connect(self.link_update_clicked) | ||
self.layout.addWidget(label) | ||
|
||
|
||
|
||
def link_update_clicked(self, link): | ||
import webbrowser | ||
webbrowser.open(link) | ||
self.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
VERSION = '0.0.0' |