diff options
author | Jannis Pohlmann <jannis@xfce.org> | 2011-11-02 23:13:27 +0100 |
---|---|---|
committer | Jannis Pohlmann <jannis@xfce.org> | 2011-11-02 23:13:27 +0100 |
commit | 851a149213c2b3cf2c961e77cc29f18f687d409b (patch) | |
tree | e2be87cd8b55010d7873bc39bde5176ee72d9d95 | |
parent | c1f2f2fb7a01a51f1e52a74189c5b94b05054b57 (diff) | |
download | tumbler-851a149213c2b3cf2c961e77cc29f18f687d409b.tar.gz |
Add support for OpenRaster images in the ODF thumbnailer (bug #6108).
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | plugins/odf-thumbnailer/odf-thumbnailer-plugin.c | 4 | ||||
-rw-r--r-- | plugins/odf-thumbnailer/odf-thumbnailer-provider.c | 1 |
3 files changed, 4 insertions, 2 deletions
@@ -3,6 +3,7 @@ - Fix generation of video images by starting the pipeline (bug #7996). - Fix ownership race conditions when started twice (bug #8001). - Add an ODF thumbnailer plugin. +- Add support for OpenRaster images in the ODF thumbnailer (bug #6108). 0.1.22 ====== diff --git a/plugins/odf-thumbnailer/odf-thumbnailer-plugin.c b/plugins/odf-thumbnailer/odf-thumbnailer-plugin.c index 852632e..3463c5a 100644 --- a/plugins/odf-thumbnailer/odf-thumbnailer-plugin.c +++ b/plugins/odf-thumbnailer/odf-thumbnailer-plugin.c @@ -61,7 +61,7 @@ tumbler_plugin_initialize (TumblerProviderPlugin *plugin) } #ifdef DEBUG - g_message (_("Initializing the Tumbler Odf Thumbnailer plugin")); + g_message (_("Initializing the Tumbler ODF Thumbnailer plugin")); #endif /* register the types provided by this plugin */ @@ -78,7 +78,7 @@ void tumbler_plugin_shutdown (void) { #ifdef DEBUG - g_message (_("Shutting down the Tumbler Odf Thumbnailer plugin")); + g_message (_("Shutting down the Tumbler ODF Thumbnailer plugin")); #endif } diff --git a/plugins/odf-thumbnailer/odf-thumbnailer-provider.c b/plugins/odf-thumbnailer/odf-thumbnailer-provider.c index d88c437..c1bac4d 100644 --- a/plugins/odf-thumbnailer/odf-thumbnailer-provider.c +++ b/plugins/odf-thumbnailer/odf-thumbnailer-provider.c @@ -132,6 +132,7 @@ odf_thumbnailer_provider_get_thumbnailers (TumblerThumbnailerProvider *provider) "application/vnd.sun.xml.draw.template", "application/vnd.sun.xml.draw", "application/vnd.sun.xml.math", + "image/openraster", NULL }; OdfThumbnailer *thumbnailer; |