fetcher: add exclude rule for LibreOffice lock files

This commit is contained in:
Hylke Bons 2012-03-22 21:10:43 +00:00
parent e239f3e6e0
commit 2227d82c33
3 changed files with 5 additions and 1 deletions

View file

@ -57,6 +57,9 @@ namespace SparkleLib {
// gedit and emacs // gedit and emacs
"*~", "*~",
// LibreOffice
".~lock.*",
// Firefox and Chromium temporary download files // Firefox and Chromium temporary download files
"*.part", "*.part",
"*.crdownload", "*.crdownload",

View file

@ -79,7 +79,7 @@ namespace SparkleShare {
Bordered = false, Bordered = false,
Editable = false, Editable = false,
Font = NSFontManager.SharedFontManager.FontWithFamily Font = NSFontManager.SharedFontManager.FontWithFamily
("Lucida Grande", NSFontTraitMask.Condensed, 0, 11) ("Lucida Grande", NSFontTraitMask.Condensed, 0, 12)
}; };
if (Program.UI != null) if (Program.UI != null)

View file

@ -743,6 +743,7 @@ namespace SparkleShare {
file_name.EndsWith (".key")) { file_name.EndsWith (".key")) {
key_file_path = Path.Combine (keys_path, file_name); key_file_path = Path.Combine (keys_path, file_name);
break;
} }
} }
} }