From ec0fc2fbb795d5a5876dd9e6158ac4f1e7f43ee0 Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Wed, 5 Oct 2011 18:40:35 +0100 Subject: [PATCH] 1.3.7. Show private job attributes for "my jobs" (bug #742279). Enable Test Page button when application/postscript is supported. Some preferreddrivers.xml fixes (Ubuntu #855412). Handle errors saving troubleshoot.txt (Ubuntu #789602). Removed some stale code. Make connections list more easily accessible (Ubuntu #842092). Improved handling of remote CUPS queues via DNS-SD, and IPP devices. Better display of CUPS servers from "Find Network Printer". Fixed SMB method for printer finder. Don't handle tooltips during mainloop recursion (bug #664044, bug #739734). Fixed bold print of tab labels on option conflicts. Preserve installable options on driver change. Update printer properties dialog correctly when PPD changed. Fixed typo triggered by private job attributes (Ubuntu #827573). Marked some translatable strings that weren't (bug #734313). --- .gitignore | 1 + sources | 3 +-- system-config-printer-1.3.6.tar.xz.sig | Bin 280 -> 0 bytes system-config-printer-1.3.7.tar.xz.sig | Bin 0 -> 280 bytes system-config-printer-hp-scannable.patch | 30 ----------------------- system-config-printer.spec | 21 +++++++++++++++- 6 files changed, 22 insertions(+), 33 deletions(-) delete mode 100644 system-config-printer-1.3.6.tar.xz.sig create mode 100644 system-config-printer-1.3.7.tar.xz.sig delete mode 100644 system-config-printer-hp-scannable.patch diff --git a/.gitignore b/.gitignore index 6820c1d..d26ff18 100644 --- a/.gitignore +++ b/.gitignore @@ -235,3 +235,4 @@ pycups-1.9.51.tar.bz2 /system-config-printer-1.3.4.tar.xz /system-config-printer-1.3.5.tar.xz /system-config-printer-1.3.6.tar.xz +/system-config-printer-1.3.7.tar.xz diff --git a/sources b/sources index ed1fab5..e026a61 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -9d806643f17dc65a492a1d4e8a60f2ec system-config-printer-1.3.5.tar.xz -dc7a22fc1151f903b516e5cf40982d9d system-config-printer-1.3.6.tar.xz +f579ba287403d8ae3028377c6641feed system-config-printer-1.3.7.tar.xz diff --git a/system-config-printer-1.3.6.tar.xz.sig b/system-config-printer-1.3.6.tar.xz.sig deleted file mode 100644 index 66b5457bdf68800c942aed677cc74a43a2240273..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmV+z0q6dS0TlxU08Ubye(uGQs`TEJECB*oYX|>I;qxO=;d{>_Dsn`vb%8_#5lX#A zmO9DL8^11rb63qEZB#!MxjJGa$$$a z@bB*qnAsG7T`7e1%T~x+L$XeM;!h4Xdr9_!M_@w%yzDH@gGfhs4}M#dnRl)xm!<-s e>@wlC3f^==E+{CU>oxP|k1AnEo-*02g>v|@nT5ju diff --git a/system-config-printer-1.3.7.tar.xz.sig b/system-config-printer-1.3.7.tar.xz.sig new file mode 100644 index 0000000000000000000000000000000000000000..58c1efa9e8385aaef4d13e5fc57a9f30b1ed8d3a GIT binary patch literal 280 zcmV+z0q6dS0TlxU08WgLCGN$Ms`TEJECB-S?+5)J3NiK;L5hV=+t89ML}o#^aGVSE zNCV(&L&M4;^pCzUAA6h9JmGF%pR*z0RSQ{~-J$l1ddbUXcFY+tUC939>RqI}4T+SCK%xjBDbmprVdo-wn63Q*jz7lY3n9J zbG=o^S_DwBGjz2q-rCA|Q~cv!YqA>25x)G;;>M;UDXD;bqudlqd?zae_9=P`OuUEt e7Hcn>aXp4*tr4 literal 0 HcmV?d00001 diff --git a/system-config-printer-hp-scannable.patch b/system-config-printer-hp-scannable.patch deleted file mode 100644 index 3603311..0000000 --- a/system-config-printer-hp-scannable.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -up system-config-printer-1.3.0/newprinter.py.hp-scannable system-config-printer-1.3.0/newprinter.py ---- system-config-printer-1.3.0/newprinter.py.hp-scannable 2011-02-16 13:02:45.000000000 +0000 -+++ system-config-printer-1.3.0/newprinter.py 2011-02-17 09:58:51.867125793 +0000 -@@ -971,7 +971,8 @@ class NewPrinterGUI(GtkGUI): - ready (self.NewPrinterWindow) - return - -- if (self.device.hp_scannable and -+ if (hasattr (self.device, 'hp_scannable') and -+ self.device.hp_scannable and - not os.access ("/etc/sane.d/dll.d/hpaio", os.R_OK)): - try: - pk = installpackage.PackageKit () -@@ -2467,15 +2468,6 @@ class NewPrinterGUI(GtkGUI): - physicaldevice.add_device (faxdev) - - physicaldevice.set_data ('hp-scannable', True) -- if hp_scannable and not os.access ("/etc/sane.d/dll.d/hpaio", -- os.R_OK): -- try: -- pk = installpackage.PackageKit () -- xid = self.NewPrinterWindow.window.xid -- pk.InstallPackageName (xid, 0, "libsane-hpaio") -- except: -- pass -- - physicaldevice.set_data ('checked-hplip', True) - - device.hp_scannable = physicaldevice.get_data ('hp-scannable') -diff -up system-config-printer-1.3.0/system-config-printer.py.hp-scannable system-config-printer-1.3.0/system-config-printer.py diff --git a/system-config-printer.spec b/system-config-printer.spec index 4b39cdb..455047b 100644 --- a/system-config-printer.spec +++ b/system-config-printer.spec @@ -1,6 +1,6 @@ Summary: A printer administration tool Name: system-config-printer -Version: 1.3.6 +Version: 1.3.7 Release: 1%{?dist} License: GPLv2+ URL: http://cyberelk.net/tim/software/system-config-printer/ @@ -197,6 +197,25 @@ if [ $1 -ge 1 ] ; then fi %changelog +* Wed Oct 5 2011 Tim Waugh 1.3.7-1 +- 1.3.7: + - Show private job attributes for "my jobs" (bug #742279). + - Enable Test Page button when application/postscript is supported. + - Some preferreddrivers.xml fixes (Ubuntu #855412). + - Handle errors saving troubleshoot.txt (Ubuntu #789602). + - Removed some stale code. + - Make connections list more easily accessible (Ubuntu #842092). + - Improved handling of remote CUPS queues via DNS-SD, and IPP devices. + - Better display of CUPS servers from "Find Network Printer". + - Fixed SMB method for printer finder. + - Don't handle tooltips during mainloop recursion (bug #664044, + bug #739734). + - Fixed bold print of tab labels on option conflicts. + - Preserve installable options on driver change. + - Update printer properties dialog correctly when PPD changed. + - Fixed typo triggered by private job attributes (Ubuntu #827573). + - Marked some translatable strings that weren't (bug #734313). + * Mon Aug 22 2011 Tim Waugh 1.3.6-1 - 1.3.6: - Updated translations.