Bump to 1.0
authorEd Page <eopage@byu.net>
Sat, 5 Jun 2010 18:40:37 +0000 (13:40 -0500)
committerEd Page <eopage@byu.net>
Sat, 5 Jun 2010 18:40:37 +0000 (13:40 -0500)
src/constants.py
src/gonvert.py
support/builddeb.py
www/gonvert.deb

index 63cd501..f496fa5 100644 (file)
@@ -2,7 +2,7 @@ import os
 
 __pretty_app_name__ = "Gonvert"
 __app_name__ = "gonvert"
-__version__ = "0.9.3"
+__version__ = "1.0.0"
 __build__ = 0
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".gonvert")
index 17672fc..2aabb5c 100755 (executable)
@@ -10,7 +10,7 @@ sys.path.append("/usr/lib/gonvert/")
 
 
 import constants
-import gonvert_glade
+import gonvert_qt
 
 
 try:
@@ -26,4 +26,4 @@ _moduleLogger.info("Kernel: %s (%s) for %s" % os.uname()[2:])
 _moduleLogger.info("Hostname: %s" % os.uname()[1])
 
 
-gonvert_glade.run_gonvert()
+gonvert_qt.run_gonvert()
index 478e502..233dfd7 100755 (executable)
@@ -19,9 +19,14 @@ __email__ = "anthony@unihedron.com"
 __version__ = constants.__version__
 __build__ = constants.__build__
 __changelog__ = """
-0.9.3
-* Rotation support through Ctrl+o
-* Switching from scrollbar to panning
+1.0.0
+* Switched from GTK to QT in preparation for Meego, all previous features still present
+* Except removed the current form of search
+* Added a "Recent" window
+* Added a "Quick Jump" window (to replace old form of search)
+* Added favorites to limit the number of categories and units shown
+* Should be auto-rotatable (might not be working for some reason)
+* Should auto-enable Fn on Maemo 5
 """
 
 
@@ -73,15 +78,8 @@ def build_package(distribution):
        p.depends = ", ".join([
                "python2.6 | python2.5",
                "python-gtk2 | python2.5-gtk2",
-               "python-xml | python2.5-xml",
-               "python-dbus | python2.5-dbus",
+               "python-pyqt4 | python2.5-pyqt4",
        ])
-       maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon"
-       p.depends += {
-               "debian": ", python-glade2",
-               "diablo": maemoSpecificDepends,
-               "fremantle": maemoSpecificDepends + ", python-glade2",
-       }[distribution]
        p.recommends = ", ".join([
        ])
        p.section = {
index 424d639..f3006d1 100644 (file)
Binary files a/www/gonvert.deb and b/www/gonvert.deb differ