mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
Merge branch 'ab/fqueue_stage' into devel
This commit is contained in:
+774
-132
File diff suppressed because it is too large
Load Diff
+2
-1
@@ -16,7 +16,8 @@
|
||||
+ (BOOL) isGravatarEnabled;
|
||||
+ (BOOL) confirmPublicGists;
|
||||
+ (BOOL) isGistPublic;
|
||||
+ (BOOL)showWhitespaceDifferences;
|
||||
+ (BOOL) showWhitespaceDifferences;
|
||||
+ (BOOL) refreshAutomatically;
|
||||
+ (BOOL)openCurDirOnLaunch;
|
||||
+ (BOOL)showOpenPanelOnLaunch;
|
||||
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
#define kConfirmPublicGists @"PBConfirmPublicGists"
|
||||
#define kPublicGist @"PBGistPublic"
|
||||
#define kShowWhitespaceDifferences @"PBShowWhitespaceDifferences"
|
||||
#define kRefreshAutomatically @"PBRefreshAutomatically"
|
||||
#define kOpenCurDirOnLaunch @"PBOpenCurDirOnLaunch"
|
||||
#define kShowOpenPanelOnLaunch @"PBShowOpenPanelOnLaunch"
|
||||
|
||||
@@ -67,6 +68,11 @@
|
||||
return [[NSUserDefaults standardUserDefaults] boolForKey:kPublicGist];
|
||||
}
|
||||
|
||||
+ (BOOL) refreshAutomatically
|
||||
{
|
||||
return [[NSUserDefaults standardUserDefaults] boolForKey:kRefreshAutomatically];
|
||||
}
|
||||
|
||||
+ (BOOL)showWhitespaceDifferences
|
||||
{
|
||||
return [[NSUserDefaults standardUserDefaults] boolForKey:kShowWhitespaceDifferences];
|
||||
|
||||
Reference in New Issue
Block a user