Skip to content

Commit 14a8cf5

Browse files
committed
feat: update application structure and version to 3.0.0, improve hidden imports and README
1 parent 351f417 commit 14a8cf5

2 files changed

Lines changed: 14 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and also supports retesting and viewing test history.
88
This project is built based on another one of my applications, which you can check out on GitHub:
99
[Internet Speed Test](https://github.com/AlexTkDev/different_mini-apps/tree/main/check_internrt_speed)
1010

11-
### What's New in Version 2.0.1
11+
### What's New in Version 3.0.0
1212
- Added comprehensive logging system for better debugging
1313
- Improved error handling throughout the application
1414
- Enhanced visualization of test history with interactive graphs

main.spec

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# -*- mode: python ; coding: utf-8 -*-
22

3-
43
a = Analysis(
5-
['alexs_speedtest.py'],
4+
['speedtest_app/alexs_speedtest.py'],
65
pathex=[],
76
binaries=[],
8-
datas=[('test_history.json', '.')],
9-
hiddenimports=['speedtest', 'network_adapter_information', 'matplotlib', 'tkinter',
10-
'matplotlib.backends.backend_tkagg', 'matplotlib.figure'],
7+
hiddenimports=[
8+
'speedtest_cli',
9+
'speedtest_app.network_adapter_information',
10+
'matplotlib',
11+
'tkinter',
12+
'matplotlib.backends.backend_tkagg',
13+
'matplotlib.figure'
14+
],
1115
hookspath=[],
1216
hooksconfig={},
1317
runtime_hooks=[],
@@ -23,7 +27,7 @@ exe = EXE(
2327
a.binaries,
2428
a.datas,
2529
[],
26-
name='alexs_peedtest',
30+
name='alexs_speedtest',
2731
debug=False,
2832
bootloader_ignore_signals=False,
2933
strip=False,
@@ -40,8 +44,8 @@ exe = EXE(
4044
)
4145
app = BUNDLE(
4246
exe,
43-
name='Alexs_SpeedTest.app',
47+
name='Alex_SpeedTest.app',
4448
icon='speedtest.icns',
4549
bundle_identifier='org.AlexTkDev.speedtest',
46-
version='2.0.0',
47-
)
50+
version='3.0.0',
51+
)

0 commit comments

Comments
 (0)