-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
5 changed files
with
21 additions
and
13 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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
import platform | ||
from glob import glob | ||
|
||
VERSION = "1.2.0" | ||
VERSION = "1.2.1" | ||
|
||
|
||
APP = ['kickstart.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,6 +1,18 @@ | ||
SET TCL_LIBRARY=C:\Python27\tcl\tcl8.5 | ||
SET TK_LIBRARY=C:\Python27\tcl\tk8.5 | ||
PATH=%PATH%;C:\Python\mufsimenv;C:\Python\mufsimenv\Scripts;C:\Python27\Scripts | ||
pyinstaller --windowed --onefile --name mufsim mufgui\mufgui.py | ||
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('foo', 'foo.zip'); }" | ||
SET TCL_LIBRARY=C:\Python34\tcl\tcl8.5 | ||
SET TK_LIBRARY=C:\Python34\tcl\tk8.5 | ||
rem PATH=%PATH%;C:\Python\mufsimenv;C:\Python\mufsimenv\Scripts;C:\Python27\Scripts | ||
|
||
del dist\MufSim.exe | ||
pyinstaller MufSim.spec | ||
rem pyinstaller --windowed --onefile --name MufSim kickstart.py | ||
|
||
cd dist | ||
del MufSimWin64.zip | ||
rmdir /s /q MufSimWin64 | ||
mkdir MufSimWin64 | ||
copy MufSim.exe MufSimWin64 | ||
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('MufSimWin64', 'MufSimWin64.zip'); }" | ||
rmdir /s /q MufSimWin64 | ||
cd .. | ||
|
||
|