From 0911117e3113e5d6c329dff140c7a8fb2c0170d3 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 4 Mar 2011 05:30:11 -0800 Subject: [PATCH] [fetcher] Ignore Omnigraffle autosave files --- SparkleLib/SparkleFetcher.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SparkleLib/SparkleFetcher.cs b/SparkleLib/SparkleFetcher.cs index ebbe97d0..566d1455 100644 --- a/SparkleLib/SparkleFetcher.cs +++ b/SparkleLib/SparkleFetcher.cs @@ -14,6 +14,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . + using System; using System.IO; using System.Diagnostics; @@ -153,7 +154,10 @@ namespace SparkleLib { writer.WriteLine ("._*"); writer.WriteLine (".Spotlight-V100"); writer.WriteLine (".Trashes"); - + + // Mac OSX + writer.WriteLine ("*(Autosaved).graffle"); + // Windows writer.WriteLine ("Thumbs.db"); writer.WriteLine ("Desktop.ini");