wavs saved as wavs, pumped up version
authorjait <jari.tenhunen@iki.fi>
Fri, 8 Sep 2006 17:09:41 +0000 (17:09 +0000)
committerjait <jari.tenhunen@iki.fi>
Fri, 8 Sep 2006 17:09:41 +0000 (17:09 +0000)
git-svn-id: svn+ssh://garage/svnroot/maemo-recorder/trunk@10 2441f5eb-5316-0410-9386-a49b32a51a4a

TODO
debian/changelog
src/maemo-recorder-file.c

diff --git a/TODO b/TODO
index 848a382..95b67a1 100644 (file)
--- a/TODO
+++ b/TODO
@@ -2,6 +2,9 @@
 TODO for maemo-recorder
 -----------------------
 
+ - bigger finger-pushable buttons
+   - probably at the top if we cannot use the toolbar
+   - could be an alternate/configurable mode
  - support for changing the capabilities and properties of the elements
    using UI
    - especially for "raw" files, the user should be able to choose the format
@@ -19,9 +22,12 @@ TODO for maemo-recorder
  - Use temp files more carefully and clean them up
  - GStreamer bugs
    - GStreamer doesn't report stream length, except for MP3
-   - GSstreamer doesn't want to seek streams, except MP3
+   - GStreamer doesn't want to seek streams, except MP3
    - GStreamer gives stream position only after ~2 secs of playback, for some streams (at least PCM) the reported
      position can exceed the real audio stream length (that is stored in the file)
  - mime type for raw PCM?, icons for mime types
- - About menu entry & dialog
+ - visualisation / eye candy
+   - VU meter (using "level" element), only drawback is that it requires audio/x-raw-int
+   - oscillator =)
+ - About menu entry & dialog?
  
index 9bc91df..a656a80 100644 (file)
@@ -1,3 +1,11 @@
+maemo-recorder (0.0.18) unstable; urgency=low
+
+  * cleaned up and re-organized the settings dialog
+  * WAVs are now saved as .wav, not .raw :)
+  * added mime type for wav
+
+ -- Jari Tenhunen <jari.tenhunen@nokia.com>  Fri,  8 Sep 2006 20:06:14 +0300
+
 maemo-recorder (0.0.17) unstable; urgency=low
 
   * add settings
index eaa8238..af5d07d 100644 (file)
@@ -90,6 +90,8 @@ getExtension(gint format)
         case FORMAT_PCMU:
             return EXTENSION_AU;
             /* return EXTENSION_PCMU; */
+        case FORMAT_WAV:
+            return EXTENSION_WAV;
         case FORMAT_PCM:
         default:
             return EXTENSION_RAW;