Lives just save the ball once and show as a line.

This commit is contained in:
Renan LE CARO 2025-03-12 15:15:30 +01:00
parent 752a5713d7
commit 2b9bb30000
5 changed files with 6626 additions and 2805 deletions

View file

@ -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