-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BackupFolder #958
Open
maxiaoping
wants to merge
25
commits into
master
Choose a base branch
from
BackupFolder
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
BackupFolder #958
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
e5999d2
Selecting a Backup Directory
maxiaoping e030f77
Add a folder backup module
maxiaoping a4dd5d3
The backup upload information is added to Settings
maxiaoping 629c872
Update Select or cancel a backup folder
maxiaoping 8c52068
Updating a backup folder
maxiaoping 762fbbb
Updated the folder backup
maxiaoping 04e0870
Update backup folder
maxiaoping 0d2e842
update backup folder
maxiaoping f078f02
Updated folder backup and added global exception capture
maxiaoping ea8929a
Updated the backup folder name
maxiaoping c79956a
Folder backup reconstruction
maxiaoping 793341d
Update folder backup
maxiaoping 5fb7f9c
Updated the backup folder name
maxiaoping 351d3cf
Update folder backup message notification
maxiaoping b4c6886
Update the display of folder backup status
maxiaoping 7c07fcd
Update folder backup
maxiaoping 1e1e1ac
Update folder backup
maxiaoping 334f227
Update the folder backup logic
maxiaoping 8a09388
Update the display of folder backup status
maxiaoping 2eab112
Updated the folder backup and photo sync display status logic
maxiaoping 1d18bbd
Update backup folder FileAlterationMonitor
maxiaoping 114c7ba
Updated the folder backup interface
maxiaoping 2d24915
Update folder backup observer
maxiaoping 0ac4f40
Update the folder backup upload link
maxiaoping cbad36e
Update the folder backup transfer tag
maxiaoping File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
app/src/main/java/com/seafile/seadroid2/folderbackup/FolderBackupEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.seafile.seadroid2.folderbackup; | ||
|
||
public class FolderBackupEvent { | ||
private String backupInfo; | ||
|
||
public FolderBackupEvent(String backupInfo) { | ||
this.backupInfo = backupInfo; | ||
} | ||
|
||
public String getBackupInfo() { | ||
return backupInfo; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"String[]buckModes=". 这里少了不少空格
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已修改