Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/bestwnh/qlstephen into be…
Browse files Browse the repository at this point in the history
…stwnh-master
  • Loading branch information
tsdorsey committed Apr 19, 2016
2 parents ce8ce7f + 9aa967b commit ffd45a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions QuickLookStephenProject/QLSFileAttributes.m
Expand Up @@ -21,6 +21,11 @@ @implementation QLSFileAttributes

+ (instancetype)attributesForItemAtURL:(NSURL *)aURL
{
if ([aURL.lastPathComponent isEqualToString:@".DS_Store"]) {
NSLog(@"Ignore the .DS_Store file.");
return nil;
}

NSString *magicString = [self magicStringForItemAtURL:aURL];
if (!magicString) return nil;

Expand Down
Expand Up @@ -8,7 +8,7 @@

/* Begin PBXBuildFile section */
0107ABFF15C76F2900C65F1A /* QLSFileAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 0107ABFD15C76F2900C65F1A /* QLSFileAttributes.m */; };
0149EB3B15F2E8E4003AB298 /* RegexKitLite.m in Sources */ = {isa = PBXBuildFile; fileRef = 0149EB3915F2E8E4003AB298 /* RegexKitLite.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
0149EB3B15F2E8E4003AB298 /* RegexKitLite.m in Sources */ = {isa = PBXBuildFile; fileRef = 0149EB3915F2E8E4003AB298 /* RegexKitLite.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc -w -Xanalyzer -analyzer-disable-all-checks"; }; };
0149EB3E15F2E9A3003AB298 /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 0149EB3D15F2E9A3003AB298 /* libicucore.dylib */; };
2C05A19C06CAA52B00D84F6F /* GeneratePreviewForURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C05A19B06CAA52B00D84F6F /* GeneratePreviewForURL.m */; };
61E3BCFB0870B4F2002186A0 /* GenerateThumbnailForURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 61E3BCFA0870B4F2002186A0 /* GenerateThumbnailForURL.m */; };
Expand Down

0 comments on commit ffd45a6

Please sign in to comment.