From adf2337fe9f790776cb14ed378a18824a0a42760 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 22 Sep 2009 12:31:38 +0200 Subject: Version 0.0.9 --- abrt.spec | 25 ++++++++++++++++++++++++- configure.ac | 2 +- src/Gui/SettingsDialog.py | 11 +---------- src/Gui/settings.glade | 2 ++ 4 files changed, 28 insertions(+), 12 deletions(-) diff --git a/abrt.spec b/abrt.spec index 1d9cb3d6..a0cae067 100644 --- a/abrt.spec +++ b/abrt.spec @@ -3,7 +3,7 @@ %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Summary: Automatic bug detection and reporting tool Name: abrt -Version: 0.0.8.5 +Version: 0.0.9 Release: 1%{?dist} License: GPLv2+ Group: Applications/System @@ -353,6 +353,29 @@ fi %defattr(-,root,root,-) %changelog +* Tue Sep 22 2009 Jiri Moskovcak 0.0.9-1 +- new version +- comments and how to reproduce are stored now (npajkovs@redhat.com) +- reduce verbosity a bit (vda.linux@googlemail.com) +- GUI: fixed word wrap in Comment field rhbz#524349 (jmoskovc@redhat.com) +- remove last vestives of dbus-c++ from build system (vda.linux@googlemail.com) +- GUI: added popup menu, fixed behaviour when run with root privs (jmoskovc@redhat.com) +- add dbus signalization when quota exceeded (npajkovs@redhat.com) +- Added cleaning of attachment variable, so there should not be mixed attachmetn anymore. (zprikryl@redhat.com) +- fixed closing of debug dump in case of existing backtrace (zprikryl@redhat.com) +- remove C++ dbus glue in src/CLI; fix a bug in --report (vda.linux@googlemail.com) +- new polkit action for installing debuginfo, default "yes" (danny@rawhide.localdomain) +- Polkit moved to Utils (can be used both in daemon and plugins) (danny@rawhide.localdomain) +- oops... remove stray trailing '\' (vda.linux@googlemail.com) +- GUI: added missing tooltips (jmoskovc@redhat.com) +- PYHOOK: ignore KeyboardInterrupt exception (jmoskovc@redhat.com) +- added ticket uploader plugin (gavin@redhat.com) (zprikryl@redhat.com) +- GUI: added UI for global settings (just preview, not usable!) (jmoskovc@redhat.com) +- Add checker if bugzilla login and password are filled in. (npajkovs@redhat.com) +- Add new config option InstallDebuginfo into CCpp.conf (npajkovs@redhat.com) +- translation updates +- many other fixes + * Fri Sep 4 2009 Jiri Moskovcak 0.0.8.5-1 - new version - APPLET: added about dialog, removed popup, if icon is not visible, fixed (trac#43) (jmoskovc@redhat.com) diff --git a/configure.ac b/configure.ac index 567b8120..b1c434d7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([abrt], [0.0.8.5], [jmoskovc@redhat.com, zprikryl@redhat.com]) +AC_INIT([abrt], [0.0.9], [jmoskovc@redhat.com, zprikryl@redhat.com]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/src/Gui/SettingsDialog.py b/src/Gui/SettingsDialog.py index 15e19e2e..a0c79f5e 100644 --- a/src/Gui/SettingsDialog.py +++ b/src/Gui/SettingsDialog.py @@ -25,7 +25,6 @@ class SettingsDialog: self.builder = gtk.Builder() self.builder.add_from_file(builderfile) self.window = self.builder.get_object("wGlobalSettings") - print "GSD init" self.builder.get_object("bSaveSettings").connect("clicked", self.on_ok_clicked) self.builder.get_object("bCancelSettings").connect("clicked", self.on_cancel_clicked) self.builder.get_object("bAddCronJob").connect("clicked", self.on_bAddCronJob_clicked) @@ -73,10 +72,6 @@ class SettingsDialog: except Exception, e: # FIXME: this should be error gui message! print e - for i in self.settings: - print "XXX", i - for key,val in self.settings[i].iteritems(): - print "\t", key, val try: self.pluginlist = getPluginInfoList(self.ccdaemon, refresh=True) except Exception, e: @@ -196,7 +191,7 @@ class SettingsDialog: print "edit action" def add_AnalyzerAction(self, action=None): - print "add_AnalyzerAction" + #print "add_AnalyzerAction" hbox = gtk.HBox() action_list = gtk.Entry() edit_actions = gtk.Button() @@ -234,16 +229,12 @@ class SettingsDialog: def on_bAddAction_clicked(self, button): self.add_AnalyzerAction() - print "on_bAddActions_clicked" def on_cancel_clicked(self,button): - print "hide" self.window.hide() def dehydrate(self): self.ccdaemon.setSettings(self.settings) - print "dehydrate" def show(self): - print "show" self.window.show() diff --git a/src/Gui/settings.glade b/src/Gui/settings.glade index 639af2c3..2d50ab1f 100644 --- a/src/Gui/settings.glade +++ b/src/Gui/settings.glade @@ -694,8 +694,10 @@ gtk-ok True + False True True + This function is not implemented yet! True -- cgit