Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-03 | Released 3.8.0 | Nikolaus Rath | |
2019-09-27 | Released 3.7.0 | Nikolaus Rath | |
2019-07-09 | Released 3.6.2 | Nikolaus Rath | |
2019-06-13 | Released 3.6.1 | Nikolaus Rath | |
2019-06-13 | Released 3.6.0 | Nikolaus Rath | |
2019-05-09 | Added new example filesystem | Nikolaus Rath | |
passthrough_hp puts emphasis and performance and correctness, rather than simplicity. | |||
2019-04-18 | Add fallocate and use it instead of posix_fallocate if possible (#398) | Liu Bo | |
fuse.ko has supported FALLOC_FL_KEEP_SIZE and FALLOC_FL_PUNCH_HOLE at this moment and more modes may be supported in the future. fallocate(2) supports modes while posix_fallocate(2) does not, so this makes lo_fallocate use fallocate(2) instead. Signed-off-by: Liu Bo <bo.liu@linux.alibaba.com> | |||
2019-04-07 | Bump minor version | Nikolaus Rath | |
cache_readdir flag is a new feature. | |||
2019-03-09 | Released 3.4.2 | Nikolaus Rath | |
2018-12-22 | Released 3.4.1 | Nikolaus Rath | |
2018-11-19 | examples: add copy_file_range() support to passthrough(_fh) | Niels de Vos | |
The passthrough example filesystem can be used for validating the API and the implementation in the FUSE kernel module. | |||
2018-11-06 | Released 3.3.0 | Nikolaus Rath | |
2018-10-16 | Bump minimum Meson version | Nikolaus Rath | |
According to user reports (https://github.com/libfuse/libfuse/pull/300), we need at least version 0.42. | |||
2018-09-28 | Add build options for utils and examples | Martin Blanchard | |
Allow skipping utils build & installation (-Dutils=false) and examples build (-Dexamples=false). By default behaviour is unchanged (both are true: utils and examples get build). | |||
2018-08-31 | Released 3.2.6 | Nikolaus Rath | |
2018-08-25 | Make meson build scripts subprojects friendly | Martin Blanchard | |
Multiple meson build scripts improvements including: * Bump meson requirement to 0.40.1 (0.40 already required) * Declare a dependency object for main library * Stop using add_global_arguments() * Various minor style fixes | |||
2018-07-24 | Released 3.2.5 | Nikolaus Rath | |
2018-07-11 | Released 3.2.4 | Nikolaus Rath | |
2018-07-04 | Use triple quotes for multiline string. | Nikolaus Rath | |
Single quotes will become an error in a future meson release. | |||
2018-05-11 | Released 3.2.3 | Nikolaus Rath | |
2018-03-28 | Fix build error on DragonFlyBSD (sync with other *BSD) (#240) | Tomohiro Kusumi | |
DragonFlyBSD has no "bsd" in uname, so add 'dragonfly' to conditionals. -- e.g. uname(1) in DragonFlyBSD [root@ ~]# uname DragonFly [root@ ~]# python -c "import sys; print(sys.platform)" dragonfly5 | |||
2017-11-14 | Released 3.2.1 | Nikolaus Rath | |
2017-08-24 | Add idle_threads mount option. | Joseph Dodge | |
2017-08-22 | Use 'buildtype' to set debug/optimization options | Nikolaus Rath | |
Until now, running `mesonconf -D buildtype=debug` didn't have any effect - which was confusing. | |||
2017-08-08 | Fix FreeBSD platform detection. | Nikolaus Rath | |
2017-08-06 | Released 3.1.1 | Nikolaus Rath | |
2017-08-03 | Fix FreeBSD detection in meson.build | Nikolaus Rath | |
2017-08-03 | FreeBSD: do not build utilities | Baptiste Daroussin | |
2017-08-03 | Produce more helpful message on OS-X and Windows. | Nikolaus Rath | |
Fixes: #186. | |||
2017-07-08 | Added public fuse_lib_help(), bumped minor version | Nikolaus Rath | |
2017-07-07 | Don't use emacs' python-mode for meson files | Nikolaus Rath | |
There is a proper meson-mode now. | |||
2017-05-24 | Released libfuse 3.0.2 | Nikolaus Rath | |
2017-04-10 | Build tests by default. | Nikolaus Rath | |
2017-03-15 | meson.build(): don't use absolute path for include_dir() | Nikolaus Rath | |
No longer supported in Meson 0.39. | |||
2017-03-15 | Document minimum required Meson version. | Nikolaus Rath | |
Fixes #138. | |||
2017-01-23 | Pass _GNU_SOURCE as compiler argument | Nikolaus Rath | |
Defining it in the file causes trouble because Meson sometimes inserts includes before the first line. | |||
2017-01-12 | Added experimental support for building with Meson+Ninja | Nikolaus Rath | |