-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
6acfc3e
commit 24a2424
Showing
9 changed files
with
4,965 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
@ECHO OFF | ||
ECHO Start building... | ||
ECHO Building English version...... | ||
pyinstaller main.spec | ||
ECHO Building Chinese (Simp) version...... | ||
pyinstaller main-zhs.spec | ||
CD dist | ||
xcopy /s .\main-zhs\main-zhs.exe .\main | ||
xcopy /s .\main-zhs\main-zhs.exe.manifest .\main | ||
RMDIR /S /Q .\main-zhs | ||
REN "main" "CJK-character-count-v0.10" | ||
ECHO Build done! | ||
@ECHO OFF | ||
ECHO Start building... | ||
ECHO Building English version...... | ||
pyinstaller main.spec | ||
ECHO Building Chinese (Simp) version...... | ||
pyinstaller main-zhs.spec | ||
ECHO Building Chinese (Trad) version...... | ||
pyinstaller main-zht.spec | ||
CD dist | ||
ECHO Combining files...... | ||
:: copy everything into zht folder as zht need extra GUI font | ||
xcopy /s .\main\main.exe .\main-zht | ||
xcopy /s .\main\main.exe.manifest .\main-zht | ||
xcopy /s .\main-zhs\main-zhs.exe .\main-zht | ||
xcopy /s .\main-zhs\main-zhs.exe.manifest .\main-zht | ||
ECHO Deleting redundant file...... | ||
RMDIR /S /Q .\main | ||
RMDIR /S /Q .\main-zhs | ||
REN "main-zht" "CJK-character-count-vX.XX" | ||
ECHO Build done! | ||
ECHO Press Enter to exit. | ||
PAUSE >nul | ||
EXIT |
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
Oops, something went wrong.