diff -Nru lernid-0.7/debian/changelog lernid-0.7ubuntu1/debian/changelog --- lernid-0.7/debian/changelog 2010-08-02 03:53:48.000000000 -0400 +++ lernid-0.7ubuntu1/debian/changelog 2011-03-30 21:42:12.000000000 -0400 @@ -1,3 +1,11 @@ +lernid (0.7ubuntu1) natty; urgency=low + + * Fix Significant bugs + (LP: #716937) - Correct specification of text tags colors + (LP: #727232) - Add desktopcouch as dependency + + -- John S Gruber Tue, 29 Mar 2011 16:22:10 -0400 + lernid (0.7) maverick; urgency=low * New upstream version, fixes bugs: diff -Nru lernid-0.7/debian/control lernid-0.7ubuntu1/debian/control --- lernid-0.7/debian/control 2010-08-02 03:53:19.000000000 -0400 +++ lernid-0.7ubuntu1/debian/control 2011-03-30 21:05:09.000000000 -0400 @@ -24,7 +24,8 @@ python-gobject, python-vobject, python-gtk2, - python-poppler + python-poppler, + desktopcouch Recommends: telepathy-idle, python-vte, diff -Nru lernid-0.7/lernid/widgets/Classroom.py lernid-0.7ubuntu1/lernid/widgets/Classroom.py --- lernid-0.7/lernid/widgets/Classroom.py 2010-08-02 03:53:19.000000000 -0400 +++ lernid-0.7ubuntu1/lernid/widgets/Classroom.py 2011-03-29 16:19:13.000000000 -0400 @@ -62,9 +62,9 @@ self._buffer = self._textview.get_buffer() text_color = self._textview.get_style().text[gtk.STATE_INSENSITIVE] - self._buffer.create_tag('gray', foreground=text_color) + self._buffer.create_tag('gray', foreground_gdk=text_color) highlight = self._textview.get_style().bg[gtk.STATE_SELECTED] - self._buffer.create_tag('highlight', foreground=highlight) + self._buffer.create_tag('highlight', foreground_gdk=highlight) self._init_hyperlinks() self.show_all() diff -Nru lernid-0.7/lernid/widgets/NativeChatroom.py lernid-0.7ubuntu1/lernid/widgets/NativeChatroom.py --- lernid-0.7/lernid/widgets/NativeChatroom.py 2010-08-02 03:53:19.000000000 -0400 +++ lernid-0.7ubuntu1/lernid/widgets/NativeChatroom.py 2011-03-29 16:21:10.000000000 -0400 @@ -58,9 +58,9 @@ self._buffer = self._textview.get_buffer() text_color = self._textview.get_style().text[gtk.STATE_INSENSITIVE] - self._buffer.create_tag('gray', foreground=text_color) + self._buffer.create_tag('gray', foreground_gdk=text_color) highlight = self._textview.get_style().bg[gtk.STATE_SELECTED] - self._buffer.create_tag('highlight', foreground=highlight) + self._buffer.create_tag('highlight', foreground_gdk=highlight) self._input = builder.get_object('input') self._input.connect('icon-press', self._send_text)