Branch 'develop' - 4 commits - liveusb-creator liveusb-creator.spec liveusb/gui.py setup.py

Luke Macken lmacken at fedoraproject.org
Tue May 26 03:33:28 UTC 2015


 liveusb-creator      |    2 +-
 liveusb-creator.spec |    5 ++++-
 liveusb/gui.py       |    3 +++
 setup.py             |    2 +-
 4 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 8f8f5e9af0654510b455c95ac6ead39899c6c43f
Merge: 3cb453d 4e7ac2c
Author: Luke Macken <lmacken at redhat.com>
Date:   Mon May 25 12:03:17 2015 -0600

    Merge branch 'release/3.14.1' into develop



commit 4e7ac2cf3ff8165dfbd4c4e6ee4542da814f9e4f
Author: Luke Macken <lmacken at redhat.com>
Date:   Mon May 25 12:02:33 2015 -0600

    3.14.1

diff --git a/liveusb-creator b/liveusb-creator
index 00b6e15..58145b3 100755
--- a/liveusb-creator
+++ b/liveusb-creator
@@ -23,7 +23,7 @@ import sys
 
 from liveusb import _
 
-__version__ = '3.14.0'
+__version__ = '3.14.1'
 
 def parse_args():
     from optparse import OptionParser
diff --git a/liveusb-creator.spec b/liveusb-creator.spec
index 554f4dc..2d2b6f9 100644
--- a/liveusb-creator.spec
+++ b/liveusb-creator.spec
@@ -7,7 +7,7 @@
 %endif
 
 Name:           liveusb-creator
-Version:        3.14.0
+Version:        3.14.1
 Release:        1%{?dist}
 Summary:        A liveusb creator
 
@@ -90,6 +90,9 @@ rm -rf %{buildroot}
 %{_datadir}/polkit-1/actions/org.fedoraproject.pkexec.run-liveusb-creator.policy
 
 %changelog
+* Mon May 25 2015 Luke Macken <lmacken at redhat.com> - 3.14.0-1
+- Patched to fix black window issue on F22 (#1212180)
+
 * Fri May 22 2015 Luke Macken <lmacken at redhat.com> - 3.14.0-1
 - Require udisks2
 
diff --git a/setup.py b/setup.py
index ae88ace..93e8439 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 from distutils.core import setup
 import sys, os
 
-VERSION = '3.14.0'
+VERSION = '3.14.1'
 
 LOCALE_DIR= '/usr/share/locale'
 


commit 3cb453db49245d32860e33c686c261d09fd2c59c
Merge: 3c5705a 589eb55
Author: Luke Macken <lmacken at redhat.com>
Date:   Mon May 25 09:44:04 2015 -0600

    Merge pull request #23 from jreznik/rhbz1212180
    
    Set graphics system to native to avoid blank windows when X server runs under user



commit 589eb5550e8c50df1cac947bc016f9236766007a
Author: Jaroslav Reznik <jreznik at redhat.com>
Date:   Mon May 25 15:59:09 2015 +0200

    Set graphics system to native to avoid blank windows when X server
    runs under user (not root) (rhbz#1212180)

diff --git a/liveusb/gui.py b/liveusb/gui.py
index cdac8cd..fb58089 100755
--- a/liveusb/gui.py
+++ b/liveusb/gui.py
@@ -56,6 +56,9 @@ MAX_EXT = 2097152
 class LiveUSBApp(QtGui.QApplication):
     """ Main application class """
     def __init__(self, opts, args):
+        if sys.platform[:5] == 'linux':
+            QtGui.QApplication.setGraphicsSystem('native')
+
         QtGui.QApplication.__init__(self, args)
         self.mywindow = LiveUSBWindow(opts, args)
         self.mywindow.show()




More information about the liveusb-creator mailing list