Browse Source

Remove the untracked DS_Store file

DreamPiggy 6 years ago
parent
commit
d1be404b63

BIN
.DS_Store


+ 2 - 0
.gitignore

@@ -1,3 +1,5 @@
+# OS X
+.DS_Store
 # Xcode
 #
 build/

+ 1 - 1
Examples/SDWebImage Demo/DetailViewController.m

@@ -25,7 +25,7 @@
                       placeholderImage:nil
                                options:SDWebImageProgressiveLoad];
     self.imageView.shouldCustomLoopCount = YES;
-    self.imageView.animationRepeatCount = NSIntegerMax;
+    self.imageView.animationRepeatCount = 0;
 }
 
 - (void)viewDidLoad {

+ 1 - 1
Examples/SDWebImage Demo/MasterViewController.m

@@ -63,7 +63,6 @@
         [SDWebImageDownloader sharedDownloader].config.executionOrder = SDWebImageDownloaderLIFOExecutionOrder;
         
         self.objects = [NSMutableArray arrayWithObjects:
-                    @"https://s2.ax1x.com/2019/11/01/KHYIgJ.gif",
                     @"http://www.httpwatch.com/httpgallery/authentication/authenticatedimage/default.aspx?0.35786508303135633",     // requires HTTP auth, used to demo the NTLM auth
                     @"http://assets.sbnation.com/assets/2512203/dogflops.gif",
                     @"https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif",
@@ -75,6 +74,7 @@
                     @"https://isparta.github.io/compare-webp/image/gif_webp/webp/2.webp",
                     @"https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic",
                     @"https://nokiatech.github.io/heif/content/image_sequences/starfield_animation.heic",
+                    @"https://s2.ax1x.com/2019/11/01/KHYIgJ.gif",
                     @"https://nr-platform.s3.amazonaws.com/uploads/platform/published_extension/branding_icon/275/AmazonS3.png",
                     @"http://via.placeholder.com/200x200.jpg",
                     nil];

BIN
SDWebImage/.DS_Store