Skip to content

Commit 93c525e

Browse files
authored
Merge pull request #8 from olive-groves/developer/lars
Add version to About pop-up; minor About and README changes
2 parents 9864766 + 0bc7d24 commit 93c525e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can download and run PDZ Extractor as a [Windows executable](#windows-execut
1414

1515
### Windows executable
1616

17-
For Windows, PDZ Extractor is available as a portable executable that runs by directly double-clicking or running from the command prompt. No installation is required.
17+
For Windows, PDZ Extractor is available as a portable executable that runs directly by double-clicking or running from the command prompt. No installation is required.
1818

1919
Here's how:
2020

source/interfaces.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
from paths import create_folders, get_likenamed_filepaths_with_extension, get_filepaths_with_extension_in_directory
1111

1212

13+
VERSION = "1.0"
14+
15+
1316
class BetterScrolledText(ScrolledText):
1417
def __init__(self, window=None):
1518
super().__init__(master=window)
@@ -690,13 +693,15 @@ def draw_about_button(self, row: int):
690693
def show_about(self):
691694
title = self._window.title()
692695
showinfo(title,
693-
"""PDZ Extractor: GUI for pdz-tool
696+
f"""PDZ Extractor: GUI for pdz-tool
697+
698+
Version {VERSION}
694699
695700
https://github.com/olive-groves/pdz-extractor
696701
697702
MIT License
698703
699-
pdz-tool Copyright (c) 2024 Bruno Ducraux (github.com/bducraux) with e changes made by Lars Maxfield (github.com/larsmaxfield)
704+
pdz-tool Copyright (c) 2024 Bruno Ducraux (github.com/bducraux) with extended features and fixes by Lars Maxfield (github.com/larsmaxfield)
700705
701706
User interface created by Lars Maxfield (github.com/larsmaxfield)
702707

0 commit comments

Comments
 (0)