This commit is contained in:
tapframe 2025-09-03 16:27:26 +05:30
parent aaa32f9d88
commit 5dcdfebddb
3 changed files with 12 additions and 4 deletions

View file

@ -30,6 +30,14 @@
"https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/search-portrait.png?raw=true"
],
"versions": [
{
"version": "0.6.0-beta.7",
"buildVersion": "7",
"date": "2025-09-03",
"localizedDescription": "• Added new Hero Section layout for mobile devices. Users can now choose between the old (legacy) layout and a new swipeable carousel-based layout.\n• Expanded HomeScreen customization:\n - Option to enable/disable text under posters.\n - Option to adjust poster size and corner radius.\n• Minor UI changes and code fixes.",
"downloadURL": "https://github.com/tapframe/NuvioStreaming/releases/download/0.6.0-beta.7/Beta_0_6_0_7.ipa",
"size": 29700000
},
{
"version": "0.6.0-beta.6",
"buildVersion": "6",
@ -50,8 +58,7 @@
"appPermissions": {
"entitlements": [],
"privacy": {
"NSLocalNetworkUsageDescription": "App uses the local network to discover and connect to devices.",
"NSMicrophoneUsageDescription": "This app does not require microphone access."
"NSLocalNetworkUsageDescription": "App uses the local network to discover and connect to devices."
}
}
}

View file

@ -582,7 +582,7 @@ const SettingsScreen: React.FC = () => {
/>
<SettingItem
title="Version"
description="0.6.0-beta.6"
description="0.6.0-beta.7"
icon="info-outline"
isLast={true}
isTablet={isTablet}

View file

@ -113,7 +113,8 @@ print_success "Updated app.json"
# Update SettingsScreen.tsx
print_status "Updating SettingsScreen.tsx..."
sed -i '' "s/description=\"[0-9]\+\.[0-9]\+\.[0-9]\+\(-[^\"]*\)\?\"/description=\"$NEW_VERSION\"/g" "$SETTINGS_SCREEN"
# Note: Use BSD sed compatible regex on macOS. Enable extended regex with -E.
sed -E -i '' "s/description=\"[0-9]+\.[0-9]+\.[0-9]+(-[^\"]*)?\"/description=\"$NEW_VERSION\"/g" "$SETTINGS_SCREEN"
print_success "Updated SettingsScreen.tsx"
# Update Info.plist