-
Notifications
You must be signed in to change notification settings - Fork 77
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
Allow backup opt out #121
Open
aodhol
wants to merge
10
commits into
spotify:master
Choose a base branch
from
aodhol:allow-backup-opt-out
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
Allow backup opt out #121
Changes from 2 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3874614
Add option for excluding the cache directory from backup
aodh-spt 01899eb
Set the 'do not backup' resource value for the directory
aodh-spt 3337742
Bump version strings
aodh-spt 30f0da1
Add new option to description
aodh-spt ece3d0a
Make comment clearer
aodh-spt 228adb1
Set the resource value each time
aodh-spt c8988ee
Bump version
aodh-spt defb567
Update change log
aodh-spt 4346242
Fix error in example
aodh-spt e87d87a
Update version
aodh-spt 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,14 @@ FOUNDATION_EXPORT const NSUInteger SPTPersistentCacheMinimumExpirationLimit; | |
*/ | ||
@property (nonatomic, copy) NSString *cachePath; | ||
|
||
/** | ||
Excludes the cache directory from backup. | ||
@discussion Some users may wish to have the cache directory excluded from backup. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @aodhol In order to avoid any confusion, would be nice to mention the default value here maybe. |
||
@note This will only affect the first time the cache directory is created. Changing this value later will have no effect and would require the removal of the | ||
cache directory in order to change. | ||
*/ | ||
@property (nonatomic, assign) BOOL shouldExcludeFromBackup; | ||
|
||
/** | ||
Whether directory separation of cache records should be used. | ||
@discussion When enabled cached records are separate into direcectories based on the first two (2) characters in | ||
|
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.
@aodhol You probably need to provide the deep copy of this.You have it down there incopyWithZone
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.
Not super important but would be nice to include it in
debugDescription
.