Skip to content

Commit

Permalink
Version 7.2
Browse files Browse the repository at this point in the history
Fixed NSMetadataQuery predicate filter for files without extensions, fixed ubiquity container bug, migrated to auto-synthesized @properties, enabled modules, new compiler checks for modules & ARC & SDK version.
  • Loading branch information
Sam Spencer committed Jan 25, 2014
1 parent 2f8851d commit c2e68e4
Show file tree
Hide file tree
Showing 109 changed files with 305 additions and 212 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md 100644 → 100755
Expand Up @@ -2,6 +2,16 @@
The following details changes made to iCloud Document Sync with each version. For more detailed information, see the Releases and Commits section of the GitHub project.

<table>
<tr><th colspan="2" style="text-align:center;"><b>Version 7.2</b></th></tr>
<tr>
<td>Fixed NSMetadataQuery predicate filter for files without extensions, fixed ubiquity container bug, migrated to auto-synthesized @properties, enabled modules (new compiler checks for modules), new compiler checks for ARC, new compiler checks for SDK version.
</td>
</tr>
<tr><th colspan="2" style="text-align:center;"><b>Version 7.1</b></th></tr>
<tr>
<td>Updated init method, fixed double-init of singleton, fixed bug when saving documents, new delegate method, fixed ubiquity URL bugs.
</td>
</tr>
<tr><th colspan="2" style="text-align:center;"><b>Version 7.0</b></th></tr>
<tr>
<td>Major changes in favor of stability and security. iCloud Document Sync is now a <b>singleton</b>. There are numerous new and updated methods. New delegate methods and protocols. New iCloudDocument features. Automated documentation and framework builds for easier contribution. Plus it fixes numerous bugs and adds an iOS Sample app.
Expand Down
Empty file modified CONTRIBUTING.md 100644 → 100755
Empty file.
Expand Up @@ -9,9 +9,9 @@
<key>CFBundleName</key>
<string>iCloud Framework Documentation</string>
<key>CFBundleShortVersionString</key>
<string>7.0</string>
<string>7.2</string>
<key>CFBundleVersion</key>
<string>7.0</string>
<string>7.2</string>



Expand All @@ -32,6 +32,6 @@
<key>DocSetPublisherName</key>
<string>iRare Media</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2013 iRare Media. All rights reserved.</string>
<string>Copyright © 2014 iRare Media. All rights reserved.</string>
</dict>
</plist>
Expand Up @@ -288,7 +288,7 @@ <h1 class="title title-header">iCloud Class Reference</h1>
<div class="section section-overview">
<a title="Overview" name="overview"></a>
<h2 class="subtitle subtitle-overview">Overview</h2>
<p>iCloud Document Sync helps integrate iCloud into iOS (OS X coming soon) Objective-C document projects with one-line code methods. Sync, upload, manage, and remove documents to and from iCloud with only a few lines of code (compared to the hundreds of lines and hours that it usually takes). Updates and more details on this project can be found on <a href="http://www.github.com/iRareMedia/iCloudDocumentSync">GitHub</a>. If you like the project, please <a href="https://github.com/iRareMedia/iCloudDocumentSync">star it</a> on GitHub!</p>
<p>iCloud Document Sync makes it easy for developers to integrate the iCloud document storage APIs into iOS applications. This is how iCloud document-storage and management should&rsquo;ve been out of the box from Apple. Integrate iCloud into iOS (OS X coming soon) Objective-C document projects with one-line code methods. Sync, upload, manage, and remove documents to and from iCloud with only a few lines of code (compared to the hundreds of lines and hours that it usually takes). Get iCloud up and running in your iOS app in only a few minutes. Updates and more details on this project can be found on <a href="http://www.github.com/iRareMedia/iCloudDocumentSync">GitHub</a>. If you like the project, please star it on GitHub!</p>

<p>The <code>iCloud</code> class provides methods to integrate iCloud into document projects.</p>

Expand All @@ -300,9 +300,9 @@ <h2 class="subtitle subtitle-overview">Overview</h2>
<li>Subscribe to the <a href="../Protocols/iCloudDelegate.html"><code>iCloudDelegate</code></a> <a href="#//api/name/delegate">delegate</a>.</li>
<li><p>Call the following methods to setup iCloud when your app starts:</p>

