~ubuntu-branches/ubuntu/maverick/gwibber/maverick-updates

« back to all changes in this revision

Viewing changes to gwibber/gwui.py

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2010-11-09 14:06:05 UTC
  • mfrom: (0.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20101109140605-612kiws7snsb4t88
Tags: 2.32.1-0ubuntu1
* New upstream release (LP: #673161)
  - Backported fix for clearing multi-column streams when activated by
    the messaging indicator (LP: #643487)
  - Save window size/position when it changes, so it doesn't get moved
    unexpectedly when activated by the messaging indicator
  - Fixed dupe notifications as well as displaying dupes in the stream
  - Shouldn't display reply icon for messages from you (LP: #661330)
  - Private messages shouldn't allow public replies (LP: #661358)
  - Private messages shouldn't allow retweets (LP: #661359)

Show diffs side-by-side

added added

removed removed

Lines of Context:
755
755
        messages.append(message)
756
756
 
757
757
    def dupematch(item, message):
758
 
      if item["service"] == message["service"] and item["id"] == message["id"]:
 
758
      if item["service"] == message["service"] and item["mid"] == message["mid"]:
759
759
        return True
760
760
 
761
761
      for item in item["dupes"]:
762
 
        if item["service"] == message["service"] and item["id"] == message["id"]:
 
762
        if item["service"] == message["service"] and item["mid"] == message["mid"]:
763
763
          return True
764
764
 
765
765
    # Detect duplicates