Skip to content

Commit

Permalink
added v2.5.1.0 to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
notwopr committed Apr 19, 2023
1 parent 2c607cc commit dbc04f0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
9 changes: 5 additions & 4 deletions Deployment/COMPILE INSTRUCTIONS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ To properly compile SEM Apprentice into an EXE file do the following:
(3) Update version number.
(4) Run it. This will create a new versionfile.txt.
(5) You should see the versionfile.txt located in the same folder as the SEM Apprentice python scripts.
c. Update README.md
d. Update README.HTML
c. Update README.HTML

2. Remove previous pyinstaller compilations.
a. Delete existing 'dist' folder.
Expand All @@ -35,5 +34,7 @@ To properly compile SEM Apprentice into an EXE file do the following:
c. Place a copy of the mikey_small.png file in the 'dist' folder.
c. Rename 'dist' to 'SEM Apprentice v.{version #}'
d. Zip the folder.
e. Add zip file to the Builds folder.
f. Commit changes to repo to save the new build to the repo.
e. Add zip file to the "SEM Apprentice Releases" folder.
f. Delete the original 'SEM Apprentice v.{version #}' folder.
g. Delete the 'build' folder.
h. Commit changes to repo to save the new build to the repo.
2 changes: 1 addition & 1 deletion Deployment/create_versioninfofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

pyinstaller_versionfile.create_versionfile(
output_file="./SEM_APPRENTICE/versionfile.txt",
version="2.5.0.0",
version="2.5.1.0",
company_name="Anudha Mittal and David Choi",
file_description="SEM Apprentice",
legal_copyright="© 2023 Anudha Mittal and David Choi. All rights reserved.",
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion SEM_APPRENTICE/README.HTML
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<br>
<h2>VERSION INFO</h2>

<p>Application: SEM Apprentice<br>Version: 2.5.0.0</p>
<p>Application: SEM Apprentice<br>Version: 2.5.1.0</p>

<br>
<h2>LEGAL</h2>
Expand Down
2 changes: 1 addition & 1 deletion SEM_APPRENTICE/SEM_Apprentice.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self):
self.greeting = "Hi! I am SEM Apprentice. Welcome :)"
self.copyright_block = [
"SEM_APPRENTICE",
"VERSION: 2.5.0.0",
"VERSION: 2.5.1.0",
"WELCOME TO SEM_APPRENTICE!",
"** SEM_APPRENTICE IS THE PROPERTY OF THE AUTHORS AND OWNERS OF SEM_APPRENTICE (ANUDHA MITTAL and DAVID CHOI) AND MAY NOT BE DISTRIBUTED, COPIED, SOLD, OR USED WITHOUT THE EXPRESS CONSENT FROM THEM.",
"** BY USING AND/OR POSSESSING SEM_APPRENTICE CODE, YOU ACKNOWLEDGE AND AGREE TO THESE TERMS.",
Expand Down
8 changes: 4 additions & 4 deletions SEM_APPRENTICE/versionfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0. Must always contain 4 elements.
filevers=(2,5,0,0),
prodvers=(2,5,0,0),
filevers=(2,5,1,0),
prodvers=(2,5,1,0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -32,12 +32,12 @@ VSVersionInfo(
u'040904B0',
[StringStruct(u'CompanyName', u'Anudha Mittal and David Choi'),
StringStruct(u'FileDescription', u'SEM Apprentice'),
StringStruct(u'FileVersion', u'2.5.0.0'),
StringStruct(u'FileVersion', u'2.5.1.0'),
StringStruct(u'InternalName', u''),
StringStruct(u'LegalCopyright', u'© 2023 Anudha Mittal and David Choi. All rights reserved.'),
StringStruct(u'OriginalFilename', u'SEM_Apprentice.exe'),
StringStruct(u'ProductName', u'SEM Apprentice'),
StringStruct(u'ProductVersion', u'2.5.0.0')])
StringStruct(u'ProductVersion', u'2.5.1.0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down

0 comments on commit dbc04f0

Please sign in to comment.