refactoring app name to spacetris and new icon

This commit is contained in:
2025-12-21 10:29:01 +01:00
parent 18c29fed1e
commit a6c2c78cb5
26 changed files with 402 additions and 951 deletions

View File

@ -1,13 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
# Create a distributable DMG for the macOS Tetris app
# Create a distributable DMG for the macOS Spacetris app
# Usage: ./scripts/create-dmg.sh <app-bundle-path> <output-dmg>
# Example: ./scripts/create-dmg.sh dist/TetrisGame-mac/tetris.app dist/TetrisGame.dmg
# Example: ./scripts/create-dmg.sh dist/SpacetrisGame-mac/spacetris.app dist/SpacetrisGame.dmg
if [[ $# -lt 2 ]]; then
echo "Usage: $0 <app-bundle-path> <output-dmg>"
echo "Example: $0 dist/TetrisGame-mac/tetris.app dist/TetrisGame.dmg"
echo "Example: $0 dist/SpacetrisGame-mac/spacetris.app dist/SpacetrisGame.dmg"
exit 1
fi