Bumping to 0.8.6
[theonering] / support / builddeb.py
index 87e09a7..df82466 100755 (executable)
@@ -34,6 +34,37 @@ __email__ = "eopage@byu.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
+0.8.6
+* Switched to a 10 second timeout without connections before closing TOR
+* Reduced the numbr of conversations cached
+* Forcing system contacts to be enabled but only calls are working for now
+* Bugfix: Reduced windows of hitting "Network Failure" when transitioning between networks
+
+0.8.5
+* Bugfix: User's locale differs from google's causes errors
+* Bugfix: Reducing the times we ignore the cache of past conversations
+* Bugfix: The One Ring does not work on desktop systems with Empathy 2.28
+
+0.8.4
+* Reduced time allowed for disconnect due to RTComm not putting TOR on hold, causing miss of callback
+* Doubled the timed disconnects time
+* Cleaning up things to better match the latest Empathy
+* Bugfix: Random "General Error"s when making a call
+
+0.8.3
+* "Hold" support for calls, so that initiating a callback does not block incoming calls
+* Increased the auto-cleanup timeout from 5 seconds to 10 seconds
+
+0.8.2
+* Improved debug logs, removing noise
+* Reduced allotted disconnect time from 5 seconds to 2
+* Auto-cleanup resources when client only does phase 1 of 2 connection creation phases
+* Added 26x26 and 64x64 variants of icons to hopefully fix issues on Maemo 4.1
+
+0.8.1
+* Canceling of outbound calls
+* Bugfix: Removing race condition with disconnect.  I introduced it expecting it to help but it hurts more than it helps
+
 0.8.0
 * Basic avatar support to distinguish phone types
 * Tweaks to hopefully improve behavior
@@ -175,7 +206,6 @@ def build_package(distribution):
                "debian": "comm",
                "diablo": "user/network",
                "fremantle": "user/network",
-               "mer": "user/network",
        }[distribution]
        p.depends = ", ".join([
                "python (>= 2.5) | python2.5",
@@ -187,11 +217,10 @@ def build_package(distribution):
                "debian": "",
                "diablo": ", python2.5-conic, account-plugin-haze",
                "fremantle": ", account-plugin-haze",
-               "mer": "",
        }[distribution]
        p.arch = "all"
        p.urgency = "low"
-       p.distribution = "diablo fremantle mer debian"
+       p.distribution = "diablo fremantle debian"
        p.repository = "extras"
        p.changelog = __changelog__
        p.postinstall = __postinstall__
@@ -207,11 +236,17 @@ def build_package(distribution):
        p["/usr/share/dbus-1/services"] = ["org.freedesktop.Telepathy.ConnectionManager.theonering.service"]
        if distribution in ("debian", ):
                p["/usr/share/mission-control/profiles"] = ["theonering.profile.%s|theonering.profile"% distribution]
-       elif distribution in ("diablo", "fremantle", "mer"):
+       elif distribution in ("diablo", "fremantle"):
                p["/usr/share/osso-rtcom"] = ["theonering.profile.%s|theonering.profile"% distribution]
        p["/usr/lib/telepathy"] = ["telepathy-theonering"]
        p["/usr/share/telepathy/managers"] = ["theonering.manager"]
-       p["/usr/share/icons/hicolor/32x32/hildon"] = ["32-tor_handset.png|im_theonering.png"]
+       if distribution in ("debian", ):
+               iconBasePath = "/usr/share/icons/gnome/%s/apps"
+       elif distribution in ("diablo", "fremantle"):
+               iconBasePath = "/usr/share/icons/hicolor/%s/hildon"
+       p[iconBasePath % "26x26"] = ["26-tor_handset.png|im-theonering.png"]
+       p[iconBasePath % "32x32"] = ["32-tor_handset.png|im-theonering.png"]
+       p[iconBasePath % "64x64"] = ["64-tor_handset.png|im-theonering.png"]
        p["/usr/share/theonering"] = [
                "32-tor_handset.png|tor_handset.png",
                "32-tor_phone.png|tor_phone.png",