Skip to content

Commit 0e89943

Browse files
committed
idk
1 parent 6c4d8a5 commit 0e89943

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: uv pip install pyinstaller
3333

3434
- name: Build executable
35-
run: uv run pyinstaller --onefile --noconsole --name "KDD IDE" --add-data "resources;resources" main.py
35+
run: uv run pyinstaller --onefile --noconsole --name "Test Editor" --add-data "resources;resources" main.py
3636

3737
- name: Create Release
3838
uses: softprops/action-gh-release@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ If a pre-made .exe is not available, you can build it yourself using the instruc
6666
git clone https://github.com/darginmathi/Test-Editor
6767
cd Test-Editor
6868
uv sync
69-
uv run pyinstaller --onefile --noconsole --name "KDD IDE" --add-data "resources;resources" main.py
69+
uv run pyinstaller --onefile --noconsole --name "Test Editor" --add-data "resources;resources" main.py
7070
```
7171

7272
**Find Your Application:**

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def resource_path(relative_path):
1515

1616
def main():
1717
app = QApplication(sys.argv)
18-
app.setApplicationName("KDD IDE")
18+
app.setApplicationName("Test Editor")
1919
app.setApplicationVersion("1.0.1")
2020
app.setWindowIcon(QIcon(resource_path("resources/testeditor_logo.PNG")))
2121
style_sheet = get_stylesheet(DarkTheme)

0 commit comments

Comments
 (0)