Mic Bug fixes
authorEd Page <eopage@byu.net>
Fri, 17 Apr 2009 21:56:09 +0000 (16:56 -0500)
committerEd Page <eopage@byu.net>
Fri, 17 Apr 2009 21:56:09 +0000 (16:56 -0500)
* Updating version in the app
* Fixed some polish issues with the popup calendar
* Fixed the issue when using the None backend you couldn't enable RTM backend

src/doneit_glade.py
src/gtk_toolbox.py
support/builddeb.py

index 1557c2f..69bc6e0 100755 (executable)
@@ -33,7 +33,7 @@ class DoneIt(object):
 
        __pretty_app_name__ = "DoneIt"
        __app_name__ = "doneit"
-       __version__ = "0.3.0"
+       __version__ = "0.3.1"
        __app_magic__ = 0xdeadbeef
 
        _glade_files = [
@@ -99,6 +99,7 @@ class DoneIt(object):
                        "on_about": self._on_about_activate,
                }
                self._widgetTree.signal_autoconnect(callbackMapping)
+               self._widgetTree.get_widget("connectMenuItem").connect("activate", lambda *args: self._switch_ui(self._defaultUIName))
 
                if self.__window:
                        if hildon is None:
@@ -309,8 +310,8 @@ class DoneIt(object):
                dlg.set_version(self.__version__)
                dlg.set_copyright("Copyright 2008 - LGPL")
                dlg.set_comments("")
-               dlg.set_website("")
-               dlg.set_authors([""])
+               dlg.set_website("http://doneit.garage.maemo.org")
+               dlg.set_authors(["Ed Page"])
                dlg.run()
                dlg.destroy()
 
index 0f29774..bebe859 100644 (file)
@@ -331,6 +331,9 @@ class PopupCalendar(object):
                self._popupWindow.add(self._calendar)
                self._popupWindow.set_transient_for(parent)
                self._popupWindow.set_modal(True)
+               self._popupWindow.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DIALOG)
+               self._popupWindow.set_skip_pager_hint(True)
+               self._popupWindow.set_skip_taskbar_hint(True)
 
        def run(self):
                self._popupWindow.show_all()
index 9111b62..77ff514 100755 (executable)
@@ -11,6 +11,8 @@ __version__ = "0.3.1"
 __build__ = 0
 __changelog__ = '''\
 0.3.1
+ * Fixed bug where if you had no backend enabled, you couldn't enable a backend (Now hit "Connect" in the "File" menu)
+ * Fixed some polish bugs with the popup calendar
 
 0.3.0
  * Initial Release