Bump to 0.8.1
authorepage <eopage@byu.net>
Sat, 8 May 2010 21:57:05 +0000 (21:57 +0000)
committerepage <eopage@byu.net>
Sat, 8 May 2010 21:57:05 +0000 (21:57 +0000)
git-svn-id: file:///svnroot/nqaap/trunk@26 00ff6f12-f5ab-46b1-af0e-967c86d3154f

support/build_nqaap.py

index 6eb481c..3653b8c 100755 (executable)
@@ -69,24 +69,18 @@ rm -f ~/.nqaap/nqaap.log
     #  chmod +x /usr/bin/mclock.py""" #Set here your pre install script\r
     #  p.preremove="""#!/bin/sh\r
     #  chmod +x /usr/bin/mclock.py""" #Set here your pre remove script\r
-    version = "0.8.0"           #Version of your software, e.g. "1.2.0" or "0.8.2"\r
-    build = "3" #Build number, e.g. "1" for the first build of this\r
+    version = "0.8.1"           #Version of your software, e.g. "1.2.0" or "0.8.2"\r
+    build = "0" #Build number, e.g. "1" for the first build of this\r
                                 #version of your software. Increment\r
                                 #for later re-builds of the same\r
                                 #version of your software.  Text with\r
                                 #changelog information to be displayed\r
                                 #in the package "Details" tab of the\r
                                 #Maemo Application Manager\r
-    changeloginformation = "Merged changes from EPage (proper changelog later)\nNew Icon by Strutten."\r
-    # 0.7.2 : Seek bar now responds to clicks (rather than drags)\nFixed bug with wrong text showing on button after changed chapter.\r
-    # 0.7.1 : Fixed crash when current points to non existing book\r
-    # 0.7.0 : Now ignores pressed outside the chapter selection menu\nAdded help\r
-    # 0.6.1 : Fixed bug that prevented running on devices without Audiobook folder.\r
-    #         Added tip on where to place audiobooks.\r
-    # 0.6.0 : Now also plays .mp3 files\r
-    # 0.5.0 : Second release. Now shows which chapter is playing, and scrolls to it when changing.\r
-    # 0.4.9 : First release. Now it should work\r
-    #  \r
+    changeloginformation = """Bugfix for Post 104: Chapter out of range error\r
+Bugfix for Post 110: Exception on launch of nqa for Maemo 4.1\r
+Updated icons to have transparency\r
+"""\r
     dir_name = "src" #Name of the subfolder containing your package\r
                                 #source files\r
                                 #(e.g. usr\share\icons\hicolor\scalable\myappicon.svg,\r
@@ -97,11 +91,10 @@ rm -f ~/.nqaap/nqaap.log
     #Thanks to DareTheHair from talk.maemo.org for this snippet that\r
     #recursively builds the file list\r
     for root, dirs, files in os.walk(dir_name):\r
+        if any(f.startswith(".") for f in root.split(os.sep)):\r
+            continue # avoid hidden folders, esp svn ones\r
+\r
         real_dir = root[len(dir_name):]\r
-        if '.' in real_dir:\r
-            continue # if some part of the dirname contains '.' we\r
-                                        # ignore all files (avoid .svn\r
-                                        # and others)\r
         fake_file = []\r
         for f in files:\r
             fake_file.append(root + os.sep + f + "|" + f)\r