From 126469df76fd7114855f0d510bf9a49066ea9fd0 Mon Sep 17 00:00:00 2001 From: markmental Date: Sun, 29 Mar 2026 22:54:04 -0400 Subject: [PATCH] Touchup app naming to be more consistent --- build-appimage.sh | 6 +++--- src/app.c | 2 +- src/ui.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build-appimage.sh b/build-appimage.sh index b49adcc..4dfb307 100755 --- a/build-appimage.sh +++ b/build-appimage.sh @@ -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 diff --git a/src/app.c b/src/app.c index 603f370..dd8dbcc 100644 --- a/src/app.c +++ b/src/app.c @@ -428,7 +428,7 @@ int app_init(App *app) { return -1; } - app->window = SDL_CreateWindow("Passport-C Media Player", + app->window = SDL_CreateWindow("FreePassport-C Media Player", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, WINDOW_WIDTH, diff --git a/src/ui.c b/src/ui.c index a1e14c5..0ce6bc2 100644 --- a/src/ui.c +++ b/src/ui.c @@ -1217,7 +1217,7 @@ int ui_cache_init(UiCache *cache, SDL_Renderer *renderer, const UiFonts *fonts, return -1; } - if (text_texture_init(&cache->no_media_title, renderer, fonts->large, "Passport-C Media Player", COLOR_TEXT_LIGHT) != 0 || + if (text_texture_init(&cache->no_media_title, renderer, fonts->large, "FreePassport-C Media Player", COLOR_TEXT_LIGHT) != 0 || text_texture_init(&cache->no_media_body, renderer, fonts->medium, "No channels found in ./media", COLOR_HIGHLIGHT_YELLOW) != 0 || text_texture_init(&cache->no_media_hint, renderer, fonts->small, "Add MP4 or MKV files to ./media and relaunch.", COLOR_PALE_BLUE) != 0 || text_texture_init(&cache->footer_a, renderer, fonts->medium, "A", COLOR_TEXT_DARK) != 0 ||