summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-08-20 16:02:58 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-08-20 16:02:58 +0200
commit7e5da7f38f4bf950c4ff8e1688b872a229c2e0cb (patch)
treee84fd514356bbc70cb3ef748c5d87eeb905969db
parent7eaf7c42a2dbcb1dfd33ab1a9ee5aabfe57c158c (diff)
downloadabrt-7e5da7f38f4bf950c4ff8e1688b872a229c2e0cb.tar.gz
abrt-7e5da7f38f4bf950c4ff8e1688b872a229c2e0cb.tar.xz
abrt-7e5da7f38f4bf950c4ff8e1688b872a229c2e0cb.zip
new version, small fixes to gui
-rw-r--r--abrt.spec8
-rw-r--r--configure.ac2
-rw-r--r--src/Gui/CC_gui_functions.py4
3 files changed, 10 insertions, 4 deletions
diff --git a/abrt.spec b/abrt.spec
index ef08f998..256e6fbb 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -3,8 +3,8 @@
%{!?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.7.1
-Release: 1%{?dist}
+Version: 0.0.7.2
+Release: 3%{?dist}
License: GPLv2+
Group: Applications/System
URL: https://fedorahosted.org/abrt/
@@ -330,6 +330,10 @@ fi
%defattr(-,root,root,-)
%changelog
+* Thu Aug 20 2009 Jiri Moskovcak <jmoskovc@redhat.com> 0.0.7.2-1
+- new version
+- fixed some bugs found during test day
+
* Wed Aug 19 2009 Jiri Moskovcak <jmoskovc@redhat.com> 0.0.7.1-1
- fixes to bugzilla plugin and gui to make the report message more user-friendly
diff --git a/configure.ac b/configure.ac
index d8b2949e..a010b453 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([abrt], [0.0.7.1], [jmoskovc@redhat.com, zprikryl@redhat.com])
+AC_INIT([abrt], [0.0.7.2], [jmoskovc@redhat.com, zprikryl@redhat.com])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
diff --git a/src/Gui/CC_gui_functions.py b/src/Gui/CC_gui_functions.py
index 889fb60d..d6550fac 100644
--- a/src/Gui/CC_gui_functions.py
+++ b/src/Gui/CC_gui_functions.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
import gtk
import subprocess
+import sys
# url markup is supported from gtk 2.18 so we need to use libsexy
if gtk.gtk_version[1] <= 17:
from sexy import UrlLabel as Label
@@ -24,7 +25,8 @@ def gui_report_dialog ( report_status_dict, parent_dialog,
message_type=gtk.MESSAGE_INFO,
widget=None, page=0, broken_widget=None ):
builder = gtk.Builder()
- builder.add_from_file("dialogs.GtkBuilder")
+ builderfile = "%s%sdialogs.GtkBuilder" % (sys.path[0],"/")
+ builder.add_from_file(builderfile)
dialog = builder.get_object("ReportDialog")