Skip to content

Commit a9d7303

Browse files
authored
Fixed typos
1 parent 33165b4 commit a9d7303

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

FF_Additional_UI.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def __init__(self, parent, force_tutorial=False):
490490
"text": "<p>To search fill in the desired options and leave the unnecessary ones untouched. "
491491
"If you leave everything untouched, the result is going to include all files on your disk "
492492
"except system files "
493-
"(<i>To search for them you have to activate the option "
493+
"(<i>to search for them you have to activate the option "
494494
"under <code>Advanced</code></i>).<br> If you are unsure about the functionality"
495495
" of a filter, you can hover over its name or refer "
496496
"<a href=\"https://pixel-master.github.io/File-Find/#how-to\">to this guide</a>.</p>"
@@ -559,7 +559,7 @@ def __init__(self, parent, force_tutorial=False):
559559
"<p>File Find is an open source Utility for finding files. </p>"
560560
f"<p>For an overview over the changes have a look at the "
561561
f"<a href=\"https://pixel-master.github.io/File-Find/download#{FF_Files.VERSION_SHORT}\"a>"
562-
f"changelog<br>"
562+
f"changelog</a><br>"
563563
f"Get new versions <a href=\"https://pixel-master.github.io/File-Find/download\">here</a>"
564564
f"</p>"
565565
"<p>Your File Find version: "

FF_Files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from PySide6.QtCore import QDate, Qt
2020

2121
# Versions
22-
VERSION: str = "7-june-2025"
22+
VERSION: str = "8-june-2025"
2323
VERSION_SHORT: str = "2.0"
2424
# Versions of file formats
2525
FF_FILTER_VERSION = 2

FF_Main_UI.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(self):
8787
self.basic_search_widget,
8888
self.generic_tooltip(
8989
"Name",
90-
"Multiple different modes can be selected. \n"
90+
"Multiple different modes are available. \n"
9191
"\nName \"is\":\n"
9292
" Input needs to match the file name exactly. Also supports unix shell-style "
9393
"wildcards, which are not the same as regular expressions."
@@ -97,10 +97,10 @@ def __init__(self):
9797
" ? matches any single character\n"
9898
" [seq] matches any character in seq\n"
9999
" [!seq] matches any character not in seq\n\n"
100-
"Name \"contains\":\n The file name must contain input\n\n"
101-
"Name \"begins with\":\n The file name must start with the input\n\n"
100+
"Name \"contains\":\n The file name must contain the input.\n\n"
101+
"Name \"begins with\":\n The file name must start with the input.\n\n"
102102
"Name \"ends with\":\n The file name (without the file ending) must end with input. So \"mple\" "
103-
"would match with \"Example.txt\"\n\n"
103+
"would match with \"Example.txt\".\n\n"
104104
"Name \"is similar to\":\n Performs a fuzzy search. So \"amp\" matches with \"Example.txt\". "
105105
"Matching percentage can be set separately.\n\n"
106106
"Name \"doesn't contain\":\n Input must not be included in its entirety in the file name.\n\n"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Or you could:
4949
<p align="left">
5050
<img src="https://github.com/Pixel-Master/Pixel-Master.github.io/blob/main/File-Find/screenshots/File%20Find%20screenshot%20white.png?raw=true" height="250"></p>
5151

52-
* **Name**: Multiple different modes can be selected.
52+
* **Name**: Multiple different modes are available.
5353
* Name **is**: Input needs to match the file name exactly. Also supports unix shell-style wildcards, which are not the same as regular expressions.
5454
* Usage:
5555

@@ -60,14 +60,14 @@ Or you could:
6060
| [seq] | matches any character in seq |
6161
| [!seq] | matches any character not in seq |
6262

63-
* Name **contains**: The file name must contain input.
64-
* Name **begins with**: The file name must start with the input
65-
* Name **ends with**: The file name (without the file ending) must end with input. So `mple` would match with `Example.txt`
63+
* Name **contains**: The file name must contain the input.
64+
* Name **begins with**: The file name must start with the input.
65+
* Name **ends with**: The file name (without the file ending) must end with input. So `mple` would match with `Example.txt`.
6666
* Name **is similar to**: Performs a fuzzy search. So `amp` matches with `Example.txt`. Matching percentage can be set separately.
6767
* Name **doesn't contain**: Input must not be included in its entirety in the file name.
6868
* Name **in RegEx**: Does a regular expression pattern matching. For a detailed explanation refer to: https://regular-expressions.info
6969
* **File Types**: Select groups of file types that should be included in search results. Click `Custom` to change selection mode and input a file type (e.g. pdf) without the `.` that needs to match the file ending of a file exactly, ignoring case. Multiple possible file types can be separated with a semicolon (for example: `png;jpg;heic`) Click `Predefined` to switch back. Only the currently visible mode will be taken into account.
70-
* **Directory**: The directory to search in. Excluding subdirectory is possible in `Advanced`
70+
* **Directory**: The directory to search in. Excluding subdirectory is possible in `Advanced`.
7171

7272

7373

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def main():
112112
"nuitka",
113113
"--standalone",
114114
"--onefile",
115-
f"--linux-icon={os.path.join(os.getcwd(), "assets", "icon.png")}",
115+
f"--linux-icon={os.path.join(os.getcwd(), 'assets', 'icon.png')}",
116116
"--enable-plugin=pyside6",
117117
"--output-dir=dist",
118118
"File-Find.py"])

0 commit comments

Comments
 (0)