Skip to content

Commit 554fb40

Browse files
author
Avaxerrr
committed
v1.0.0 Final Build
1 parent ca37bcc commit 554fb40

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ A modern, cross-platform tool for generating and exporting directory trees with
44

55
![image](https://github.com/user-attachments/assets/43a8d52c-c293-48c3-a9be-18a3607f6a82)
66

7-
## Features
8-
97
- **Directory Scanning**: Visualize any folder as a tree structure.
108
- **Exclusion Patterns**: Exclude files or folders using patterns.
9+
- **Automatic Exclusion Saving**: Exclusions and settings are saved and loaded automatically.
1110
- **Customizable Formatting**: Switch between ASCII and box-drawing styles.
1211
- **Export**: Save the tree to a text file.
1312
- **Search**: Quickly find and highlight files or folders in the tree.
@@ -16,6 +15,7 @@ A modern, cross-platform tool for generating and exporting directory trees with
1615

1716
- Select a folder using the address bar.
1817
- Add exclusion patterns to skip files/folders.
18+
- Exclusions and settings are saved automatically.
1919
- Switch between ASCII and box-drawing formats.
2020
- Search for files/folders in the tree.
2121
- Export the tree to a text file.
@@ -27,4 +27,4 @@ A modern, cross-platform tool for generating and exporting directory trees with
2727

2828
## License
2929

30-
This project is licensed under the MIT License. See [LICENSE](LICENSE.md) for details.
30+
This project is licensed under the MIT License. See [LICENSE](LICENSE.md) for details.

ui/components/about_dialog.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
# v1.0.0
44

5-
from PySide6.QtWidgets import QDialog, QVBoxLayout, QLabel, QPushButton, QTextBrowser, QSpacerItem, QSizePolicy
5+
from PySide6.QtWidgets import QDialog, QVBoxLayout, QLabel, QPushButton, QTextBrowser
66
from PySide6.QtCore import Qt
77

88
class AboutDialog(QDialog):
99
def __init__(self, parent=None):
1010
super().__init__(parent)
1111
self.setWindowTitle("About File Tree Generator")
12-
self.setFixedSize(420, 370)
12+
self.setFixedSize(420, 430)
1313
self._setup_ui()
1414

1515
def _setup_ui(self):
@@ -30,8 +30,9 @@ def _setup_ui(self):
3030
author_label.setOpenExternalLinks(True)
3131

3232
desc_label = QLabel(
33-
"File Tree Generator is a modern tool for visualizing, searching, and exporting directory trees.<br>"
34-
"Easily exclude files or folders, switch between ASCII and box-drawing styles, and export your results."
33+
"File Tree Generator is a modern tool for visualizing, searching, and exporting directory trees.<br><br>"
34+
"Easily exclude files or folders, switch between ASCII and box-drawing styles, and export your results.<br><br>"
35+
"Exclusions and settings are saved automatically."
3536
)
3637
desc_label.setWordWrap(True)
3738
desc_label.setAlignment(Qt.AlignCenter)
@@ -46,8 +47,7 @@ def _setup_ui(self):
4647
github_repo.setAlignment(Qt.AlignCenter)
4748
github_repo.setOpenExternalLinks(True)
4849

49-
# More spacing before attribution
50-
layout.addSpacing(8)
50+
layout.addSpacing(10)
5151

5252
icon_attribution = QTextBrowser()
5353
icon_attribution.setOpenExternalLinks(True)

0 commit comments

Comments
 (0)