From 2227d82c33d46442a316309d9cfa261e2e00f17a Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 22 Mar 2012 21:10:43 +0000 Subject: [PATCH] fetcher: add exclude rule for LibreOffice lock files --- SparkleLib/SparkleFetcherBase.cs | 3 +++ SparkleShare/Mac/SparkleSetupWindow.cs | 2 +- SparkleShare/SparkleControllerBase.cs | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/SparkleLib/SparkleFetcherBase.cs b/SparkleLib/SparkleFetcherBase.cs index 12865fdd..31e66dca 100755 --- a/SparkleLib/SparkleFetcherBase.cs +++ b/SparkleLib/SparkleFetcherBase.cs @@ -57,6 +57,9 @@ namespace SparkleLib { // gedit and emacs "*~", + // LibreOffice + ".~lock.*", + // Firefox and Chromium temporary download files "*.part", "*.crdownload", diff --git a/SparkleShare/Mac/SparkleSetupWindow.cs b/SparkleShare/Mac/SparkleSetupWindow.cs index 07b35f7e..d193a2db 100755 --- a/SparkleShare/Mac/SparkleSetupWindow.cs +++ b/SparkleShare/Mac/SparkleSetupWindow.cs @@ -79,7 +79,7 @@ namespace SparkleShare { Bordered = false, Editable = false, Font = NSFontManager.SharedFontManager.FontWithFamily - ("Lucida Grande", NSFontTraitMask.Condensed, 0, 11) + ("Lucida Grande", NSFontTraitMask.Condensed, 0, 12) }; if (Program.UI != null) diff --git a/SparkleShare/SparkleControllerBase.cs b/SparkleShare/SparkleControllerBase.cs index d13e4419..fc6ec8d7 100644 --- a/SparkleShare/SparkleControllerBase.cs +++ b/SparkleShare/SparkleControllerBase.cs @@ -743,6 +743,7 @@ namespace SparkleShare { file_name.EndsWith (".key")) { key_file_path = Path.Combine (keys_path, file_name); + break; } } }