Skip to content

Commit

Permalink
Melhorias no app de jukebox manager (#21)
Browse files Browse the repository at this point in the history
mais user friendly
  • Loading branch information
cosmosgc authored Feb 2, 2025
1 parent 60accdf commit f255a3b
Show file tree
Hide file tree
Showing 14 changed files with 17,245 additions and 0 deletions.
Binary file added Tools/Jukebox Manager/Jukebox.exe
Binary file not shown.
7 changes: 7 additions & 0 deletions Tools/Jukebox Manager/app.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
@echo off

:: Ensure pip is up to date
python -m pip install --upgrade pip

:: Install required dependencies
pip install -r requirements.txt

:: Run the script
call python app.py

pause
38 changes: 38 additions & 0 deletions Tools/Jukebox Manager/app.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['app.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='app',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
Loading

0 comments on commit f255a3b

Please sign in to comment.