From 25a495865a5c0ec6f27bf1f86aa4313eaf8329c3 Mon Sep 17 00:00:00 2001 From: Philip Simpson Date: Tue, 2 Aug 2022 15:25:53 +0930 Subject: [PATCH 1/2] Fixing folder migration sync issue with the podcast sort positions. --- RELEASE-NOTES.md | 5 +++++ dependencies.gradle | 2 +- .../au/com/shiftyjelly/pocketcasts/preferences/Settings.kt | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 884c278ce47..f62be8e8ec4 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -2,6 +2,11 @@ ### 7.20.0 +* Bug Fixes: + * Fix an issue where the podcasts order was being changed after migrating to the latest version. + +### 7.20.0 + * New Features: * Folders! * Health: diff --git a/dependencies.gradle b/dependencies.gradle index fd3aaed0090..b92c1de0cf8 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -26,7 +26,7 @@ project.ext { applicationId = 'au.com.shiftyjelly.pocketcasts' versionCode = getVersionCode() - versionName = '7.20.0' + getVersionNameSuffix() + versionName = '7.20.1' + getVersionNameSuffix() // Android minSdkVersion = 23 diff --git a/modules/services/preferences/src/main/java/au/com/shiftyjelly/pocketcasts/preferences/Settings.kt b/modules/services/preferences/src/main/java/au/com/shiftyjelly/pocketcasts/preferences/Settings.kt index 83c8e6aaaef..a5e98b925d6 100644 --- a/modules/services/preferences/src/main/java/au/com/shiftyjelly/pocketcasts/preferences/Settings.kt +++ b/modules/services/preferences/src/main/java/au/com/shiftyjelly/pocketcasts/preferences/Settings.kt @@ -48,7 +48,7 @@ interface Settings { const val SERVER_DEVICE_TYPE = "2" const val SYNC_API_VERSION = 2 const val SYNC_HISTORY_VERSION = 1 - const val SYNC_API_MODEL = "android" + const val SYNC_API_MODEL = "mobile" const val LAST_UPDATE_TIME = "LastUpdateTime" const val LAST_SYNC_TIME = "LastSyncTime" const val PREFERENCE_SKIP_FORWARD = "skipForward" From 6a837fb8c3b90b58fbd2c97873b2dcec349dfcdc Mon Sep 17 00:00:00 2001 From: Philip Simpson Date: Tue, 2 Aug 2022 16:28:39 +0930 Subject: [PATCH 2/2] Fixed version number --- RELEASE-NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index f62be8e8ec4..ff1ae21eebb 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,6 +1,6 @@ # Release notes -### 7.20.0 +### 7.20.1 * Bug Fixes: * Fix an issue where the podcasts order was being changed after migrating to the latest version.