Hello community, here is the log from the commit of package imageburner for openSUSE:Factory checked in at 2018-01-16 09:42:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/imageburner (Old) and /work/SRC/openSUSE:Factory/.imageburner.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "imageburner" Tue Jan 16 09:42:25 2018 rev:2 rq:564039 version:0.1.9 Changes: -------- --- /work/SRC/openSUSE:Factory/imageburner/imageburner.changes 2018-01-13 21:45:55.914873371 +0100 +++ /work/SRC/openSUSE:Factory/.imageburner.new/imageburner.changes 2018-01-16 09:42:28.181410727 +0100 @@ -1,0 +2,6 @@ +Sat Jan 6 02:01:47 UTC 2018 - [email protected] + +- Update to 0.1.9: + * show spinner + +------------------------------------------------------------------- Old: ---- imageburner-0.1.8.tar.gz New: ---- imageburner-0.1.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ imageburner.spec ++++++ --- /var/tmp/diff_new_pack.8X4LDW/_old 2018-01-16 09:42:28.821380771 +0100 +++ /var/tmp/diff_new_pack.8X4LDW/_new 2018-01-16 09:42:28.825380583 +0100 @@ -17,7 +17,7 @@ Name: imageburner -Version: 0.1.8 +Version: 0.1.9 Release: 0 Summary: Image burner License: GPL-3.0+ ++++++ imageburner-0.1.8.tar.gz -> imageburner-0.1.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/imageburner-0.1.8/data/com.github.artemanufrij.imageburner.appdata.xml new/imageburner-0.1.9/data/com.github.artemanufrij.imageburner.appdata.xml --- old/imageburner-0.1.8/data/com.github.artemanufrij.imageburner.appdata.xml 2017-12-05 21:23:13.000000000 +0100 +++ new/imageburner-0.1.9/data/com.github.artemanufrij.imageburner.appdata.xml 2017-12-28 23:28:21.000000000 +0100 @@ -28,6 +28,14 @@ </screenshot> </screenshots> <releases> + <release version="0.1.9" date="2017-12-30"> + <description> + <p>New:</p> + <ul> + <li>Show spinner until hash code will calculating</li> + </ul> + </description> + </release> <release version="0.1.8" date="2017-12-05"> <description> <p>New:</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/imageburner-0.1.8/src/MainWindow.vala new/imageburner-0.1.9/src/MainWindow.vala --- old/imageburner-0.1.8/src/MainWindow.vala 2017-12-05 21:23:13.000000000 +0100 +++ new/imageburner-0.1.9/src/MainWindow.vala 2017-12-28 23:28:21.000000000 +0100 @@ -44,6 +44,7 @@ Gtk.Grid device_container; Gtk.HeaderBar headerbar; Gtk.ComboBoxText hash_chooser; + Gtk.Spinner hash_waiting; Granite.Widgets.Toast app_notification; Notification desktop_notification; @@ -113,10 +114,12 @@ public MainWindow () { calculate_finished.connect ((result) => { + hash_waiting.active = false; headerbar.title = result; hash_chooser.sensitive = true; }); calculate_begin.connect (() => { + hash_waiting.active = true; headerbar.title = _("Calculating checksum…"); hash_chooser.sensitive = false; }); @@ -199,6 +202,9 @@ }); headerbar.pack_end (hash_chooser); + hash_waiting = new Gtk.Spinner (); + headerbar.pack_end (hash_waiting); + app_notification = new Granite.Widgets.Toast (""); var overlay = new Gtk.Overlay (); overlay.add (content); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/imageburner-0.1.8/src/Manager/DeviceManager.vala new/imageburner-0.1.9/src/Manager/DeviceManager.vala --- old/imageburner-0.1.8/src/Manager/DeviceManager.vala 2017-12-05 21:23:13.000000000 +0100 +++ new/imageburner-0.1.9/src/Manager/DeviceManager.vala 2017-12-28 23:28:21.000000000 +0100 @@ -69,7 +69,7 @@ } private bool valid_device (Drive drive) { - string unix_device = drive.get_identifier ("unix-device"); + string? unix_device = drive.get_identifier ("unix-device"); return (drive.is_media_removable () || drive.can_stop ()) && (unix_device != null && (unix_device.index_of ("/dev/sd") == 0 || unix_device.index_of ("/dev/mmc") == 0)); } }
