Rewrite in Rust
This commit is contained in:
parent
3ca546a53b
commit
8b6387737c
12 changed files with 957 additions and 5 deletions
3
build/.gitignore
vendored
3
build/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
septadrop
|
||||
*.deb
|
||||
*.deb
|
||||
DEBIAN/usr/games/septadrop
|
|
@ -1,7 +1,11 @@
|
|||
TARGET=septadrop_1.1.0_amd64
|
||||
mkdir -p ${TARGET}/usr/bin/
|
||||
rm -r ${TARGET}/usr/games/septadrop/
|
||||
mkdir -p ${TARGET}/usr/games/septadrop/
|
||||
cd ..
|
||||
cargo build --release
|
||||
cargo rustc --release -- --cfg debian
|
||||
cp target/release/septadrop build/${TARGET}/usr/bin/
|
||||
upx --best --lzma build/${TARGET}/usr/bin/septadrop
|
||||
cp -r res/* build/${TARGET}/usr/games/septadrop/
|
||||
cd build
|
||||
dpkg-deb --build ${TARGET}
|
|
@ -1,3 +1,8 @@
|
|||
septadrop (1.1.0) impish; urgency=low
|
||||
|
||||
* Rewrite in Rust
|
||||
* Prevent block overlapping at top of screen; immediate game over
|
||||
|
||||
septadrop (1.0.1) impish; urgency=low
|
||||
|
||||
* Fix performance issue in paused state
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue