Updating TODO list

This commit is contained in:
emeric
2014-03-14 12:55:37 +01:00
parent 6ae658f672
commit 3786c5c3cf
4 changed files with 32 additions and 8 deletions
+10
View File
@@ -0,0 +1,10 @@
build/
Makefile.in
aclocal.m4
autom4te.cache/
configure
depcomp
include/
install-sh
missing
+20 -6
View File
@@ -1,13 +1,27 @@
Features
[Users]
- Do the feature
[Pictures]
- Do the feature (merge the Video/Pictures feature? i.e. for personal holiday data sharing...)
[Database]
- When removing a track, make sure to remove genre/artist/release if last!
- Properly scan Videos
- When removing a track, make sure to remove genre/artist/release if last
- Use Inotify like system to watch modified/added files
- Implement a video database cleanup
- User access for Video/Pictures (really needed for Audio?)
[Audio]
- TableViewFilter: <All> -> Track count
- TableViewFilter: <All> -> Track count for this speccial category
- MediaPlayer: move slider using js
- TrackView : handle original release date
- TrackView : handle duration > 1 hour
- TrackView : select only relevant columns to speed up queries (do not get eveything!)
- OGG metadata -> nested in the audio stream !
- TrackView : select only relevant columns to speed up queries (do not get eveything)
- OGG metadata -> properly handle metadata nested in the audio stream
[Remote API]
- Think about a remote API to get/retrieve transcoded files (i.e. for mobile apps)?
[Layout]
- Make it mobile browser compatible
- Style eveything nicely...
+1 -1
View File
@@ -45,7 +45,7 @@ int main(int argc, char* argv[])
// database.watchDirectory( WatchedDirectory("/storage/common/Media/Video/Series", WatchedDirectory::Video) );
std::cout << "Starting refresh..." << std::endl;
boost::thread refreshThread(boost::bind(&Database::refresh, &database));
// boost::thread refreshThread(boost::bind(&Database::refresh, &database));
return Wt::WRun(argc, argv, &createApplication);
+1 -1
View File
@@ -75,7 +75,7 @@ AudioWidget::playTrack(boost::filesystem::path p)
AudioWidget::handleTrackEnded(void)
{
std::cout << "Track playback ended!" << std::endl;
_audioDbWidget->selectNextTrack();
// _audioDbWidget->selectNextTrack();
}