minor change
This commit is contained in:
parent
63f7aa1199
commit
c9d0dd80ad
2 changed files with 9 additions and 2 deletions
|
@ -42,7 +42,13 @@ class AvesEntry {
|
|||
final AChangeNotifier imageChangeNotifier = AChangeNotifier(), metadataChangeNotifier = AChangeNotifier(), addressChangeNotifier = AChangeNotifier();
|
||||
|
||||
// TODO TLAD make it dynamic if it depends on OS/lib versions
|
||||
static const List<String> undecodable = [MimeTypes.art, MimeTypes.crw, MimeTypes.djvu, MimeTypes.psd];
|
||||
static const List<String> undecodable = [
|
||||
MimeTypes.art,
|
||||
MimeTypes.crw,
|
||||
MimeTypes.djvu,
|
||||
MimeTypes.psdVnd,
|
||||
MimeTypes.psdX,
|
||||
];
|
||||
|
||||
AvesEntry({
|
||||
this.uri,
|
||||
|
|
|
@ -14,7 +14,8 @@ class MimeTypes {
|
|||
|
||||
static const art = 'image/x-jg';
|
||||
static const djvu = 'image/vnd.djvu';
|
||||
static const psd = 'image/vnd.adobe.photoshop';
|
||||
static const psdVnd = 'image/vnd.adobe.photoshop';
|
||||
static const psdX = 'image/x-photoshop';
|
||||
|
||||
static const arw = 'image/x-sony-arw';
|
||||
static const cr2 = 'image/x-canon-cr2';
|
||||
|
|
Loading…
Reference in a new issue