mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
+ added statistics progression; statistics progression dialog + new animation speed: `medium'; renamed `timer based' to `fast' + added flip animation (animatedFlip) + added move to waste animation (animatedFlipAndMove) + added cancel-drag animation (moveCardsBackHandler) * improved demo game (snapshots based check for loop) - removed setting text color from file name - removed auto generation shadows (too slow) * optimized menu creation * changed some keybindings * updated russian translation * many bugfixes git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@138 39dd0a4e-7c14-0410-91b3-c4f2d318f732
14 lines
349 B
Batchfile
Executable file
14 lines
349 B
Batchfile
Executable file
rem simple script for building windows package
|
|
|
|
cd ..
|
|
rm -rf dist
|
|
mkdir dist
|
|
cp -r locale dist
|
|
cp -r freecell-solver dist
|
|
cp smpeg.dll ogg.dll vorbis.dll vorbisfile.dll dist
|
|
python setup.py py2exe
|
|
cp -r d:\Python\tcl\tile0.7.8 dist\tcl
|
|
cp -r data\music dist\data
|
|
python scripts\create_iss.py
|
|
"d:\Program Files\Inno Setup 5\ISCC.exe" setup.iss
|
|
pause
|