Skip to content

Commit c6e1d38

Browse files
author
Mehmet Aksoy
committed
V1.3.0 [ major release]
- Duplicated message problem resolved. - trailing space problem resolved. - switched back to pyqt6 - button ordering ui, fixed - performance increases
1 parent db0d2aa commit c6e1d38

10 files changed

+460
-965
lines changed

Output.txt

Whitespace-only changes.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"files": [
33
"main.py",
4-
"src/ui_config.py",
54
"src/ui_main.py",
65
"ui/icon.ico",
7-
"ui/main_window.ui"
6+
"ui/main_window.ui",
7+
"ui/ui_main_window.py"
88
]
99
}

Serial-Communication-GUI-Program.pyproject.user

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE QtCreatorProject>
3-
<!-- Written by QtCreator 14.0.2, 2024-11-20T15:03:13. -->
3+
<!-- Written by QtCreator 14.0.2, 2024-12-04T10:44:32. -->
44
<qtcreator>
55
<data>
66
<variable>EnvironmentId</variable>
@@ -171,10 +171,8 @@
171171
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">PythonEditor.RunConfiguration.C:/Projects/Qt_playground/Serial-Communication-GUI-Program/src/ui_config.py</value>
172172
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">C:/Projects/Qt_playground/Serial-Communication-GUI-Program/src/ui_config.py</value>
173173
<value type="bool" key="ProjectExplorer.RunConfiguration.Customized">true</value>
174-
<value type="QString" key="PythonEditor.RunConfiguation.Script">C:\Projects\Qt_playground\Serial-Communication-GUI-Program\src\ui_config.py</value>
175174
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
176175
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
177-
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Projects/Qt_playground/Serial-Communication-GUI-Program/src</value>
178176
</valuemap>
179177
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.2">
180178
<value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>

main.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
from src.ui_main import start_ui_design
1515

1616
if __name__ == "__main__":
17+
print("AFCOM - Serial Communication GUI Program")
1718
start_ui_design()

main.spec

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# -*- mode: python ; coding: utf-8 -*-
22

33

4+
block_cipher = None
5+
6+
47
a = Analysis(
5-
['src/main.py'],
8+
['main.py'],
69
pathex=[],
710
binaries=[],
811
datas=[],
@@ -11,14 +14,18 @@ a = Analysis(
1114
hooksconfig={},
1215
runtime_hooks=[],
1316
excludes=[],
17+
win_no_prefer_redirects=False,
18+
win_private_assemblies=False,
19+
cipher=block_cipher,
1420
noarchive=False,
1521
)
16-
pyz = PYZ(a.pure)
22+
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
1723

1824
exe = EXE(
1925
pyz,
2026
a.scripts,
2127
a.binaries,
28+
a.zipfiles,
2229
a.datas,
2330
[],
2431
name='main',
@@ -34,4 +41,5 @@ exe = EXE(
3441
target_arch=None,
3542
codesign_identity=None,
3643
entitlements_file=None,
44+
icon=['ui\\icon.ico'],
3745
)

src/ui_config.py

-398
This file was deleted.

0 commit comments

Comments
 (0)