From 73287dfd9d6ec187538d76c062a09d6757efea9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20DEL=20NERO?= Date: Sun, 26 Dec 2021 19:42:14 +0100 Subject: [PATCH] v1.6.2 * Storage : Global and per storage UID/GID override options : * Global and per storage UID/GID can be specified in the configuration file. * Code fixes / improvements : * Message queue (-cmd: operations) possible issue fixed. * More checks added during the MTP operations. --- README.md | 6 ++++-- Release-notes.txt | 13 +++++++++++++ inc/mtp.h | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dcf5d24..ce6b69e 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,11 @@ The uMTP-Responder allows files to be transferred to and from devices through th - Up to 16 storage instances supported. -- Storage mount / unmount. +- Storages mount / unmount. -- Storage lock / unlock. +- Storages lock / unlock. + +- Global and Storages GID/UID override options. - GadgetFS and FunctionFS/libcomposite modes supported. diff --git a/Release-notes.txt b/Release-notes.txt index 9eae7b5..0d36c94 100644 --- a/Release-notes.txt +++ b/Release-notes.txt @@ -10,6 +10,19 @@ * Release notes ================================================= +Noteworthy changes in release v1.6.2 (2021-Dec-26) +================================================= + +* Storage : Global and per storage UID/GID override options : + + * Global and per storage UID/GID can be specified + in the configuration file. + +* Code fixes / improvements : + + * Message queue (-cmd: operations) possible issue fixed. + * More checks added during the MTP operations. + Noteworthy changes in release v1.5.1 (2021-Dec-6) ================================================= diff --git a/inc/mtp.h b/inc/mtp.h index 6462d59..6c4b7fa 100644 --- a/inc/mtp.h +++ b/inc/mtp.h @@ -170,6 +170,6 @@ int build_response(mtp_ctx * ctx, uint32_t tx_id, uint16_t type, uint16_t status int check_and_send_USB_ZLP(mtp_ctx * ctx , int size); int parse_incomming_dataset(mtp_ctx * ctx,void * datain,int size,uint32_t * newhandle, uint32_t parent_handle, uint32_t storage_id); -#define APP_VERSION "v1.6.1" +#define APP_VERSION "v1.6.2" #endif