summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-07-18- Add missing includeHEADmasterUlf Lilleengen
2009-07-18- Import mfs_notify subroutines for registering for events on system files. TheUlf Lilleengen
intent is to be able to detect when a musicfs folder or file is changed or modified in order to update filesystem data.
2009-07-18- Comment unused variable.Ulf Lilleengen
2009-07-18- Remove remnants from pnotify build.Ulf Lilleengen
2009-07-18- Remove pnotify library again as the API is a bit messy and handles things in aUlf Lilleengen
different way than musicfs requires.
2009-07-18- Cleanup headers and remove stale file.Ulf Lilleengen
2008-11-27- Include pnotify in build and link against it in musicfs.Ulf Lilleengen
2008-11-27- Import pnotify and add a Makefile for building it.Ulf Lilleengen
2008-11-27- Missed fusever and makefile changes in the previous commit.Ulf Lilleengen
- Also put a consistent sorting on header includes: * System includes first * Then, standard C libraries * Then additiona libraries and our own headers.
2008-11-27- Use a fusever header to define fuse version across all files.Ulf Lilleengen
- Add a Makefile in the src directory and use the main makefile as a toplevel make.
2008-10-05- Don't (re-)scan the collection initiallyKjetil Ørbekk
(Scanning is really annoying with huge collections. Touch /.config to re-scan)
2008-09-16- Initial plan for v0.2 (TODO)Kjetil Ørbekk
2008-09-16- Removed v0.1 section from TODOKjetil Ørbekk
2008-09-16- New "screenshot"Kjetil Ørbekk
2008-09-14- Allow empty genre id3-fieldKjetil Ørbekk
2008-09-12- Add to TODO.Ulf Lilleengen
2008-09-11- Fixed fsync("/.config")Kjetil Ørbekk
- Done with TODO for v0.1 :)
2008-09-11- Fixed /GenresKjetil Ørbekk
- Added track number on songs in Genres/*/*
2008-09-11- Fixed track numbers in /Albums/*Kjetil Ørbekk
2008-09-08- Discovered a bug. Added to TODOKjetil Ørbekk
2008-09-08- More TODO for v0.1Kjetil Ørbekk
2008-09-08- More detailed instructions in READMEKjetil Ørbekk
2008-09-08- TODO for v0.1 doneKjetil Ørbekk
2008-09-08- Finished db_cleanup code.Kjetil Ørbekk
Removing paths from .config should now work nicely :)
2008-09-08- Added missing .h fileKjetil Ørbekk
2008-09-08- Emacs modelinesKjetil Ørbekk
2008-09-08- Put db_path into musicfs.hKjetil Ørbekk
- Got ride of some warnings
2008-09-07- Cleanup mfs_cleanup_dbKjetil Ørbekk
2008-09-07- Moved mfs_cleanup_db code to its own fileKjetil Ørbekk
2008-09-07- Include "fuse.h" to get rid of a compiler warning.Kjetil Ørbekk
2008-09-07- Added pthread and SQLITE_THREADED to MakefileKjetil Ørbekk
2008-09-07- Debug to stderr instead of debug.txtKjetil Ørbekk
2008-09-07- Fix serialization of debug printouts.Ulf Lilleengen
- Add a MFS_DB_LOCK/UNLOCK which handles locking of the SQLITE database if SQLITE_THREADED compile option is not specified. - Remove duplicate open/close of database during initial scan.
2008-09-07- Handle closed twice.Ulf Lilleengen
2008-09-05- Added mfs_cleanup_db, to remove inactive pathsKjetil Ørbekk
2008-09-04- Changed the initialize.sh instructions to reflect the new optionsKjetil Ørbekk
2008-09-04- Added -s and -d as default optionsKjetil Ørbekk
(through fuse_opt tricks)
2008-09-03- Implement flush and fsync.Ulf Lilleengen
2008-09-02- Added active-flag to database (convenient when scanning paths)Kjetil Ørbekk
- Disable active-flag on old directories
2008-09-02- Tagged some things as [FINISHED] in the TODOKjetil Ørbekk
- Only two things left, v0.1 will hopefully be ready soon
2008-09-02- Fixed handling of empty tagsKjetil Ørbekk
(in contrast to non-existing ones)
2008-08-19Moved "debug-bug" to 0.2, as it is less critical nowKjetil Ørbekk
2008-08-19- Fixed x bit on directoriesKjetil Ørbekk
2008-08-18- Add another point to the TODO.Ulf Lilleengen
2008-08-18- Simplify some messy code.Ulf Lilleengen
2008-08-18- Forced commit to note that the previous change had a bogus commit message. TheUlf Lilleengen
commit added a NULL pointer check to mfs_get_home_path, as well as returning proper values from the stat call.
2008-08-18Revert "- Add comment to bug."Ulf Lilleengen
This reverts commit c2289bd5e2bdb03230d75b7a05a3f053c1bafe6e.
2008-08-18Revert "- Add comment to bug."Ulf Lilleengen
This reverts commit c2289bd5e2bdb03230d75b7a05a3f053c1bafe6e.
2008-08-18- Add comment to bug.Ulf Lilleengen
2008-08-18- Remember to lseek to correct offset.Ulf Lilleengen
- Fix a bug where SEEK_CUR was used instead of SEEK_SET. This was also the reason I didn't add lseek when reading a file in the first place, because i got buggy behaviour. So, using SEEK_SET corrected this.