-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
EricGoldsteinNz
authored and
EricGoldsteinNz
committed
Sep 28, 2023
1 parent
a284655
commit 393fb70
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@echo off | ||
set ver=0.1.0 | ||
rem build script for the distributable versions of tadpole | ||
if not exist "venv\" ( | ||
py -m venv venv | ||
) | ||
if not exist "venv\Lib\site-packages\PyInstaller" ( | ||
venv\Scripts\python -m pip install pyinstaller | ||
) | ||
if not exist "venv\Lib\site-packages\PIL" ( | ||
venv\Scripts\python -m pip install Pillow | ||
) | ||
if not exist "venv\Lib\site-packages\PyQt5" ( | ||
venv\Scripts\python -m pip install PyQt5 | ||
) | ||
pyinstaller.exe RetroManager.py -n RetroManager-%ver%.exe --onefile -F --clean --noconsole --version-file versioninfo --add-data="README.md;." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
VSVersionInfo( | ||
ffi=FixedFileInfo( | ||
filevers=(0, 1, 0, 0), | ||
prodvers=(0, 1, 0, 0), | ||
mask=0x3f, | ||
flags=0x0, | ||
OS=0x4, | ||
fileType=0x1, | ||
subtype=0x0, | ||
date=(0, 0) | ||
), | ||
kids=[ | ||
StringFileInfo( | ||
[StringTable( | ||
u'080904B0', | ||
[StringStruct(u'CompanyName', u'EricGoldstein'), | ||
StringStruct(u'FileDescription', u'RetroManager'), | ||
StringStruct(u'FileVersion', u'0.1.0'), | ||
StringStruct(u'InternalName', u'RetroManager'), | ||
StringStruct(u'LegalCopyright', u'by EricGoldstein 2023'), | ||
StringStruct(u'OriginalFilename', u'RetroManager.exe'), | ||
StringStruct(u'ProductName', u'RetroManager'), | ||
StringStruct(u'ProductVersion', u'0.1.0')]) | ||
]), | ||
VarFileInfo([VarStruct(u'Translation', [2057, 1200])]) | ||
] | ||
) |