Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EricGoldsteinNz authored and EricGoldsteinNz committed Sep 28, 2023
1 parent a284655 commit 393fb70
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build.bat
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;."
27 changes: 27 additions & 0 deletions versioninfo
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])])
]
)

0 comments on commit 393fb70

Please sign in to comment.