mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-20 16:22:04 +00:00
release
This commit is contained in:
parent
aaa32f9d88
commit
5dcdfebddb
3 changed files with 12 additions and 4 deletions
|
|
@ -30,6 +30,14 @@
|
||||||
"https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/search-portrait.png?raw=true"
|
"https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/search-portrait.png?raw=true"
|
||||||
],
|
],
|
||||||
"versions": [
|
"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",
|
"version": "0.6.0-beta.6",
|
||||||
"buildVersion": "6",
|
"buildVersion": "6",
|
||||||
|
|
@ -50,8 +58,7 @@
|
||||||
"appPermissions": {
|
"appPermissions": {
|
||||||
"entitlements": [],
|
"entitlements": [],
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"NSLocalNetworkUsageDescription": "App uses the local network to discover and connect to devices.",
|
"NSLocalNetworkUsageDescription": "App uses the local network to discover and connect to devices."
|
||||||
"NSMicrophoneUsageDescription": "This app does not require microphone access."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -582,7 +582,7 @@ const SettingsScreen: React.FC = () => {
|
||||||
/>
|
/>
|
||||||
<SettingItem
|
<SettingItem
|
||||||
title="Version"
|
title="Version"
|
||||||
description="0.6.0-beta.6"
|
description="0.6.0-beta.7"
|
||||||
icon="info-outline"
|
icon="info-outline"
|
||||||
isLast={true}
|
isLast={true}
|
||||||
isTablet={isTablet}
|
isTablet={isTablet}
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,8 @@ print_success "Updated app.json"
|
||||||
|
|
||||||
# Update SettingsScreen.tsx
|
# Update SettingsScreen.tsx
|
||||||
print_status "Updating 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"
|
print_success "Updated SettingsScreen.tsx"
|
||||||
|
|
||||||
# Update Info.plist
|
# Update Info.plist
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue