change in ipa bundleID

This commit is contained in:
tapframe 2026-03-06 09:10:09 +05:30
parent 98b7defef6
commit b89c5b7b4f
2 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@
"apps": [
{
"name": "Nuvio",
"bundleIdentifier": "com.nuvio.app",
"bundleIdentifier": "com.nuvio.hub",
"developerName": "Tapframe",
"subtitle": "Media player and discovery app",
"localizedDescription": "Nuvio is a media player and metadata discovery application for user-provided and user-installed sources.",

View file

@ -289,7 +289,7 @@ const DonorCard: React.FC<DonorCardProps> = ({ donor, currentTheme, isTablet })
{ color: currentTheme.colors.mediumEmphasis },
isTablet && styles.tabletContributions
]}>
{donor.amount.toFixed(2)} {donor.currency} · {formatDonationDate(donor.date)}
{formatDonationDate(donor.date)}
</Text>
{donor.message ? (
<Text style={[styles.donorMessage, { color: currentTheme.colors.mediumEmphasis }]}>
@ -876,7 +876,7 @@ const ContributorsScreen: React.FC = () => {
{ color: currentTheme.colors.mediumEmphasis },
isTablet && styles.tabletContributions
]}>
{entry.total.toFixed(2)} {entry.currency} · {entry.count} {entry.count === 1 ? 'donation' : 'donations'}
{entry.count} {entry.count === 1 ? 'donation' : 'donations'}
</Text>
<Text style={[styles.donorMessage, { color: currentTheme.colors.mediumEmphasis }]}>
Rank #{entry.rank} · Last: {formatDonationDate(entry.lastDate)}