<pre><code> iCloud *cloud = [[iCloud sharedCloud] init]; // This will help to begin the sync process and register for document updates.
[cloud setDelegate:self]; // Set this if you plan to use the delegate
</code></pre></li>
<p> [[iCloud sharedCloud] setDelegate:self]; // Set this if you plan to use the delegate
[[iCloud sharedCloud] setVerboseLogging:YES]; // We want detailed feedback about what&rsquo;s going on with iCloud, this is OFF by default
[[iCloud sharedCloud] updateFiles]; // Force iCloud Update: This is done automatically when changes are made, but we want to make sure the view is always updated when presented</p></li>
</ol>
<div class="warning"><p><strong>Warning:</strong> Only available on iOS 5.1 and later on apps with valid code signing and entitlements. Requires Xcode 5.0.1 and later. Check the online documentation for more information on setting up iCloud in your app.</p></div>
</div>
Expand Down Expand Up @@ -2453,7 +2453,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
Expand Up @@ -452,7 +452,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
Expand Up @@ -1003,7 +1003,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
Expand Up @@ -211,7 +211,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
Expand Up @@ -79,7 +79,7 @@ <h2 class="index-title">Protocol References</h2>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
Expand Up @@ -69,7 +69,7 @@ <h2 class="index-title">Protocol References</h2>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

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

<Token>
<TokenIdentifier>//apple_ref/occ/cl/iCloud</TokenIdentifier>
<Abstract type="html">iCloud Document Sync helps integrate iCloud into iOS (OS X coming soon) Objective-C document projects with one-line code methods. Sync, upload, manage, and remove documents to and from iCloud with only a few lines of code (compared to the hundreds of lines and hours that it usually takes). Updates and more details on this project can be found on GitHub. If you like the project, please star it on GitHub!</Abstract>
<Abstract type="html">iCloud Document Sync makes it easy for developers to integrate the iCloud document storage APIs into iOS applications. This is how iCloud document-storage and management should&apos;ve been out of the box from Apple. Integrate iCloud into iOS (OS X coming soon) Objective-C document projects with one-line code methods. Sync, upload, manage, and remove documents to and from iCloud with only a few lines of code (compared to the hundreds of lines and hours that it usually takes). Get iCloud up and running in your iOS app in only a few minutes. Updates and more details on this project can be found on GitHub. If you like the project, please star it on GitHub!</Abstract>
<DeclaredIn>iCloud.h</DeclaredIn>

<NodeRef refid="1"/>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 changes: 5 additions & 5 deletions Documentation/html/Classes/iCloud.html
Expand Up @@ -288,7 +288,7 @@ <h1 class="title title-header">iCloud Class Reference</h1>
<div class="section section-overview">
<a title="Overview" name="overview"></a>
<h2 class="subtitle subtitle-overview">Overview</h2>
<p>iCloud Document Sync helps integrate iCloud into iOS (OS X coming soon) Objective-C document projects with one-line code methods. Sync, upload, manage, and remove documents to and from iCloud with only a few lines of code (compared to the hundreds of lines and hours that it usually takes). Updates and more details on this project can be found on <a href="http://www.github.com/iRareMedia/iCloudDocumentSync">GitHub</a>. If you like the project, please <a href="https://github.com/iRareMedia/iCloudDocumentSync">star it</a> on GitHub!</p>
<p>iCloud Document Sync makes it easy for developers to integrate the iCloud document storage APIs into iOS applications. This is how iCloud document-storage and management should&rsquo;ve been out of the box from Apple. Integrate iCloud into iOS (OS X coming soon) Objective-C document projects with one-line code methods. Sync, upload, manage, and remove documents to and from iCloud with only a few lines of code (compared to the hundreds of lines and hours that it usually takes). Get iCloud up and running in your iOS app in only a few minutes. Updates and more details on this project can be found on <a href="http://www.github.com/iRareMedia/iCloudDocumentSync">GitHub</a>. If you like the project, please star it on GitHub!</p>

<p>The <code>iCloud</code> class provides methods to integrate iCloud into document projects.</p>

