-
Notifications
You must be signed in to change notification settings - Fork 54
/
Release-notes.txt
214 lines (130 loc) · 6.2 KB
/
Release-notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
=================================================
* uMTP Responder
* Lightweight USB Media Transfer Protocol (MTP)
* responder
*
* Copyright (c) 2018 - 2024 Viveris Technologies
*
* https://github.com/viveris/uMTP-Responder
*
* Release notes
=================================================
Noteworthy changes in release v1.6.8 (2024-Jul-8)
=================================================
* Fix the GetDeviceInfo operation : It can be used without sending an OpenSession command
according to the MTP specification.
* Unicode string functions fixed to work on pre ARMv7 CPUs (Short values unaligned accesses fixed).
* Systemd support : Can now tell Systemd that uMTP-Responder is ready (SYSTEMD_NOTIFY build option).
* Code fixes and improvements.
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)
=================================================
* Storage : new flags and modes :
* "locked" flag support.
* "removable" flag support.
* New dynamic/runtime commands (umtprd -cmd:COMMAND) :
* "lock"/"unlock" commands to dynamically lock/unlock lockable storage.
Examples:
# unlock all locked storage (set with the 'locked' option in the configuration file) :
umtprd -cmd:unlock
# lock all lockable storage (set with the 'locked' option in the configuration file) :
umtprd -cmd:lock
* "addstorage"/"rmstorage" commands to dynamically add/remove storage.
Examples:
umtprd '-cmd:addstorage:/tmp Tmp rw'
umtprd '-cmd:rmstorage:Tmp'
Use double-quotes when arguments have spaces in them:
umtprd '-cmd:addstorage:/path "My Path" rw,removable'
umtprd '-cmd:rmstorage:"My Path"'
* Added umask configuration entry and fix permissions on send objects.
* USB 3.0 SuperSpeed support.
* Supports files rename at the MTP device side.
* New "firmware_version" configuration field : set the MTP device info value.
* Many fixes and improvements :
* Fix inotify for root folders when using multiple storage.
* Add guard to avoid storage from being added twice.
* Update the file size information to the dataset when modifying the file content.
* Check that fs handles db is valid before using it to get entries.
* Security fix : Fix the invalid ".." setObjectPropValue access trick.
* Fix deadlock when SendObject / GetObjectHandles fail.
* Fix permissions on newly created folders.
* Configuration file : realign user usb buffers size.
* Internal : Remove redundant code and possible double closedir issue.
(Fix segmentation fault with uClibc).
* Reduce the default max usb read/write buffer size to 8KB.
(This is required by some SoCs, e.g. the iMX series)
Many thanks to all the contributors !
Noteworthy changes in release v1.3.6 (2020-Apr-3)
=================================================
* MTP Storage mount / unmount support (-cmd:mount:[store name] / -cmd:unmount:[store name] / ).
* Config file :
* "storage" operation : new "notmounted" option.
* New usb_max_rd_buffer_size option (iMX6 issue workaround).
* New usb_max_wr_buffer_size option (iMX6 issue workaround).
* New read_buffer_cache_size option (iMX6 issue workaround).
* Config file path can be changed in the command line (-conf:[Config file path]).
* Async/inotify event : Send file size changes.
* Fix : gadgetfs -> Handle unexpected disconnection while transferring a file.
* Fix : Shared multi-drives inotify events.
* Code fixes / improvements :
* MTP operations : Better errors handling.
* Code refactoring (MTP operations code separated).
Noteworthy changes in release v1.0.0 (2019-10-7)
=================================================
* Major update ! : Now support all file operations !
* Config file : storage "rw"/"ro" parameter added to write protect a drive.
* Performance : Read and write throughput increased (~ 4x speedup).
* Fix >2GB files listing.
* Fix >2GB files access support on 32 bits systems.
* File read/write transfer cancel operation supported.
* Drives and objects properties support.
* New supported commands :
* MTP_OPERATION_GET_PARTIAL_OBJECT_64
* MTP_OPERATION_SEND_PARTIAL_OBJECT
* MTP_OPERATION_BEGIN_EDIT_OBJECT
* MTP_OPERATION_END_EDIT_OBJECT
* MTP_OPERATION_TRUNCATE_OBJECT
* MTP_REQ_CANCEL
* MTP_REQ_RESET
* MTP_REQ_GET_DEVICE_STATUS
* MTP_OPERATION_GET_DEVICE_PROP_DESC
* MTP_OPERATION_GET_DEVICE_PROP_VALUE
* MTP_OPERATION_GET_OBJECT_REFERENCES
* MTP_OPERATION_GET_OBJECT_PROP_LIST
* MTP_OPERATION_GET_OBJECT_PROP_VALUE
* MTP_OPERATION_SET_OBJECT_PROP_VALUE
* Many others fixes and improvements !
Noteworthy changes in release v0.10.1 (2019-7-17)
=================================================
* True Unicode support.
* Files/Folders renaming support.
* Fixes and improvements.
Noteworthy changes in release v0.9.7 (2019-1-10)
=================================================
* MTP event support added :
* The MTP initiator is now notified when files/folders are removed or added from the responder.
* Various debug messages fixes and improvements.
Noteworthy changes in release v0.9.2 (2018-12-5)
=================================================
* Generic FunctionFS/libcomposite support added !
* New configuration option : show/hide hidden files option.
* It now follows the symbolic links.
Noteworthy changes in release v0.8.6 (2018-6-30)
=================================================
* Daemon mode :
* New "loop_on_disconnect" config file option.
* Bug fixes / Improvements :
* Windows host : Non-empty folder deletion issue fixed.
* Severals memory leaks in daemon mode fixed.
* GadgetFS init/deinit reworked.
Noteworthy changes in release v0.8.1 (2018-5-9)
=================================================
* Initial release.
Tested on Raspberry Pi Zero and Atmel Sama5D2 Xplained boards.