File: TODO

package info (click to toggle)
gnomad2 2.9.6-12
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,068 kB
  • sloc: ansic: 11,696; sh: 1,117; makefile: 68
file content (57 lines) | stat: -rw-r--r-- 1,908 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
* Problems with GNOMAD:

OUTSTANDING BUGS:
-----------------

  Removing two files after another from a playlist fails :-P
  This must really be fixed soon.

  Trying to transfer protected files will end in misery.
  Warn and remove from transfer list.

  Large files >= 2GB do not show up in the file view.


ENHANCEMENTS:
-------------

  Modularize protocol support so that libmtp glue code and
  libnjb glue code is in one file each. So we get:

  device.c/.h (replaces jukebox.c/.h)
  pdedevice.c (#include "device.h", #include <libnjb.h>)
  mtpdevice.c (#include "device.h", #include <libmtp.h>)

  device.c will contain new wrappers in the spirit of jukebox.c
  and all device-agnostic code. All device specific code is
  then pushed down in respective file. This will make it possible
  to compile gnomad2 with/without each library and makes it
  easy to add new protocols too.

  #typedef intermediary types for things that are generic inside
  gnomad2 and specific for each device, for example:
  typedef uint32_t generic_id_t;  /* can hold libmtp id or a libnjb id */

  RIFF-WAV metadata scanner? (from getid3()). Perhaps switch to
  using the KDE-centric taglib which can get tags from everything
  including the MTP supported Ogg files and MP4...

  Add possibility to send a bitmap. Requires work in libnjb.

  Add possibility to skip forward/backward in files when
  playing. (Works so-so on libnjb.)

  Synch of songs in a harddisk directory, w/checksums?
  Put jukebox ID in ID3 tag?

  Add some stuff to the playlist view: sort playlist by 
  different criteria, remove playlist AND files, move files
  around by drag'n'drop etc. (Hard to do.)
  Add contents of a playlist to another playlist.

  Keybindings to all menus (including popups)

  Transfer queue showing -- even w/o full queue, 
  be able to queue things while transferring.

  Player queue visible. Queueview widget builder?