From 2557d82965b9a48f1c37b62e034cd4619d799754 Mon Sep 17 00:00:00 2001 From: marekf2236 Date: Sat, 13 May 2023 19:28:31 +0200 Subject: [PATCH] feat: add remote sync capability - add info button in login dialog Co-Authored-By: Martin Filo <10731497+chiff@users.noreply.github.com> --- .../cloudstream3/syncproviders/providers/GoogleDriveApi.kt | 6 +++--- app/src/main/res/values/strings.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GoogleDriveApi.kt b/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GoogleDriveApi.kt index 1b6d52d4..513c79d4 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GoogleDriveApi.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/syncproviders/providers/GoogleDriveApi.kt @@ -39,7 +39,6 @@ import java.util.Date * * | State | Priority | Description * |---------:|:--------:|--------------------------------------------------------------------- - * | Waiting | 3 | Move "https://chiff.github.io/cloudstream-sync/google-drive" * | Someday | 4 | Add button to manually trigger sync * | Someday | 5 | Choose what should be synced and recheck `invalidKeys` in createBackupScheduler * | Someday | 3 | Add option to use proper OAuth through Google Services One Tap @@ -53,6 +52,7 @@ import java.util.Date * | Solved | 1 | Fix sync/restore bugs * | Solved | 1 | When scheduler has queued upload job (but is not working in backupApi * | | | yet) we should postpone download and prioritize upload + * | Solved | 3 | Move "https://chiff.github.io/cloudstream-sync/google-drive" */ class GoogleDriveApi(index: Int) : InAppOAuth2APIManager(index), @@ -71,8 +71,8 @@ class GoogleDriveApi(index: Int) : override val requiresSecret = true override val requiresClientId = true override val defaultFilenameValue = "cloudstreamapp-sync-file" - override val defaultRedirectUrl = "https://chiff.github.io/cloudstream-sync/google-drive" - override val infoUrl = "https://chiff.github.io/cloudstream-sync/google-drive/help.html" + override val defaultRedirectUrl = "https://recloudstream.github.io/cloudstream-sync/google-drive" + override val infoUrl = "https://recloudstream.github.io/cloudstream-sync/google-drive/help.html" override var isActive: Boolean? = false override var willQueueSoon: Boolean? = false diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 25a2592d..1fd95e84 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -666,6 +666,6 @@ Episode %d released! Sync file name (optional) Oauth redirect url (optional) - https://chiff.github.io/cloudstream-sync/google-drive + https://recloudstream.github.io/cloudstream-sync/google-drive Info \ No newline at end of file