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
"*~",
// LibreOffice
".~lock.*",
// Firefox and Chromium temporary download files
"*.part",
"*.crdownload",

View file

@ -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)

View file

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