Touchup app naming to be more consistent

This commit is contained in:
markmental 2026-03-29 22:54:04 -04:00
commit 126469df76
3 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
set -e
APP_NAME="Passport-C-Media-Player"
APP_NAME="FreePassport-C-Media-Player"
APP_VERSION="0.1"
# Colors for output
@ -63,7 +63,7 @@ fi
# Create desktop file directly in script (avoids copy conflicts)
cat > AppDir/passport-c-media-player.desktop << 'EOF'
[Desktop Entry]
Name=Passport-C Media Player
Name=FreePassport-C Media Player
Comment=Turn your media library into an early 2000s cable box TV guide
Exec=passport-c-media-player
Icon=passport-c-media-player
@ -106,7 +106,7 @@ echo -e "${GREEN}Creating AppImage for ${ARCH}...${NC}"
# Rename output file
# Use wildcard to find whatever AppImage was created (handles underscore/dash variations)
for file in Passport*.AppImage; do
for file in FreePassport-C_Media_Player-*.AppImage; do
if [ -f "$file" ]; then
mv "$file" "${OUTPUT_NAME}"
break