Expand All @@ -300,9 +300,9 @@ <h2 class="subtitle subtitle-overview">Overview</h2>
<li>Subscribe to the <a href="../Protocols/iCloudDelegate.html"><code>iCloudDelegate</code></a> <a href="#//api/name/delegate">delegate</a>.</li>
<li><p>Call the following methods to setup iCloud when your app starts:</p>

<pre><code> iCloud *cloud = [[iCloud sharedCloud] init]; // This will help to begin the sync process and register for document updates.
[cloud setDelegate:self]; // Set this if you plan to use the delegate
</code></pre></li>
<p> [[iCloud sharedCloud] setDelegate:self]; // Set this if you plan to use the delegate
[[iCloud sharedCloud] setVerboseLogging:YES]; // We want detailed feedback about what&rsquo;s going on with iCloud, this is OFF by default
[[iCloud sharedCloud] updateFiles]; // Force iCloud Update: This is done automatically when changes are made, but we want to make sure the view is always updated when presented</p></li>
</ol>
<div class="warning"><p><strong>Warning:</strong> Only available on iOS 5.1 and later on apps with valid code signing and entitlements. Requires Xcode 5.0.1 and later. Check the online documentation for more information on setting up iCloud in your app.</p></div>
</div>
Expand Down Expand Up @@ -2453,7 +2453,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Classes/iCloudDocument.html
Expand Up @@ -452,7 +452,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Protocols/iCloudDelegate.html
Expand Up @@ -1003,7 +1003,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/Protocols/iCloudDocumentDelegate.html
Expand Up @@ -211,7 +211,7 @@ <h4 class="method-subtitle">Declared In</h4>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/hierarchy.html
Expand Up @@ -79,7 +79,7 @@ <h2 class="index-title">Protocol References</h2>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
2 changes: 1 addition & 1 deletion Documentation/html/index.html
Expand Up @@ -69,7 +69,7 @@ <h2 class="index-title">Protocol References</h2>
<div id="footer">
<hr />
<div class="footer-copyright">
<p><span class="copyright">&copy; 2013 iRare Media. All rights reserved. (Last updated: 2013-12-03)</span><br />
<p><span class="copyright">&copy; 2014 iRare Media. All rights reserved. (Last updated: 2014-01-25)</span><br />

<span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p>

Expand Down
Binary file not shown.
16 changes: 8 additions & 8 deletions Documentation/publish/iRareMedia.atom
@@ -1,20 +1,20 @@
<?xml version="1.0" standalone="no"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:docset="http://developer.apple.com/rss/docset_extensions" xml:lang="en">
<id>https://github.com/iRareMedia/iCloudDocumentSync/tree/master/Documentation//publish/iRareMedia.atom/20131203210755</id>
<id>https://github.com/iRareMedia/iCloudDocumentSync/tree/master/Documentation//publish/iRareMedia.atom/20140125001428</id>
<title type="text">iCloud Framework Documentation</title>
<rights>Copyright © 2013 iRare Media. All rights reserved.</rights>
<rights>Copyright © 2014 iRare Media. All rights reserved.</rights>
<link rel="self" href="https://github.com/iRareMedia/iCloudDocumentSync/tree/master/Documentation//publish/iRareMedia.atom"></link>
<docset:publisherName>iRare Media</docset:publisherName>
<docset:publisherID>com.iRareMedia.documentation</docset:publisherID>
<updated>2013-12-03T21:07:55-05:00</updated>
<updated>2014-01-25T00:14:28-05:00</updated>
<entry>
<id>tag:github.com,2013-12-03:com.iRareMedia.iCloud-Framework/7.0.0</id>
<id>tag:github.com,2014-01-25:com.iRareMedia.iCloud-Framework/7.2.0</id>
<title type="text">iCloud Framework Documentation</title>
<updated>2013-12-03T21:07:55-05:00</updated>
<content type="text">iCloud Framework Documentation (v7.0.0)</content>
<link rel="enclosure" type="application/octet-stream" href="https:/github.com/iRareMedia/iCloudDocumentSync/tree/master/Documentation/com.iRareMedia.iCloud-Framework-7.0.xar" length="106399"></link>
<updated>2014-01-25T00:14:28-05:00</updated>
<content type="text">iCloud Framework Documentation (v7.2.0)</content>
<link rel="enclosure" type="application/octet-stream" href="https:/github.com/iRareMedia/iCloudDocumentSync/tree/master/Documentation/com.iRareMedia.iCloud-Framework-7.2.xar" length="107782"></link>
<docset:identifier>com.iRareMedia.iCloud-Framework</docset:identifier>
<docset:version>7.0.0</docset:version>
<docset:version>7.2.0</docset:version>
<docset:minimumXcodeVersion>3.0.0</docset:minimumXcodeVersion>
</entry>
</feed>
Empty file modified LICENSE.md 100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion README.md 100644 → 100755
Expand Up @@ -38,7 +38,7 @@ The iOS Sample App included with this project demonstrates how to use many of th
<img width=700 src="https://raw.github.com/iRareMedia/iCloudDocumentSync/feature/iCloud%20App%20-%20iOS/AppBanner.png"/>

