Skip to content

Commit 7bf3a34

Browse files
committed
release: 1.3.5 (33)
1 parent 14e8e90 commit 7bf3a34

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ android {
9595
applicationId 'com.nuvio.app'
9696
minSdkVersion rootProject.ext.minSdkVersion
9797
targetSdkVersion rootProject.ext.targetSdkVersion
98-
versionCode 32
99-
versionName "1.3.4"
98+
versionCode 33
99+
versionName "1.3.5"
100100

101101
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
102102
}
@@ -118,7 +118,7 @@ android {
118118
def abiVersionCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2, 'x86': 3, 'x86_64': 4]
119119
applicationVariants.all { variant ->
120120
variant.outputs.each { output ->
121-
def baseVersionCode = 32 // Current versionCode 32 from defaultConfig
121+
def baseVersionCode = 33 // Current versionCode 33 from defaultConfig
122122
def abiName = output.getFilter(com.android.build.OutputFile.ABI)
123123

124124
def versionCode = baseVersionCode * 100 // Base multiplier

android/app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<string name="expo_splash_screen_resize_mode" translatable="false">contain</string>
44
<string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string>
55
<string name="expo_system_ui_user_interface_style" translatable="false">dark</string>
6-
<string name="expo_runtime_version">1.3.4</string>
6+
<string name="expo_runtime_version">1.3.5</string>
77
</resources>

app.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "Nuvio",
44
"slug": "nuvio",
5-
"version": "1.3.4",
5+
"version": "1.3.5",
66
"orientation": "default",
77
"backgroundColor": "#020404",
88
"icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png",
@@ -17,7 +17,7 @@
1717
"ios": {
1818
"supportsTablet": true,
1919
"icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png",
20-
"buildNumber": "32",
20+
"buildNumber": "33",
2121
"infoPlist": {
2222
"NSAppTransportSecurity": {
2323
"NSAllowsArbitraryLoads": true
@@ -51,7 +51,7 @@
5151
"android.permission.WRITE_SETTINGS"
5252
],
5353
"package": "com.nuvio.app",
54-
"versionCode": 32,
54+
"versionCode": 33,
5555
"architectures": [
5656
"arm64-v8a",
5757
"armeabi-v7a",
@@ -97,6 +97,6 @@
9797
"fallbackToCacheTimeout": 30000,
9898
"url": "https://ota.nuvioapp.space/api/manifest"
9999
},
100-
"runtimeVersion": "1.3.4"
100+
"runtimeVersion": "1.3.5"
101101
}
102102
}

nuvio-source.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
"https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/search-portrait.png?raw=true"
3131
],
3232
"versions": [
33+
{
34+
"version": "1.3.5",
35+
"buildVersion": "33",
36+
"date": "2026-01-09",
37+
"localizedDescription": "## Update Notes\n\n### ExoPlayer Subtitle Fixes\nThis update mainly focuses on fixing multiple subtitle-related issues in ExoPlayer:\n- Fixed issue where **only the first subtitle index** was being rendered \n- Fixed subtitles **always showing background** due to Android native caption settings \n- Fixed subtitles being **rendered inside the player view** \n- Fixed **subtitle bottom offset** issues \n- Merged PR **#391** by **@saifshaikh1805** \n - Fixes issue **#301**\n\n### KSPlayer Improvements\n- Improved **subtitle behavior** in KSPlayer \n- Merged PR **#394** by **@AdityasahuX07**\n\n### Settings & Persistence\n- Implemented **save and load** functionality for **Discover settings**\n\nThis release improves subtitle rendering accuracy across players and adds better persistence for user preferences.",
38+
"downloadURL": "https://github.com/tapframe/NuvioStreaming/releases/download/v1.3.5/app-release.apk",
39+
"size": 25700000
40+
},
3341
{
3442
"version": "1.3.4",
3543
"buildVersion": "32",

src/screens/SearchScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const DISCOVER_GENRE_KEY = 'discover_selected_genre';
6161

6262
const SearchScreen = () => {
6363
const { t } = useTranslation();
64-
const { settings, updateSettings } = useSettings();
64+
const { settings } = useSettings();
6565
const navigation = useNavigation<NavigationProp<RootStackParamList>>();
6666
const { addToWatchlist, removeFromWatchlist, addToCollection, removeFromCollection, isInWatchlist, isInCollection } = useTraktContext();
6767
const { showSuccess, showInfo } = useToast();

src/utils/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Single source of truth for the app version displayed in Settings
22
// Update this when bumping app version
33

4-
export const APP_VERSION = '1.3.4';
4+
export const APP_VERSION = '1.3.5';
55

66
export function getDisplayedAppVersion(): string {
77
return APP_VERSION;

0 commit comments

Comments
 (0)