mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-24 22:16:14 -04:00
Lives just save the ball once and show as a line.
This commit is contained in:
parent
752a5713d7
commit
2b9bb30000
5 changed files with 6626 additions and 2805 deletions
|
@ -17,6 +17,7 @@ set -x
|
|||
# the version number is just a unix timestamp in minutes
|
||||
versionCode=$(($(date +%s) / 60))
|
||||
|
||||
|
||||
# Replace the version code and name in gradle for fdroid and play store
|
||||
sed -i -e "s/^[[:space:]]*versionCode = .*/ versionCode = $versionCode/" \
|
||||
-e "s/^[[:space:]]*versionName = .*/ versionName = \"$versionCode\"/" \
|
||||
|
@ -27,6 +28,9 @@ echo "\"$versionCode\"" > src/version.json
|
|||
# remove all exif metadata from pictures, because i think fdroid doesn't like that. odd
|
||||
find -name '*.jp*g' -o -name '*.png' | xargs exiftool -all=
|
||||
|
||||
# expose the git log to the app itself
|
||||
git log --pretty=format:' %s' > src/git-log.txt
|
||||
|
||||
npx prettier --write src/
|
||||
|
||||
npm run build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue