Skip to content

Commit

Permalink
2.24.4
Browse files Browse the repository at this point in the history
-Fixed bug where opening file in notpad did not show filename
-Fixed bug where pressing X on notpad window would not trigger terminat()
-Fixed bug where the program could load a corrupt appdata file
-Basic Utilities will now delete old appdata after porting it
-Added a new insult :)
-No non-arg prints before appdata load (more on that in the 2.25 betas)
  • Loading branch information
Enderbyte09 authored Jan 15, 2022
1 parent 05c363b commit 329de72
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bu.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Basic Utilities"
#define MyAppVersion "2.24.3"
#define MyAppVersion "2.24.4"
#define MyAppPublisher "Enderbyte Programs"
#define MyAppURL "https://enderbyte09.wixiste.com/programs"
#define MyAppExeName "BasicUtilities.exe"
Expand All @@ -29,7 +29,7 @@ LicenseFile=C:\Python310\Scripts\license.txt
; Remove the following line to run in administrative install mode (install for all users.)
PrivilegesRequired=lowest
OutputDir=C:\Users\jorda\Installer
OutputBaseFilename=basicutilities_2.24.3_installer
OutputBaseFilename=basicutilities_2.24.4_installer
SetupIconFile=C:\Python310\Scripts\bu.ico
Compression=lzma
SolidCompression=yes
Expand Down
4 changes: 4 additions & 0 deletions clean.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
del /s /f /q .\BasicUtilities\*
rmdir /s /q .\BasicUtilities\
mkdir BasicUtilities
move BasicUtilities.py .\BasicUtilities\BasicUtilities.py
5 changes: 4 additions & 1 deletion compile.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
move .\BasicUtilities\BasicUtilities.py BasicUtilities.py
del /s /f /q .\BasicUtilities\*
rmdir .\BasicUtilities\.temp
.\pyinstaller --icon=bu.ico --version-file=vf.txt --noconfirm BasicUtilities.py
.\pyinstaller --icon=bu.ico --version-file=vf.txt --onefile BasicUtilities.py
PAUSE
xcopy /s /e .\dist\BasicUtilities .\BasicUtilities
8 changes: 4 additions & 4 deletions vf.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,24,2,0),
prodvers=(2,24,2,0),
filevers=(2,24,4,0),
prodvers=(2,24,4,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'Enderbyte Programs'),
StringStruct(u'FileDescription', u'Basic Utilities'),
StringStruct(u'FileVersion', u'2.24.2.0'),
StringStruct(u'FileVersion', u'2.24.4.0'),
StringStruct(u'InternalName', u'BasicUtilities'),
StringStruct(u'LegalCopyright', u'© 2021-2022 Enderbyte Programs. Some rights reserved'),
StringStruct(u'OriginalFilename', u'BasicUtilities.exe'),
StringStruct(u'ProductName', u'Basic Utilities'),
StringStruct(u'ProductVersion', u'2.24.2.0')])
StringStruct(u'ProductVersion', u'2.24.4.0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down

0 comments on commit 329de72

Please sign in to comment.