From cc3a1189434ef6c2a945cf4a7edc16b82854b03c Mon Sep 17 00:00:00 2001 From: Matt Chowning Date: Thu, 27 Jul 2023 11:33:43 -0400 Subject: [PATCH 1/2] Remove references to auto download on watch --- .../services/localization/src/main/res/values/strings.xml | 2 ++ .../pocketcasts/wear/ui/settings/SettingsScreen.kt | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/services/localization/src/main/res/values/strings.xml b/modules/services/localization/src/main/res/values/strings.xml index 5e162689ea0..2c79865615a 100644 --- a/modules/services/localization/src/main/res/values/strings.xml +++ b/modules/services/localization/src/main/res/values/strings.xml @@ -1188,7 +1188,9 @@ We can no longer support custom folders for storage on Android 10+. We have switched your storage option back to your phones default. Background refresh Pocket Casts will only refresh when you open the app.\n\nEpisode notifications and auto downloads will only happen when you open the app. + Pocket Casts will only sync your account when you open the app. Pocket Casts will periodically check for new episodes and auto downloads in the background. + Pocket Casts will periodically sync your account in the background. Clearing download cache Clear download cache Custom Folder diff --git a/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt b/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt index bd911b68125..7442e703821 100644 --- a/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt +++ b/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt @@ -95,8 +95,12 @@ private fun Content( ) } - val backgroundRefreshStringRes = - if (state.refreshInBackground) LR.string.settings_storage_background_refresh_on else LR.string.settings_storage_background_refresh_off + val backgroundRefreshStringRes = if (state.refreshInBackground) { + LR.string.settings_storage_background_refresh_on_watch + } else { + LR.string.settings_storage_background_refresh_off_watch + } + item { ToggleChip( label = stringResource(LR.string.settings_storage_background_refresh), From e6daf957cd4317557462df02bbfc02634bf43ed4 Mon Sep 17 00:00:00 2001 From: Matt Chowning Date: Thu, 27 Jul 2023 13:37:34 -0400 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8bedbb60aa..6f30e9100d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,8 @@ ([#1209](https://github.com/Automattic/pocket-casts-android/pull/1209)) * Fixed upgrade flow when signing in with Google account ([#1204](https://github.com/Automattic/pocket-casts-android/pull/1204)) - + * Fixed watch background refresh description to not reference auto downloads + ([#1212](https://github.com/Automattic/pocket-casts-android/pull/1212)) 7.44 -----