Touchup app naming to be more consistent
This commit is contained in:
parent
ee8bf2dd0b
commit
126469df76
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
2
src/ui.c
2
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 ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue