Fixing and documenting various bugs
authorepage <eopage@byu.net>
Thu, 24 Sep 2009 03:36:41 +0000 (03:36 +0000)
committerepage <eopage@byu.net>
Thu, 24 Sep 2009 03:36:41 +0000 (03:36 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@473 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

src/constants.py
src/gv_views.py
src/hildonize.py
support/builddeb.py
support/py2deb.py

index 90d36f4..0d9e054 100644 (file)
@@ -3,7 +3,7 @@ import os
 __pretty_app_name__ = "DialCentral"
 __app_name__ = "dialcentral"
 __version__ = "1.0.6"
-__build__ = 6
+__build__ = 8
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".dialcentral")
 _user_settings_ = "%s/settings.ini" % _data_path_
index 223a48a..41c56ba 100644 (file)
@@ -20,6 +20,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 @todo Touch selector for callback number
 @todo Alternate UI for dialogs (stackables)
+@bug Contacts don't populate
+@bug large scrollbars aren't working
+@bug exception when killing banner on contacts
+@bug No showing of any banners
 """
 
 from __future__ import with_statement
index 65803cc..40ea501 100644 (file)
@@ -323,7 +323,7 @@ try:
        hildonize_scrollwindow_with_viewport = _hildon_hildonize_scrollwindow
 except AttributeError:
        try:
-               hildon.hildon_helper_hildonize_scrollwindow
+               hildon.hildon_helper_set_thumb_scrollbar
                hildonize_scrollwindow = _hildon_hildonize_scrollwindow
                hildonize_scrollwindow_with_viewport = _hildon_hildonize_scrollwindow
        except AttributeError:
index c3619d8..b1780c8 100755 (executable)
@@ -192,7 +192,7 @@ def build_package(distribution):
        py2deb.Py2deb.SECTIONS = py2deb.SECTIONS_BY_POLICY[distribution]
        p = py2deb.Py2deb(__appname__)
        p.description = __description__
-       p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
+       #p.upgradeDescription = __changelog__.split("\n\n", 1)[0]
        p.author = __author__
        p.mail = __email__
        p.license = "lgpl"
index ad62a40..dceea15 100644 (file)
@@ -668,7 +668,7 @@ Recommends: %(recommends)s
 Description: %(description)s""" % locals()
             if self.upgradeDescription:
                 upgradeDescription = "XB-Maemo-Upgrade-Description: %s" % self.upgradeDescription.strip()
-                txt = "\n".join((txt, "\n  ".join(upgradeDescription.split("\n")), ""))
+                txt = "%s\n%s" % (txt, "\n  ".join(upgradeDescription.split("\n")))
             if self.icon:
                 f = open(self.icon, "rb")
                 try: