Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
g4ixt committed Apr 5, 2024
2 parents 06738c7 + 9cc3cc6 commit 6933bef
Show file tree
Hide file tree
Showing 18 changed files with 4,374 additions and 2,253 deletions.
316 changes: 168 additions & 148 deletions QtTSApreferences.py

Large diffs are not rendered by default.

Binary file modified QtTSAprefs.db
Binary file not shown.
44 changes: 44 additions & 0 deletions QtTinySA-folder.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['QtTinySA.py'],
pathex=[],
binaries=[],
datas=[('QtTSAprefs.db', '.')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['pandas','setuptools', 'tk', 'wheel', 'zipp', 'pyyaml', 'packaging', 'altgraph', 'mkl', 'fortran', 'matlab'],
noarchive=False,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='QtTinySA',
icon=['tinySA.ico'],
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='QtTinySA',
)
353 changes: 188 additions & 165 deletions QtTinySA.py

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions QtTinySA.spec
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(
['QtTinySA.py'],
pathex=[],
binaries=[],
datas=[('QtTSAprefs.db', '.')],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['pandas','setuptools', 'tk', 'wheel', 'zipp', 'pyyaml', 'packaging', 'altgraph', 'mkl', 'fortran', 'matlab'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
exclude_binaries=True,
name='QtTinySA',
icon=['tinySA.ico'],
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='QtTinySA',
)
Loading

0 comments on commit 6933bef

Please sign in to comment.