Version bump and fixing of several bugs
authorepage <eopage@byu.net>
Mon, 14 Sep 2009 16:29:09 +0000 (16:29 +0000)
committerepage <eopage@byu.net>
Mon, 14 Sep 2009 16:29:09 +0000 (16:29 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@435 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

src/constants.py
src/dialcentral.py
src/null_views.py
support/builddeb.py

index 485cd56..10354bd 100644 (file)
@@ -2,8 +2,8 @@ import os
 
 __pretty_app_name__ = "DialCentral"
 __app_name__ = "dialcentral"
-__version__ = "1.0.5"
-__build__ = 4
+__version__ = "1.0.6"
+__build__ = 0
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".dialcentral")
 _user_settings_ = "%s/settings.ini" % _data_path_
index b5cc152..ab30c07 100755 (executable)
@@ -13,6 +13,7 @@ import dc_glade
 
 userLogPath = "%s/dialcentral.log" % constants._data_path_
 logging.basicConfig(level=logging.DEBUG, filename=userLogPath)
+logging.info("Dialcentral %s-%s" % (constants.__version__, constants.__build__))
 try:
        dc_glade.run_dialpad()
 finally:
index 73bfd75..09315aa 100644 (file)
@@ -89,7 +89,7 @@ class AccountInfo(object):
                self._smsCheckbox.set_sensitive(True)
 
        @staticmethod
-       def update():
+       def update(force = False):
                return False
 
        @staticmethod
@@ -121,7 +121,7 @@ class RecentCallsView(object):
        def disable(self):
                pass
 
-       def update(self):
+       def update(self, force = False):
                return False
 
        @staticmethod
@@ -153,7 +153,7 @@ class MessagesView(object):
        def disable(self):
                pass
 
-       def update(self):
+       def update(self, force = False):
                return False
 
        @staticmethod
@@ -185,7 +185,7 @@ class ContactsView(object):
        def disable(self):
                self._booksSelectionBox.set_sensitive(True)
 
-       def update(self):
+       def update(self, force = False):
                return False
 
        @staticmethod
index 0a0d993..604c8cb 100755 (executable)
@@ -18,6 +18,9 @@ __email__ = "eopage@byu.net"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = '''
+1.0.6
+* Fixing some dependencies for Diablo
+
 1.0.5
 * Contacts Tab remembers the last address book viewed on restart
 * Applied some suggested changes for being more thumb friendly
@@ -166,7 +169,7 @@ def build_package(distribution):
        p.mail = __email__
        p.license = "lgpl"
        p.depends = {
-               "diablo": "python2.5, python2.5-gtk2, python2.5-xml, python2.5-dbus",
+               "diablo": "python2.5, python2.5-gtk2, python2.5-xml, python2.5-dbus, python2.5-hildon",
                "mer": "python2.6, python-gtk2, python-xml, python-glade2, python-dbus",
        }[distribution]
        p.section = "user/communication"