include changelog in releases
This commit is contained in:
parent
1d3841fb6d
commit
d5bb0f7ba0
2 changed files with 6 additions and 3 deletions
|
@ -1,7 +1,9 @@
|
||||||
# Marble Machinations Change Log
|
# Marble Machinations Change Log
|
||||||
|
Game store page: https://crispypin.itch.io/marble-machinations
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
- added (dev): sub-tick visualisation in debug mode
|
- added: changelog file
|
||||||
|
- (dev) added: sub-tick visualisation in debug mode
|
||||||
- fixed: equal comparator did not output one of two incoming signals in some cases, depending on wire length and update order
|
- fixed: equal comparator did not output one of two incoming signals in some cases, depending on wire length and update order
|
||||||
- changed: comparators can now power other tiles without a wire between, including other comparators
|
- changed: comparators can now power other tiles without a wire between, including other comparators
|
||||||
- changed: directly moving marbles (to adjactent tile without anything between) now have priority over new marbles being created, instead of the two events cancelling each other
|
- changed: directly moving marbles (to adjactent tile without anything between) now have priority over new marbles being created, instead of the two events cancelling each other
|
||||||
|
@ -11,3 +13,4 @@
|
||||||
- fixed: phantom marble (empty tile causing other marbles to bounce away) appearing after multiple machines tried to output to the same location at once
|
- fixed: phantom marble (empty tile causing other marbles to bounce away) appearing after multiple machines tried to output to the same location at once
|
||||||
|
|
||||||
## v0.2.0 - 2024-12-24
|
## v0.2.0 - 2024-12-24
|
||||||
|
*everything else*
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -9,7 +9,7 @@ linux:
|
||||||
cargo build --release
|
cargo build --release
|
||||||
mkdir ${RELEASE_DIRNAME}
|
mkdir ${RELEASE_DIRNAME}
|
||||||
cp target/release/${BIN_NAME} ${RELEASE_DIRNAME}/
|
cp target/release/${BIN_NAME} ${RELEASE_DIRNAME}/
|
||||||
cp -r assets levels ${RELEASE_DIRNAME}/
|
cp -r assets levels CHANGELOG.md ${RELEASE_DIRNAME}/
|
||||||
zip -r ${RELEASE_DIRNAME}_linux.zip ${RELEASE_DIRNAME}/
|
zip -r ${RELEASE_DIRNAME}_linux.zip ${RELEASE_DIRNAME}/
|
||||||
rm -rf ${RELEASE_DIRNAME}
|
rm -rf ${RELEASE_DIRNAME}
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ windows:
|
||||||
cargo build --release --target=${TARGET_W64}
|
cargo build --release --target=${TARGET_W64}
|
||||||
mkdir ${RELEASE_DIRNAME}_win
|
mkdir ${RELEASE_DIRNAME}_win
|
||||||
cp target/${TARGET_W64}/release/${BIN_NAME}.exe ${RELEASE_DIRNAME}_win/
|
cp target/${TARGET_W64}/release/${BIN_NAME}.exe ${RELEASE_DIRNAME}_win/
|
||||||
cp -r assets levels ${RELEASE_DIRNAME}_win/
|
cp -r assets levels CHANGELOG.md ${RELEASE_DIRNAME}_win/
|
||||||
zip -r ${RELEASE_DIRNAME}_win.zip ${RELEASE_DIRNAME}_win/
|
zip -r ${RELEASE_DIRNAME}_win.zip ${RELEASE_DIRNAME}_win/
|
||||||
rm -rf ${RELEASE_DIRNAME}_win
|
rm -rf ${RELEASE_DIRNAME}_win
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue