#2653: Add audio/wav and audio/x-wav as Audio objects.

This commit is contained in:
Tomeu Vizoso 2007-09-08 14:28:23 +02:00
parent 9e2a9c4c02
commit a9dbf6ae59
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -1,3 +1,4 @@
* #2653: Add audio/wav and audio/x-wav as Audio objects. (tomeu)
* Support moving of data files written to the datastore using standard Activity * Support moving of data files written to the datastore using standard Activity
write_file() API (dcbw) write_file() API (dcbw)

View File

@ -40,7 +40,7 @@ class ObjectTypeRegistry(dbus.service.Object):
['image/png', 'image/gif', 'image/jpeg']) ['image/png', 'image/gif', 'image/jpeg'])
self._add_primitive('Audio', _('Audio'), 'audio-x-generic', self._add_primitive('Audio', _('Audio'), 'audio-x-generic',
['audio/ogg']) ['audio/ogg', 'audio/x-wav', 'audio/wav'])
self._add_primitive('Video', _('Video'), 'video-x-generic', self._add_primitive('Video', _('Video'), 'video-x-generic',
['video/ogg', 'application/ogg']) ['video/ogg', 'application/ogg'])