-Release 0.2 (2017-02-16)
+Release 0.2 (2017-02-26)
------------------------
* Fix tests
* Fix crash
* Remove sidecar when removing a file (same for renaming)
* Optimization: don't open/close files for every operation
+* Enable optimization flags on compilation (-O3)
+* Force to run in a single-thread
Release 0.1 (2016-10-23)
------------------------
TODO
----
-- Run as single-threaded by default (until we're sure that this is thread-safe)
+- Check if it's thread-safe
- Add mutex to avoid issues when two processes are modifying the same file.
- Handle permission issues with .xattr files
- Code Quality
}
umask(0);
+
+ // disable multi-threading
+ fuse_opt_add_arg(&args, "-s");
return fuse_main(args.argc, args.argv, &xmp_oper, NULL);
}