forked from jdlorimer/incremental-reading
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix missing About... menu item * Update info in about.py * Update CHANGELOG
- Loading branch information
Showing
3 changed files
with
39 additions
and
22 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 |
---|---|---|
|
@@ -17,32 +17,27 @@ | |
|
||
from ._version import __version__ | ||
|
||
IR_GITHUB_URL = "https://github.com/luoliyan/incremental-reading" | ||
IR_GITHUB_URL = "https://github.com/tvhong/incremental-reading" | ||
|
||
|
||
def showAbout(): | ||
dialog = QDialog(mw) | ||
|
||
label = QLabel() | ||
label.setStyleSheet("QLabel { font-size: 14px; }") | ||
names = [ | ||
"Tiago Barroso", | ||
"Frank Kmiec", | ||
"Aleksej", | ||
contributors = [ | ||
"Joseph Lorimer <[email protected]>" "Timothée Chauvin", | ||
"Christian Weiß", | ||
"Timothée Chauvin", | ||
"Aleksej", | ||
"Frank Kmiec", | ||
"Tiago Barroso", | ||
] | ||
text = """ | ||
<div style="font-weight: bold">Incremental Reading v%s</div> | ||
<div>Joseph Lorimer <[email protected]></div> | ||
<div>Contributors: %s</div> | ||
<div>Website: <a href="%s">%s</a></div> | ||
""" % ( | ||
__version__, | ||
", ".join(names), | ||
IR_GITHUB_URL, | ||
IR_GITHUB_URL, | ||
) | ||
text = f""" | ||
<div style="font-weight: bold">Incremental Reading v{__version__}</div> | ||
<div>Vy Hong <[email protected]></div> | ||
<div>Contributors: {", ".join(contributors)}</div> | ||
<div>Website: <a href="{IR_GITHUB_URL}">{IR_GITHUB_URL}</a></div> | ||
""" | ||
label.setText(text) | ||
|
||
buttonBox = QDialogButtonBox(QDialogButtonBox.StandardButton.Ok) | ||
|
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