-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-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
1 parent
05c363b
commit 329de72
Showing
4 changed files
with
14 additions
and
7 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
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,4 @@ | ||
del /s /f /q .\BasicUtilities\* | ||
rmdir /s /q .\BasicUtilities\ | ||
mkdir BasicUtilities | ||
move BasicUtilities.py .\BasicUtilities\BasicUtilities.py |
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 |
---|---|---|
@@ -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 |
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