Chore: Stop tracking files based on .gitignore update.

Untracked files matching the following rules:
- Rule "!.vscode/launch.json": 1 file
This commit is contained in:
VALLONGOL 2025-05-12 11:38:47 +02:00
parent 6a5a966ede
commit ba8ce9a444
2 changed files with 40 additions and 1 deletions

2
.gitignore vendored
View File

@ -30,7 +30,7 @@ MANIFEST
# PyInstaller # PyInstaller
# Usually these files are written by a CI server in a temp folder. # Usually these files are written by a CI server in a temp folder.
# Then everything is copied to shipping folder during release. # Then everything is copied to shipping folder during release.
*.spec #*.spec
# Installer logs # Installer logs
pip-log.txt pip-log.txt

39
gui_g_converter.spec Normal file
View File

@ -0,0 +1,39 @@
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['gui_g_converter/__main__.py'],
pathex=['.'],
binaries=[],
# Usa project_icon_filename nella sezione datas
datas=[('GUI_g_converter.ico', '.')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='GUI_g_converter',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
# Usa project_icon_filename per l'opzione icon
icon='GUI_g_converter.ico'
)