Hello community,

here is the log from the commit of package imagewriter for openSUSE:Factory 
checked in at 2015-01-10 23:05:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/imagewriter (Old)
 and      /work/SRC/openSUSE:Factory/.imagewriter.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "imagewriter"

Changes:
--------
--- /work/SRC/openSUSE:Factory/imagewriter/imagewriter.changes  2014-12-25 
23:20:19.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.imagewriter.new/imagewriter.changes     
2015-01-10 23:05:13.000000000 +0100
@@ -1,0 +2,7 @@
+Fri Jan  9 11:03:49 UTC 2015 - jmassaguer...@suse.com
+
+- Update to latest git release 134a9b3:
+ + fix bnc#871120: doesn't unmount partition
+ + fix bnc#882153 - disk imagewriter does not work with img 
+
+-------------------------------------------------------------------

Old:
----
  imagewriter-1.10.1417937728.7998f7c.tar.xz

New:
----
  imagewriter-1.10.1420800585.134a9b3.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ imagewriter.spec ++++++
--- /var/tmp/diff_new_pack.tYQ8Up/_old  2015-01-10 23:05:14.000000000 +0100
+++ /var/tmp/diff_new_pack.tYQ8Up/_new  2015-01-10 23:05:14.000000000 +0100
@@ -62,7 +62,7 @@
 %endif
 
 Name:           imagewriter
-Version:        1.10.1417937728.7998f7c
+Version:        1.10.1420800585.134a9b3
 Release:        0
 Summary:        Utility for writing disk images to USB keys
 License:        GPL-2.0

++++++ imagewriter-1.10.1417937728.7998f7c.tar.xz -> 
imagewriter-1.10.1420800585.134a9b3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/imagewriter-1.10.1417937728.7998f7c/MainWindow.cpp 
new/imagewriter-1.10.1420800585.134a9b3/MainWindow.cpp
--- old/imagewriter-1.10.1417937728.7998f7c/MainWindow.cpp      2014-12-09 
01:04:14.000000000 +0100
+++ new/imagewriter-1.10.1420800585.134a9b3/MainWindow.cpp      2015-01-09 
12:01:01.000000000 +0100
@@ -287,7 +287,7 @@
     QString fileName = QFileDialog::getOpenFileName(this,
                         tr("Open Image"),
                         QDir::currentPath(),
-                        tr("Image Files (*.raw *.iso)"));
+                        tr("Image Files (*.raw *.iso *.img)"));
     if (!fileName.isEmpty())
     {
         setFile(fileName);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/imagewriter-1.10.1417937728.7998f7c/PlatformUdisks2.cpp 
new/imagewriter-1.10.1420800585.134a9b3/PlatformUdisks2.cpp
--- old/imagewriter-1.10.1417937728.7998f7c/PlatformUdisks2.cpp 2014-12-09 
01:04:14.000000000 +0100
+++ new/imagewriter-1.10.1420800585.134a9b3/PlatformUdisks2.cpp 2015-01-09 
12:01:01.000000000 +0100
@@ -20,6 +20,7 @@
 #include "udisks2_interface.h"
 #include "udisks2_mountpoints_interface.h"
 
+
 PlatformUdisks2::PlatformUdisks2(bool kioskMode, bool unsafe)
     : Platform(kioskMode, unsafe)
 {
@@ -290,7 +291,7 @@
     {
         foreach(QString partition, partitions)
         {
-            if (!doUnmount(partition))
+            if (isPartitionMounted(partition) && !doUnmount(partition))
             {
                 res = false;
                 break;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/imagewriter-1.10.1417937728.7998f7c/windows/ImageWriter/MainWindow.cs 
new/imagewriter-1.10.1420800585.134a9b3/windows/ImageWriter/MainWindow.cs
--- old/imagewriter-1.10.1417937728.7998f7c/windows/ImageWriter/MainWindow.cs   
2014-12-09 01:04:14.000000000 +0100
+++ new/imagewriter-1.10.1420800585.134a9b3/windows/ImageWriter/MainWindow.cs   
2015-01-09 12:01:01.000000000 +0100
@@ -148,7 +148,7 @@
         private void SelectImage(object sender, System.EventArgs e)
         {
             OpenFileDialog imageFileDialog = new OpenFileDialog();
-            imageFileDialog.Filter = "Image Files (*.raw, 
*.iso)|*.raw;*.iso|All files (*.*)|*.*";
+            imageFileDialog.Filter = "Image Files (*.raw, *.iso, 
*.img)|*.raw;*.iso;*.img|All files (*.*)|*.*";
             imageFileDialog.RestoreDirectory = true;
 
             if (imageFileDialog.ShowDialog() == DialogResult.OK)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to