# Documentation
All methods, properties, types, and delegate methods available on the iCloud class are documented below. If you're using [Xcode 5](https://developer.apple.com/technologies/tools/whats-new.html) with iCloud Document Sync, documentation is available directly within Xcode (just Option-Click any method for Quick Help). For more advanced documentation in Xcode 4.0+ please install the docset included with this project. This will allow you to view iCloud Document Sync documentation inside of Xcode's Organizer Window.
Key methods, properties, types, and delegate methods available on the iCloud class are documented below. If you're using [Xcode 5](https://developer.apple.com/technologies/tools/whats-new.html) with iCloud Document Sync, documentation is available directly within Xcode (just Option-Click any method for Quick Help). For more advanced documentation in Xcode 4.0+ please install the docset included with this project. This will allow you to view iCloud Document Sync documentation inside of Xcode's Organizer Window. Additional documentation can also be found on the Wiki page (including how to register your app for iCloud, iCloud fundamentals, etc.).

## Setup
Adding iCloud Document Sync to your project is easy. Follow these steps below to get everything up and running.
Expand Down
Empty file modified iCloud App - iOS/AppBanner.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified iCloud App - iOS/CloudBanner.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified iCloud App - iOS/CloudBanner.psd 100644 → 100755
Empty file.
Empty file modified iCloud App - iOS/iCloud App.xcodeproj/project.pbxproj 100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion iCloud App - iOS/iCloud App/AppDelegate.h 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
// iCloud App
//
// Created by iRare Media on 11/8/13.
// Copyright (c) 2013 iRare Media. All rights reserved.
// Copyright (c) 2014 iRare Media. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
2 changes: 1 addition & 1 deletion iCloud App - iOS/iCloud App/AppDelegate.m 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
// iCloud App
//
// Created by iRare Media on 11/8/13.
// Copyright (c) 2013 iRare Media. All rights reserved.
// Copyright (c) 2014 iRare Media. All rights reserved.
//

#import "AppDelegate.h"
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion iCloud App - iOS/iCloud App/ConflictViewController.h 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
// iCloud App
//
// Created by iRare Media on 11/26/13.
// Copyright (c) 2013 iRare Media. All rights reserved.
// Copyright (c) 2014 iRare Media. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
2 changes: 1 addition & 1 deletion iCloud App - iOS/iCloud App/ConflictViewController.m 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
// iCloud App
//
// Created by iRare Media on 11/26/13.
// Copyright (c) 2013 iRare Media. All rights reserved.
// Copyright (c) 2014 iRare Media. All rights reserved.
//

#import "ConflictViewController.h"
Expand Down
2 changes: 1 addition & 1 deletion iCloud App - iOS/iCloud App/DocumentViewController.h 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
// iCloud App
//
// Created by iRare Media on 11/8/13.
// Copyright (c) 2013 iRare Media. All rights reserved.
// Copyright (c) 2014 iRare Media. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
2 changes: 1 addition & 1 deletion iCloud App - iOS/iCloud App/DocumentViewController.m 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
// iCloud App
//
// Created by iRare Media on 11/8/13.
// Copyright (c) 2013 iRare Media. All rights reserved.
// Copyright (c) 2014 iRare Media. All rights reserved.
//

#import "DocumentViewController.h"
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c2e68e4

Please sign in to comment.