Hello community, here is the log from the commit of package pix for openSUSE:Factory checked in at 2017-06-13 16:09:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pix (Old) and /work/SRC/openSUSE:Factory/.pix.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pix" Tue Jun 13 16:09:46 2017 rev:9 rq:503271 version:1.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/pix/pix.changes 2017-05-27 13:18:57.246508173 +0200 +++ /work/SRC/openSUSE:Factory/.pix.new/pix.changes 2017-06-13 16:09:50.268027760 +0200 @@ -1,0 +2,8 @@ +Mon Jun 12 19:52:24 UTC 2017 - [email protected] + +- Update to version 1.4.4 (changes since 1.4.2): + * Add support for image/x-fuji-raf raw files. + * RAW images: Apply rotation to satisfy EXIF orientation. +- Require dcraw. + +------------------------------------------------------------------- Old: ---- pix-1.4.2.tar.gz New: ---- pix-1.4.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pix.spec ++++++ --- /var/tmp/diff_new_pack.D4rxMB/_old 2017-06-13 16:09:51.099910522 +0200 +++ /var/tmp/diff_new_pack.D4rxMB/_new 2017-06-13 16:09:51.099910522 +0200 @@ -17,7 +17,7 @@ Name: pix -Version: 1.4.2 +Version: 1.4.4 Release: 0 Summary: Image viewer and browser utility License: GPL-2.0+ @@ -25,6 +25,7 @@ Url: https://github.com/linuxmint/pix Source: https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz BuildRequires: bison +BuildRequires: dcraw BuildRequires: fdupes BuildRequires: flex BuildRequires: gcc-c++ ++++++ pix-1.4.2.tar.gz -> pix-1.4.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pix-1.4.2/configure.ac new/pix-1.4.4/configure.ac --- old/pix-1.4.2/configure.ac 2017-05-23 14:52:17.000000000 +0200 +++ new/pix-1.4.4/configure.ac 2017-06-10 16:37:23.000000000 +0200 @@ -1,6 +1,6 @@ m4_define([pix_major_version], [1]) m4_define([pix_minor_version], [4]) -m4_define([pix_micro_version], [2]) +m4_define([pix_micro_version], [4]) m4_define([pix_version], [pix_major_version.pix_minor_version.pix_micro_version]) m4_define([pix_api_version], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pix-1.4.2/debian/changelog new/pix-1.4.4/debian/changelog --- old/pix-1.4.2/debian/changelog 2017-05-23 14:52:17.000000000 +0200 +++ new/pix-1.4.4/debian/changelog 2017-06-10 16:37:23.000000000 +0200 @@ -1,3 +1,19 @@ +pix (1.4.4) sonya; urgency=medium + + * RAW images: Apply rotation to satisfy EXIF orientation + + -- Clement Lefebvre <[email protected]> Sat, 10 Jun 2017 15:36:54 +0100 + +pix (1.4.3) sonya; urgency=medium + + [ leigh123linux ] + * added support for image/x-fuji-raf raw files (#29) + + [ Clement Lefebvre ] + * Packaging: Depend on dcraw + + -- Clement Lefebvre <[email protected]> Fri, 09 Jun 2017 18:16:01 +0100 + pix (1.4.2) sonya; urgency=medium * Grid view: Activate item when pressing Space diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pix-1.4.2/debian/control new/pix-1.4.4/debian/control --- old/pix-1.4.2/debian/control 2017-05-23 14:52:17.000000000 +0200 +++ new/pix-1.4.4/debian/control 2017-06-10 16:37:23.000000000 +0200 @@ -45,6 +45,7 @@ ${shlibs:Depends} , ${misc:Depends} , pix-data (= ${source:Version}) + , dcraw , gsettings-desktop-schemas , xapps-common (>= 1.0.0) Recommends: gvfs-bin diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pix-1.4.2/extensions/raw_files/main.c new/pix-1.4.4/extensions/raw_files/main.c --- old/pix-1.4.2/extensions/raw_files/main.c 2017-05-23 14:52:17.000000000 +0200 +++ new/pix-1.4.4/extensions/raw_files/main.c 2017-06-10 16:37:23.000000000 +0200 @@ -421,6 +421,16 @@ pixbuf = gdk_pixbuf_new_from_file (cache_file, NULL); + if (pixbuf != NULL) { + GdkPixbuf *rotated; + + rotated = gdk_pixbuf_apply_embedded_orientation (pixbuf); + if (rotated != NULL) { + g_object_unref (pixbuf); + pixbuf = rotated; + } + } + /* Thumbnail files are already cached, so delete the conversion cache copies */ if (is_thumbnail) { GFile *file; @@ -461,6 +471,7 @@ "image/x-olympus-orf", "image/x-pentax-pef", "image/x-sony-arw", + "image/x-fuji-raf", NULL); }
