rpms/system-config-printer/devel system-config-printer-1.0.x.patch, 1.3, 1.4 system-config-printer.spec, 1.219, 1.220

Tim Waugh twaugh at fedoraproject.org
Mon Oct 13 16:38:24 UTC 2008


Author: twaugh

Update of /cvs/pkgs/rpms/system-config-printer/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27993

Modified Files:
	system-config-printer.spec 
Added Files:
	system-config-printer-1.0.x.patch 
Log Message:
* Mon Oct 13 2008 Tim Waugh <twaugh at redhat.com> 1.0.8-3
- Added patch for 1.0.x changes since 1.0.8:
  - Don't use a LinkButton for the 'Problems?' button (bug #465407).
  - Don't use a separator for the server settings dialog (bug
    #465407).
  - Don't set non-zero page size for SpinButtons.
  - Don't show an error dialog if an IPP operation's authentication
    dialog is cancelled by the user, but show an error dialog if the
    password was incorrect (bug #465407).
  - Set Server Settings... menu entry sensitive depending on whether
    we are connected to a server (Ubuntu #280736).
  - Lots of translations updated.


system-config-printer-1.0.x.patch:

View full diff with command:
/usr/bin/cvs -f diff  -kk -u -N -r 1.3 -r 1.4 system-config-printer-1.0.x.patch
Index: system-config-printer-1.0.x.patch
===================================================================
RCS file: system-config-printer-1.0.x.patch
diff -N system-config-printer-1.0.x.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ system-config-printer-1.0.x.patch	13 Oct 2008 16:37:54 -0000	1.4
@@ -0,0 +1,18014 @@
+diff -up system-config-printer-1.0.8/authconn.py.1.0.x system-config-printer-1.0.8/authconn.py
+--- system-config-printer-1.0.8/authconn.py.1.0.x	2008-09-29 17:53:53.000000000 +0100
++++ system-config-printer-1.0.8/authconn.py	2008-10-13 16:47:42.000000000 +0100
+@@ -202,6 +202,7 @@ class Connection:
+             self._forbidden = False
+             self._auth_called = False
+             self._cancel = False
++            self._dialog_shown = False
+             cups.setPasswordCB (self._password_callback)
+             debugprint ("Authentication: password callback set")
+             return 1
+@@ -248,11 +249,26 @@ class Connection:
+         # Reset the flag indicating whether we were given an auth callback.
+         self._auth_called = False
+ 
++        # If we're previously prompted, explain why we're prompting again.
++        if self._dialog_shown:
++            d = gtk.MessageDialog (self._parent,
++                                   gtk.DIALOG_MODAL |
++                                   gtk.DIALOG_DESTROY_WITH_PARENT,
++                                   gtk.MESSAGE_ERROR,
++                                   gtk.BUTTONS_CLOSE)
++            d.set_title (_("Not authorized"))
++            d.set_markup ('<span weight="bold" size="larger">' +
++                          _("Not authorized") + '</span>\n\n' +
++                          _("The password may be incorrect."))
++            d.run ()
++            d.destroy ()
++
+         # Prompt.
+         d = AuthDialog (parent=self._parent)
+         d.set_prompt (self._prompt)
+         d.set_auth_info ([self._use_user, ''])
+         d.field_grab_focus ('password')
++        self._dialog_shown = True
+         response = d.run ()
+         (self._use_user,
+          self._use_password) = d.get_auth_info ()
+diff -U0 system-config-printer-1.0.8/ChangeLog.1.0.x system-config-printer-1.0.8/ChangeLog
+--- system-config-printer-1.0.8/ChangeLog.1.0.x	2008-09-29 17:53:53.000000000 +0100
++++ system-config-printer-1.0.8/ChangeLog	2008-10-13 16:47:42.000000000 +0100
+@@ -0,0 +1,32 @@
++2008-10-10  Tim Waugh  <twaugh at redhat.com>
++
++	* system-config-printer.py
++	(GUI.__init__.UnobtrusiveButton.__init__): Don't use a LinkButton
++	for the 'Problems?' button (bug #465407).
++
++2008-10-10  Tim Waugh  <twaugh at redhat.com>
++
++	* system-config-printer.glade: Don't use a separator for the
++	server settings dialog (bug #465407).
++
++2008-10-10  Tim Waugh  <twaugh at redhat.com>
++
++	* system-config-printer.glade: Don't set non-zero page size for
++	SpinButtons.
++
++2008-10-10  Tim Waugh  <twaugh at redhat.com>
++
++	* errordialogs.py (show_IPP_Error): Don't show an error dialog if
++	an IPP operation's authentication dialog is cancelled by the
++	user (bug #465407).
++	* authconn.py: Show an error dialog if the password was
++	incorrect (bug #465407).
++
++2008-10-09  Tim Waugh  <twaugh at redhat.com>
++
++	* system-config-printer.glade: Renamed server_settings to
++	server_settings_menu_entry to avoid naming collision.
++	* system-config-printer.py (GUI.setConnected): Set Server
++	Settings... menu entry sensitive depending on whether we are
++	connected to a server (Ubuntu #280736).
++
+diff -up system-config-printer-1.0.8/errordialogs.py.1.0.x system-config-printer-1.0.8/errordialogs.py
+--- system-config-printer-1.0.8/errordialogs.py.1.0.x	2008-09-29 17:53:53.000000000 +0100
++++ system-config-printer-1.0.8/errordialogs.py	2008-10-13 16:47:42.000000000 +0100
+@@ -62,8 +62,8 @@ def show_error_dialog (title, text, pare
+ 
+ def show_IPP_Error(exception, message, parent=None):
+     if exception == cups.IPP_NOT_AUTHORIZED:
+-        title = _('Not authorized')
+-        text = _('The password may be incorrect.')
++        # In this case, the user has canceled an authentication dialog.
++        return
+     else:
+         title = _("CUPS server error")
+         text = (_("There was an error during the CUPS "
+diff -up system-config-printer-1.0.8/po/el.po.1.0.x system-config-printer-1.0.8/po/el.po
+--- system-config-printer-1.0.8/po/el.po.1.0.x	2008-09-29 17:53:53.000000000 +0100
++++ system-config-printer-1.0.8/po/el.po	2008-10-13 16:47:42.000000000 +0100
+@@ -12,14 +12,14 @@ msgid ""
+ msgstr ""
+ "Project-Id-Version: el\n"
+ "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/bugzilla\n"
+-"POT-Creation-Date: 2008-09-29 17:46+0100\n"
+-"PO-Revision-Date: 2007-09-24 20:29+0100\n"
+-"Last-Translator: Dimitris Glezos <dimitris at glezos.com>\n"
++"POT-Creation-Date: 2008-09-29 17:17+0000\n"
++"PO-Revision-Date: 2008-10-02 21:52+0200\n"
++"Last-Translator: nikosCharonitakis <nikosx at gmail.com>\n"
+ "Language-Team: Greek <fedora-trans-el at redhat.com>\n"
+ "MIME-Version: 1.0\n"
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
++"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+ "X-Generator: KBabel 1.11.4\n"
+ 
+ #: ../AdvancedServerSettings.py:40
+@@ -50,9 +50,7 @@ msgid "Browse Servers"
+ msgstr "Μετάβαση στον εξυπηρετητή"
+ 
+ #: ../AdvancedServerSettings.py:92
+-msgid ""
+-"Usually print servers broadcast their queues.  Specify print servers below "
+-"to periodically ask for queues instead."
++msgid "Usually print servers broadcast their queues.  Specify print servers below to periodically ask for queues instead."
+ msgstr ""
+ 
+ #: ../AdvancedServerSettings.py:213
+@@ -60,11 +58,13 @@ msgstr ""
+ msgid "Enter IP address"
+ msgstr "Ο εκτυπωτής προστέθηκε"
+ 
+-#: ../authconn.py:30 ../system-config-printer.glade.h:249
++#: ../authconn.py:30
++#: ../system-config-printer.glade.h:249
+ msgid "Username:"
+ msgstr "Όνομα χρήστη:"
+ 
+-#: ../authconn.py:31 ../system-config-printer.glade.h:184
++#: ../authconn.py:31
++#: ../system-config-printer.glade.h:184
+ msgid "Password:"
+ msgstr "Συνθηματικό:"
+ 
+@@ -74,11 +74,11 @@ msgid "Domain:"
+ msgstr "Πάνω περιθώριο:"
+ 
+ #: ../authconn.py:34
+-#, fuzzy
+ msgid "Authentication"
+-msgstr "<b>Πιστοποίηση</b>"
++msgstr "Πιστοποίηση"
+ 
+-#: ../errordialogs.py:65 ../errordialogs.py:77
++#: ../errordialogs.py:65
++#: ../errordialogs.py:77
+ msgid "Not authorized"
+ msgstr "Χωρίς εξουσιοδότηση"
+ 
+@@ -86,22 +86,20 @@ msgstr "Χωρίς εξουσιοδότÎ
+ msgid "The password may be incorrect."
+ msgstr "Το συνθηματικό μπορεί να μην είναι σωστό."
+ 
+-#: ../errordialogs.py:68 ../errordialogs.py:82
++#: ../errordialogs.py:68
++#: ../errordialogs.py:82
+ msgid "CUPS server error"
+ msgstr "σφάλμα εξυπηρετητή CUPS"
+ 
+-#: ../errordialogs.py:69 ../troubleshoot/PrintTestPage.py:322
++#: ../errordialogs.py:69
++#: ../troubleshoot/PrintTestPage.py:322
+ #, python-format
+ msgid "There was an error during the CUPS operation: '%s'."
+ msgstr "Διαπιστώθηκε σφάλμα κατά τη λειτουργία CUPS: '%s'."
+ 
+ #: ../errordialogs.py:78
+-msgid ""
+-"The password may be incorrect, or the server may be configured to deny "
+-"remote administration."
+-msgstr ""
+-"Το συνθηματικό μπορεί να είναι λανθασμένο ή ο εξυπηρετητής μπορεί να είναι "
+-"ρυθμισμένος να αρνείται απομακρυσμένη διαχείριση."
++msgid "The password may be incorrect, or the server may be configured to deny remote administration."
++msgstr "Το συνθηματικό μπορεί να είναι λανθασμένο ή ο εξυπηρετητής μπορεί να είναι ρυθμισμένος να αρνείται απομακρυσμένη διαχείριση."
+ 
+ #: ../errordialogs.py:84
+ msgid "Bad request"
+@@ -123,36 +121,42 @@ msgstr "Απαιτείται αναβάÎ
+ msgid "Server error"
+ msgstr "Σφάλμα εξυπηρετητή"
+ 
+-#: ../errordialogs.py:94 ../system-config-printer.py:791
++#: ../errordialogs.py:94
++#: ../system-config-printer.py:791
+ msgid "Not connected"
+ msgstr "Χωρίς σύνδεση"
+ 
+ #: ../errordialogs.py:96
+-#, fuzzy, python-format
[...17621 lines suppressed...]
++++ system-config-printer-1.0.8/system-config-printer.glade	2008-10-13 16:47:42.000000000 +0100
+@@ -67,7 +67,7 @@
+ 		  </child>
+ 
+ 		  <child>
+-		    <widget class="GtkImageMenuItem" id="server_settings">
++		    <widget class="GtkImageMenuItem" id="server_settings_menu_entry">
+ 		      <property name="visible">True</property>
+ 		      <property name="tooltip" translatable="yes">Adjust server settings</property>
+ 		      <property name="label" translatable="yes">_Settings...</property>
+@@ -6095,7 +6095,7 @@ Till Kamppeter &lt;till.kamppeter at gmail.
+   <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
+   <property name="focus_on_map">True</property>
+   <property name="urgency_hint">False</property>
+-  <property name="has_separator">True</property>
++  <property name="has_separator">False</property>
+ 
+   <child internal-child="vbox">
+     <widget class="GtkVBox" id="dialog-vbox10">
+@@ -8533,7 +8533,7 @@ Bottom to top, right to left</property>
+ 						      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						      <property name="snap_to_ticks">False</property>
+ 						      <property name="wrap">False</property>
+-						      <property name="adjustment">100 10 1000 1 10 10</property>
++						      <property name="adjustment">100 10 1000 1 0 0</property>
+ 						      <signal name="changed" handler="on_job_option_changed" last_modification_time="Fri, 23 Feb 2007 14:12:21 GMT"/>
+ 						    </widget>
+ 						    <packing>
+@@ -8710,7 +8710,7 @@ Bind (bottom)</property>
+ 						  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						  <property name="snap_to_ticks">False</property>
+ 						  <property name="wrap">False</property>
+-						  <property name="adjustment">50 0 100 1 10 10</property>
++						  <property name="adjustment">50 0 100 1 0 0</property>
+ 						  <signal name="changed" handler="on_job_option_changed" last_modification_time="Fri, 23 Feb 2007 14:12:21 GMT"/>
+ 						</widget>
+ 						<packing>
+@@ -9012,7 +9012,7 @@ Reverse portrait (180°)</property>
+ 					  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					  <property name="snap_to_ticks">False</property>
+ 					  <property name="wrap">False</property>
+-					  <property name="adjustment">1 1 1000 1 10 10</property>
++					  <property name="adjustment">1 1 1000 1 0 0</property>
+ 					  <signal name="changed" handler="on_job_option_changed" last_modification_time="Thu, 22 Feb 2007 12:15:06 GMT"/>
+ 					</widget>
+ 					<packing>
+@@ -9250,7 +9250,7 @@ Reverse portrait (180°)</property>
+ 					      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					      <property name="snap_to_ticks">False</property>
+ 					      <property name="wrap">False</property>
+-					      <property name="adjustment">100 10 1000 1 10 10</property>
++					      <property name="adjustment">100 10 1000 1 0 0</property>
+ 					      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 13:56:24 GMT"/>
+ 					    </widget>
+ 					    <packing>
+@@ -9378,7 +9378,7 @@ Reverse portrait (180°)</property>
+ 						      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						      <property name="snap_to_ticks">False</property>
+ 						      <property name="wrap">False</property>
+-						      <property name="adjustment">100 10 1000 1 10 10</property>
++						      <property name="adjustment">100 10 1000 1 0 0</property>
+ 						      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 13:56:24 GMT"/>
+ 						    </widget>
+ 						    <packing>
+@@ -9487,7 +9487,7 @@ Reverse portrait (180°)</property>
+ 						      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						      <property name="snap_to_ticks">False</property>
+ 						      <property name="wrap">False</property>
+-						      <property name="adjustment">0 -180 180 1 10 10</property>
++						      <property name="adjustment">0 -180 180 1 0 0</property>
+ 						      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 13:56:24 GMT"/>
+ 						    </widget>
+ 						    <packing>
+@@ -9563,7 +9563,7 @@ Reverse portrait (180°)</property>
+ 						  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						  <property name="snap_to_ticks">False</property>
+ 						  <property name="wrap">False</property>
+-						  <property name="adjustment">1000 1 10000 10 100 10</property>
++						  <property name="adjustment">1000 1 10000 10 0 0</property>
+ 						  <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 13:56:24 GMT"/>
+ 						</widget>
+ 						<packing>
+@@ -9826,7 +9826,7 @@ Reverse portrait (180°)</property>
+ 						  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						  <property name="snap_to_ticks">False</property>
+ 						  <property name="wrap">False</property>
+-						  <property name="adjustment">18 0 100 1 10 10</property>
++						  <property name="adjustment">18 0 100 1 0 0</property>
+ 						  <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 15:57:14 GMT"/>
+ 						</widget>
+ 						<packing>
+@@ -9889,7 +9889,7 @@ Reverse portrait (180°)</property>
+ 					      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					      <property name="snap_to_ticks">False</property>
+ 					      <property name="wrap">False</property>
+-					      <property name="adjustment">10 1 100 0.10000000149 1 1</property>
++					      <property name="adjustment">10 1 100 0.10000000149 0 0</property>
+ 					      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 15:54:31 GMT"/>
+ 					    </widget>
+ 					    <packing>
+@@ -9950,7 +9950,7 @@ Reverse portrait (180°)</property>
+ 					      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					      <property name="snap_to_ticks">False</property>
+ 					      <property name="wrap">False</property>
+-					      <property name="adjustment">6 1 100 0.10000000149 1 1</property>
++					      <property name="adjustment">6 1 100 0.10000000149 0 0</property>
+ 					      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 15:55:39 GMT"/>
+ 					    </widget>
+ 					    <packing>
+@@ -10040,7 +10040,7 @@ Reverse portrait (180°)</property>
+ 					      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					      <property name="snap_to_ticks">False</property>
+ 					      <property name="wrap">False</property>
+-					      <property name="adjustment">18 0 100 1 10 10</property>
++					      <property name="adjustment">18 0 100 1 0 0</property>
+ 					      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 15:56:41 GMT"/>
+ 					    </widget>
+ 					    <packing>
+@@ -10234,7 +10234,7 @@ Reverse portrait (180°)</property>
+ 						  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 						  <property name="snap_to_ticks">False</property>
+ 						  <property name="wrap">False</property>
+-						  <property name="adjustment">1 1 4 1 1 1</property>
++						  <property name="adjustment">1 1 4 1 0 0</property>
+ 						  <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 16:03:08 GMT"/>
+ 						</widget>
+ 						<packing>
+@@ -10369,7 +10369,7 @@ Reverse portrait (180°)</property>
+ 					      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					      <property name="snap_to_ticks">False</property>
+ 					      <property name="wrap">False</property>
+-					      <property name="adjustment">36 0 100 1 10 10</property>
++					      <property name="adjustment">36 0 100 1 0 0</property>
+ 					      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 15:58:06 GMT"/>
+ 					    </widget>
+ 					    <packing>
+@@ -10459,7 +10459,7 @@ Reverse portrait (180°)</property>
+ 					      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
+ 					      <property name="snap_to_ticks">False</property>
+ 					      <property name="wrap">False</property>
+-					      <property name="adjustment">36 0 100 1 10 10</property>
++					      <property name="adjustment">36 0 100 1 0 0</property>
+ 					      <signal name="changed" handler="on_job_option_changed" last_modification_time="Mon, 26 Feb 2007 16:01:04 GMT"/>
+ 					    </widget>
+ 					    <packing>
+diff -up system-config-printer-1.0.8/system-config-printer.py.1.0.x system-config-printer-1.0.8/system-config-printer.py
+--- system-config-printer-1.0.8/system-config-printer.py.1.0.x	2008-09-29 17:53:53.000000000 +0100
++++ system-config-printer-1.0.8/system-config-printer.py	2008-10-13 16:47:42.000000000 +0100
+@@ -209,7 +209,7 @@ class GUI(GtkGUI, monitor.Watcher):
+                         "btnPrinterPropertiesApply",
+                         "btnPrinterPropertiesClose",
+                         "ServerSettingsDialog",
+-                        "server_settings",
++                        "server_settings_menu_entry",
+                         "statusbarMain",
+                         "new_printer", "new_class",
+                         "rename", "copy", "delete",
+@@ -338,9 +338,21 @@ class GUI(GtkGUI, monitor.Watcher):
+         self.AboutDialog.set_icon_name('printer')
+ 
+         # Set up "Problems?" link button
+-        problems = gtk.LinkButton ('', label=_("Problems?"))
++        class UnobtrusiveButton(gtk.Button):
++            def __init__ (self, **args):
++                gtk.Button.__init__ (self, **args)
++                self.set_relief (gtk.RELIEF_NONE)
++                label = self.get_child ()
++                text = label.get_text ()
++                print text
++                label.set_use_markup (True)
++                label.set_markup ('<span size="small" ' +
++                                  'underline="single" ' +
++                                  'color="#0000ee">%s</span>' % text)
++
++        problems = UnobtrusiveButton (label=_("Problems?"))
+         self.hboxServerBrowse.pack_end (problems, False, False, 0)
+-        problems.connect ('clicked', self.on_problems_linkbutton_clicked)
++        problems.connect ('clicked', self.on_problems_button_clicked)
+         problems.show ()
+ 
+         self.static_tabs = 3
+@@ -796,7 +808,8 @@ class GUI(GtkGUI, monitor.Watcher):
+                        self.chkServerBrowse, self.chkServerShare,
+                        self.chkServerRemoteAdmin,
+                        self.chkServerAllowCancelAll,
+-                       self.chkServerLogDebug):
++                       self.chkServerLogDebug,
++                       self.server_settings_menu_entry):
+             widget.set_sensitive(connected)
+ 
+         sharing = self.chkServerShare.get_active ()
+@@ -2487,7 +2500,7 @@ class GUI(GtkGUI, monitor.Watcher):
+             nonfatalException()
+ 
+     ### The "Problems?" clickable label
+-    def on_problems_linkbutton_clicked (self, *args):
++    def on_problems_button_clicked (self, *args):
+         if not self.__dict__.has_key ('troubleshooter'):
+             self.troubleshooter = troubleshoot.run (self.on_troubleshoot_quit,
+                                                     parent=self.ServerSettingsDialog)


Index: system-config-printer.spec
===================================================================
RCS file: /cvs/pkgs/rpms/system-config-printer/devel/system-config-printer.spec,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- system-config-printer.spec	29 Sep 2008 17:08:21 -0000	1.219
+++ system-config-printer.spec	13 Oct 2008 16:37:54 -0000	1.220
@@ -7,13 +7,14 @@
 Summary: A printer administration tool
 Name: system-config-printer
 Version: 1.0.8
-Release: 2%{?dist}
+Release: 3%{?dist}
 License: GPLv2+
 URL: http://cyberelk.net/tim/software/system-config-printer/
 Group: System Environment/Base
 Source0: http://cyberelk.net/tim/data/system-config-printer/1.0.x/system-config-printer-%{version}.tar.bz2
 Source1: http://cyberelk.net/tim/data/pycups/pycups-%{pycups_version}.tar.bz2
 Source2: http://cyberelk.net/tim/data/pysmbc/pysmbc-%{pysmbc_version}.tar.bz2
+Patch1: system-config-printer-1.0.x.patch
 
 BuildRequires: cups-devel >= 1.2
 BuildRequires: python-devel >= 2.4
@@ -60,6 +61,7 @@
 
 %prep
 %setup -q -a 1 -a 2
+%patch1 -p1 -z .1.0.x
 
 %build
 %configure
@@ -149,6 +151,19 @@
 exit 0
 
 %changelog
+* Mon Oct 13 2008 Tim Waugh <twaugh at redhat.com> 1.0.8-3
+- Added patch for 1.0.x changes since 1.0.8:
+  - Don't use a LinkButton for the 'Problems?' button (bug #465407).
+  - Don't use a separator for the server settings dialog (bug
+    #465407).
+  - Don't set non-zero page size for SpinButtons.
+  - Don't show an error dialog if an IPP operation's authentication
+    dialog is cancelled by the user, but show an error dialog if the
+    password was incorrect (bug #465407).
+  - Set Server Settings... menu entry sensitive depending on whether
+    we are connected to a server (Ubuntu #280736).
+  - Lots of translations updated.
+
 * Mon Sep 29 2008 Tim Waugh <twaugh at redhat.com> 1.0.8-2
 - Removed patch (no longer needed).
 




More information about the scm-commits mailing list