4126e43dd3
the author. Add some new ones. Add "rescan" subcommand to the startup script: Obtained from: Rafal Szkodzinski Replace the pinguin icon with Beastie: Obtained from: Vladimir B. Grebenschikov Thanks to: above contributors and other testers.
15 lines
418 B
Text
15 lines
418 B
Text
Submitted by Vladimir B. Grebenschikov this patch recognizes Samsung's
|
|
images as JPEGs.
|
|
|
|
--- utils.c 2012-01-04 14:16:46.000000000 +0000
|
|
+++ utils.c 2012-01-09 00:29:31.000000000 +0000
|
|
@@ -261,7 +261,8 @@
|
|
int
|
|
is_image(const char * file)
|
|
{
|
|
- return (ends_with(file, ".jpg") || ends_with(file, ".jpeg"));
|
|
+ return (ends_with(file, ".jpg") || ends_with(file, ".jpeg") ||
|
|
+ ends_with(file, ".mpo"));
|
|
}
|
|
|
|
int
|