mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
feat: add remote sync capability - add info button in login dialog
Co-Authored-By: Martin Filo <10731497+chiff@users.noreply.github.com>
This commit is contained in:
parent
13d9cee89b
commit
2557d82965
2 changed files with 4 additions and 4 deletions
|
@ -39,7 +39,6 @@ import java.util.Date
|
||||||
*
|
*
|
||||||
* | State | Priority | Description
|
* | State | Priority | Description
|
||||||
* |---------:|:--------:|---------------------------------------------------------------------
|
* |---------:|:--------:|---------------------------------------------------------------------
|
||||||
* | Waiting | 3 | Move "https://chiff.github.io/cloudstream-sync/google-drive"
|
|
||||||
* | Someday | 4 | Add button to manually trigger sync
|
* | Someday | 4 | Add button to manually trigger sync
|
||||||
* | Someday | 5 | Choose what should be synced and recheck `invalidKeys` in createBackupScheduler
|
* | 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
|
* | 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 | Fix sync/restore bugs
|
||||||
* | Solved | 1 | When scheduler has queued upload job (but is not working in backupApi
|
* | Solved | 1 | When scheduler has queued upload job (but is not working in backupApi
|
||||||
* | | | yet) we should postpone download and prioritize upload
|
* | | | yet) we should postpone download and prioritize upload
|
||||||
|
* | Solved | 3 | Move "https://chiff.github.io/cloudstream-sync/google-drive"
|
||||||
*/
|
*/
|
||||||
class GoogleDriveApi(index: Int) :
|
class GoogleDriveApi(index: Int) :
|
||||||
InAppOAuth2APIManager(index),
|
InAppOAuth2APIManager(index),
|
||||||
|
@ -71,8 +71,8 @@ class GoogleDriveApi(index: Int) :
|
||||||
override val requiresSecret = true
|
override val requiresSecret = true
|
||||||
override val requiresClientId = true
|
override val requiresClientId = true
|
||||||
override val defaultFilenameValue = "cloudstreamapp-sync-file"
|
override val defaultFilenameValue = "cloudstreamapp-sync-file"
|
||||||
override val defaultRedirectUrl = "https://chiff.github.io/cloudstream-sync/google-drive"
|
override val defaultRedirectUrl = "https://recloudstream.github.io/cloudstream-sync/google-drive"
|
||||||
override val infoUrl = "https://chiff.github.io/cloudstream-sync/google-drive/help.html"
|
override val infoUrl = "https://recloudstream.github.io/cloudstream-sync/google-drive/help.html"
|
||||||
|
|
||||||
override var isActive: Boolean? = false
|
override var isActive: Boolean? = false
|
||||||
override var willQueueSoon: Boolean? = false
|
override var willQueueSoon: Boolean? = false
|
||||||
|
|
|
@ -666,6 +666,6 @@
|
||||||
<string name="subscription_episode_released">Episode %d released!</string>
|
<string name="subscription_episode_released">Episode %d released!</string>
|
||||||
<string name="example_login_file_name_full">Sync file name (optional)</string>
|
<string name="example_login_file_name_full">Sync file name (optional)</string>
|
||||||
<string name="example_login_redirect_url_full">Oauth redirect url (optional)</string>
|
<string name="example_login_redirect_url_full">Oauth redirect url (optional)</string>
|
||||||
<string name="example_redirect_url" translatable="false">https://chiff.github.io/cloudstream-sync/google-drive</string>
|
<string name="example_redirect_url" translatable="false">https://recloudstream.github.io/cloudstream-sync/google-drive</string>
|
||||||
<string name="info_button">Info</string>
|
<string name="info_button">Info</string>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in a new issue