From 19e280d1ecfcea55484fd484ea74f27a482649aa Mon Sep 17 00:00:00 2001 From: Peter Baker Date: Sun, 5 Jan 2025 13:02:19 -0500 Subject: [PATCH] Updated version and copyright info. --- src/ygt/window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ygt/window.py b/src/ygt/window.py index 6ad84b5..adbc9ae 100755 --- a/src/ygt/window.py +++ b/src/ygt/window.py @@ -61,7 +61,7 @@ # FileNameVar = TypeVar("FileNameVar", str, tuple[str, Any]) FileNameVar = Union[str, tuple[str, Any]] # FileNameVar = Any -ygt_version = "0.2.5" +ygt_version = "0.2.6" class ygPreviewFontMaker(QThread): @@ -1629,7 +1629,7 @@ def show_about_dialog(self) -> None: msg.setStyleSheet("QLabel{min-width: 350px;}") msg.setWindowTitle("About YGT") msg.setText("YGT TrueType Hint Editor v. " + ygt_version) - detailed_text = "Copyright © 2024 by Peter S. Baker.\n" + detailed_text = "Copyright © 2024–2025 by Peter S. Baker.\n" detailed_text += "Apache License, version 2.0. \n\n" detailed_text += "For further information, visit https://github.com/psb1558/ygt." msg.setDetailedText(detailed_text)