Adding todos
authorepage <eopage@byu.net>
Thu, 15 Jul 2010 00:03:08 +0000 (00:03 +0000)
committerepage <eopage@byu.net>
Thu, 15 Jul 2010 00:03:08 +0000 (00:03 +0000)
git-svn-id: file:///svnroot/nqaap/trunk@44 00ff6f12-f5ab-46b1-af0e-967c86d3154f

src/opt/Nqa-Audiobook-player/FileStorage.py
src/opt/Nqa-Audiobook-player/Gui.py
src/opt/Nqa-Audiobook-player/SimpleGStreamer.py
src/opt/Nqa-Audiobook-player/constants.py

index e47d2b2..8536f8a 100644 (file)
@@ -8,6 +8,9 @@ import logging
 _moduleLogger = logging.getLogger(__name__)
 
 
+# @todo Add bookmarks
+
+
 class FileStorage(object):
 
     def __init__(self, path="~/.SornPlayer/"):
index c3adb31..9eecb2c 100644 (file)
@@ -24,6 +24,14 @@ _moduleLogger = logging.getLogger(__name__)
 
 class Gui(object):
 
+    # @todo Jump straight to book selection on first launch?
+    # @todo Absolute increments (+/-5 seconds)
+    # @todo Show elapsed time / time lef
+    # @todo Volume control when screen is off
+    # @todo Variable speed
+    #  http://scaletempo.sourceforge.net/0/task-list.html
+    #  http://www.gstreamer.net/data/doc/gstreamer/head/gst-plugins-bad-plugins/html/gst-plugins-bad-plugins-scaletempo.html
+
     def __init__(self):
         _moduleLogger.info("Starting GUI")
         self._clipboard = gtk.clipboard_get()
index 4779ba5..d5f19a4 100644 (file)
@@ -11,6 +11,9 @@ _moduleLogger = logging.getLogger(__name__)
 
 class SimplePlayer(object):
 
+    # @todo Add pitch/speed control
+    # http://github.com/jwagner/playitslowly/blob/master/playitslowly/pipeline.py
+
     def __init__(self, on_playing_done = None):
         #Fields
         self.playing = False
index 0970bf4..3fdc0c3 100644 (file)
@@ -2,7 +2,7 @@ import os
 
 __pretty_app_name__ = "nQaap"
 __app_name__ = "nqaap"
-__version__ = "0.7.2-1"
+__version__ = "0.8.6"
 __build__ = 0
 __app_magic__ = 0xdeadbeef
 _data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__)