Hello community, here is the log from the commit of package simple-scan for openSUSE:Factory checked in at 2020-06-08 23:47:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/simple-scan (Old) and /work/SRC/openSUSE:Factory/.simple-scan.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "simple-scan" Mon Jun 8 23:47:02 2020 rev:71 rq:811409 version:3.36.3 Changes: -------- --- /work/SRC/openSUSE:Factory/simple-scan/simple-scan.changes 2020-05-08 23:03:46.657669321 +0200 +++ /work/SRC/openSUSE:Factory/.simple-scan.new.3606/simple-scan.changes 2020-06-08 23:47:32.826015052 +0200 @@ -1,0 +2,8 @@ +Wed Jun 3 16:36:19 UTC 2020 - Bjørn Lie <[email protected]> + +- Update to version 3.36.3: + + Change the size of the paper to avoid visual glitches. + + Disable possibility of scanning if no device is found, to avoid + unnecessary errors. + +------------------------------------------------------------------- Old: ---- simple-scan-3.36.2.1.tar.xz New: ---- simple-scan-3.36.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ simple-scan.spec ++++++ --- /var/tmp/diff_new_pack.7lYd57/_old 2020-06-08 23:47:33.530017224 +0200 +++ /var/tmp/diff_new_pack.7lYd57/_new 2020-06-08 23:47:33.530017224 +0200 @@ -17,7 +17,7 @@ Name: simple-scan -Version: 3.36.2.1 +Version: 3.36.3 Release: 0 Summary: Simple Scanning Utility License: GPL-3.0-or-later ++++++ simple-scan-3.36.2.1.tar.xz -> simple-scan-3.36.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/simple-scan-3.36.2.1/NEWS new/simple-scan-3.36.3/NEWS --- old/simple-scan-3.36.2.1/NEWS 2020-05-06 05:38:48.421531700 +0200 +++ new/simple-scan-3.36.3/NEWS 2020-06-03 02:15:52.623730400 +0200 @@ -1,3 +1,9 @@ +Overview of changes in simple-scan 3.36.3 + + * Change the size of the paper to avoid visual glitches. + * Disable possibility of scanning if no device is found, to avoid unnecessary + errors. + Overview of changes in simple-scan 3.36.2.1 * Revert the higher bit depth text scans changes - they aren't working with diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/simple-scan-3.36.2.1/meson.build new/simple-scan-3.36.3/meson.build --- old/simple-scan-3.36.2.1/meson.build 2020-05-06 05:38:48.437532000 +0200 +++ new/simple-scan-3.36.3/meson.build 2020-06-03 02:15:52.671731200 +0200 @@ -1,5 +1,5 @@ project ('simple-scan', ['vala', 'c'], - version: '3.36.2.1', + version: '3.36.3', license: 'GPLv3+', default_options: [ 'warning_level=1', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/simple-scan-3.36.2.1/src/app-window.vala new/simple-scan-3.36.3/src/app-window.vala --- old/simple-scan-3.36.2.1/src/app-window.vala 2020-05-06 05:38:48.453532200 +0200 +++ new/simple-scan-3.36.3/src/app-window.vala 2020-06-03 02:15:52.715731900 +0200 @@ -245,6 +245,7 @@ private void update_scan_status () { + scan_button.set_sensitive(false); if (!have_devices) { status_primary_label.set_text (/* Label shown when searching for scanners */ @@ -254,6 +255,7 @@ } else if (get_selected_device () != null) { + scan_button.set_sensitive(true); status_primary_label.set_text (/* Label shown when detected a scanner */ _("Ready to Scan")); status_secondary_label.set_text (get_selected_device_label ()); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/simple-scan-3.36.2.1/src/simple-scan.vala new/simple-scan-3.36.3/src/simple-scan.vala --- old/simple-scan-3.36.2.1/src/simple-scan.vala 2020-05-06 05:38:48.457532400 +0200 +++ new/simple-scan-3.36.3/src/simple-scan.vala 2020-06-03 02:15:52.723732000 +0200 @@ -1536,7 +1536,8 @@ debug ("Requesting scan at %d dpi from device '%s'", options.dpi, device); if (!scanner.is_scanning ()) - append_page (options.paper_width, options.paper_height, options.dpi); + // We need to add +1 to avoid visual glitches, fixes: #179 + append_page (options.paper_width + 1, options.paper_height + 1, options.dpi + 1); scanner.scan (device, options); }
