mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
change in ipa bundleID
This commit is contained in:
parent
98b7defef6
commit
b89c5b7b4f
2 changed files with 4 additions and 4 deletions
|
|
@ -11,7 +11,7 @@
|
||||||
"apps": [
|
"apps": [
|
||||||
{
|
{
|
||||||
"name": "Nuvio",
|
"name": "Nuvio",
|
||||||
"bundleIdentifier": "com.nuvio.app",
|
"bundleIdentifier": "com.nuvio.hub",
|
||||||
"developerName": "Tapframe",
|
"developerName": "Tapframe",
|
||||||
"subtitle": "Media player and discovery app",
|
"subtitle": "Media player and discovery app",
|
||||||
"localizedDescription": "Nuvio is a media player and metadata discovery application for user-provided and user-installed sources.",
|
"localizedDescription": "Nuvio is a media player and metadata discovery application for user-provided and user-installed sources.",
|
||||||
|
|
|
||||||
|
|
@ -289,7 +289,7 @@ const DonorCard: React.FC<DonorCardProps> = ({ donor, currentTheme, isTablet })
|
||||||
{ color: currentTheme.colors.mediumEmphasis },
|
{ color: currentTheme.colors.mediumEmphasis },
|
||||||
isTablet && styles.tabletContributions
|
isTablet && styles.tabletContributions
|
||||||
]}>
|
]}>
|
||||||
{donor.amount.toFixed(2)} {donor.currency} · {formatDonationDate(donor.date)}
|
{formatDonationDate(donor.date)}
|
||||||
</Text>
|
</Text>
|
||||||
{donor.message ? (
|
{donor.message ? (
|
||||||
<Text style={[styles.donorMessage, { color: currentTheme.colors.mediumEmphasis }]}>
|
<Text style={[styles.donorMessage, { color: currentTheme.colors.mediumEmphasis }]}>
|
||||||
|
|
@ -876,7 +876,7 @@ const ContributorsScreen: React.FC = () => {
|
||||||
{ color: currentTheme.colors.mediumEmphasis },
|
{ color: currentTheme.colors.mediumEmphasis },
|
||||||
isTablet && styles.tabletContributions
|
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>
|
||||||
<Text style={[styles.donorMessage, { color: currentTheme.colors.mediumEmphasis }]}>
|
<Text style={[styles.donorMessage, { color: currentTheme.colors.mediumEmphasis }]}>
|
||||||
Rank #{entry.rank} · Last: {formatDonationDate(entry.lastDate)}
|
Rank #{entry.rank} · Last: {formatDonationDate(entry.lastDate)}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue