aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-15 19:46:57 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-15 19:46:57 -0700
commitb16650830d69cbe2d13e74c4318757c15f2c552f (patch)
treeeb2972d1d46aeed0bba411a02b8f523c7e21a8c2 /ChangeLog.rst
parentb46250c40e29a23d37fe8fdadd6ef0d4cfe8b897 (diff)
Make --help output more suitable for end-user
We now only list options that are potentially useful for an end-user (and unlikely to accidentally break a file system). The full list of FUSE options has been moved to the documentation of the fuse_new() and fuse_session_new() functions.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 1748855..9246dd1 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,12 @@
Unreleased Changes
==================
+* The help text generated by fuse_lowlevel_help(), fuse_new() (and
+ indirectly fuse_main()) no longer includes options that are unlikely
+ to be of interest to end-users. The full list of accepted options is
+ now included in the respective function's documentation (located in
+ the fuse.h/fuse_lowlevel.h and doc/html).
+
* The ``-o nopath`` option has been dropped - it never actually did
anything (since it is unconditionally overwritten with the value of
the `nopath` flag in `struct fuse_operations).
@@ -57,7 +63,7 @@ Unreleased Changes
* The `fuse_parse_cmdline` function no longer prints out help when the
``--verbose`` or ``--help`` flags are given. This needs to be done
by the file system (e.g. using the `fuse_cmdline_help()` and
- `fuse_mount_help()` functions).
+ `fuse_lowlevel_help()` functions).
* Added ``example/cuse_client.c`` to test ``example/cuse.c``.