blob: a5f0b229a0eb13fb48b440d38f77d809a07c9ca8 [file] [log] [blame]
Linus Walleij362d13e2009-08-02 19:59:21 +000012009-08-02 Linus Walleij <triad@df.lth.se>
2
3 * configure.ac: tag for libmtp 1.0.0!
4 * src/Makefile.am: bump to compatible API/ABI
5 result = libmtp.so.8.3.0
6 * src/libmtp.c: missing flag fix from Marcus.
7
Linus Walleij1a0c3012009-07-23 23:06:58 +000082009-07-24 Linus Walleij <triad@df.lth.se>
9
Linus Walleij89bb1cd2009-07-24 21:03:36 +000010 * src/device-flags.h: add a flag for unknown FLAC type.
11 * src/music-players.h: tag the Cowon iAudio S9 with this.
12 * src/libmtp.c: implement unknown FLAC type.
13
142009-07-24 Linus Walleij <triad@df.lth.se>
15
Linus Walleij1a0c3012009-07-23 23:06:58 +000016 * src/music-players.h: a number of new devices.
17 * src/ptp.c: sync to upstream.
18 * src/ptp.h: sync to upstream.
19 * src/ptp-pack.c: sync to upstream.
20
Linus Walleij84072342009-06-24 08:08:26 +0000212009-06-24 Linus Walleij <triad@df.lth.se>
22
23 * src/music-players.h: tag most all Samsung devices with
Linus Walleij6222f732009-06-24 08:27:08 +000024 the UNLOAD_DRIVER flag. Broken GET_ALL info in all
25 Creative devices.
Linus Walleij84072342009-06-24 08:08:26 +000026
Linus Walleij0e47b5a2009-06-20 12:37:46 +0000272009-06-20 Linus Walleij <triad@df.lth.se>
28
29 * examples/pathutils.c: detect VCF files too.
30
Linus Walleij2f1b6402009-06-15 19:49:33 +0000312009-06-15 Marcus Meissner <meissner@suse.de>
32
33 * configure.ac: use the AC_SYS_LARGEFILE macro instead
34 of the ugly largefile hacks.
35 * src/libmtp.c: fix use of largefile back to the simple
36 functions instead.
37 * examples/albumart.c: dito.
38 * examples/sendfile.c: dito.
39 * examples/sendtr.c: dito.
40 * examples/thumb.c: dito.
41
Linus Walleijd4637502009-06-14 23:03:33 +0000422009-06-15 Linus Walleij <triad@df.lth.se>
43
44 * configure.ac: some buildsystem updates.
45 * INSTALL: some doc updates.
46
472009-06-15 Marcus Meissner <meissner@suse.de>
48
49 * src/libmtp.c: synced to new libgphoto2 code.
50 * src/device-flags.h: dito.
51 * src/ptp.h: sync to upstream.
52 * src/ptp.c: dito.
53 * src/ptp-pack.c: dito.
54
55 The handles, the PTPObjectInfo and the MTP proplists
56 are now consolidated into "PTPObject"s.
57
58 This and abstraction and the resulting helper functions
59 allow implementation of easier dynamic operations like
60 I need for libgphoto2.
61
62 Some corner stones:
63
64 - PTPParams now contains the device flags itself.
65 (from device-flags.h) This is needed due to
66 ptp_object_want() needing to decide whether it can call
67 GetObjPropList, and it makes it cleaner.
68
69 So the ptp-bugs and device-flags handling are unified.
70
71 - PTPObjects are sorted by object handle. This allows binary
72 search by handle.
73
74 - New generic helper functions.
75
76 * uint16_t ptp_object_find (PTPParams *params,
77 uint32_t handle, PTPObject **retob)
78 binary searches the handle in the object list and returns
79 a pointer to the object.
80
81 * uint16_t ptp_object_find_or_insert (PTPParams *params,
82 uint32_t handle, PTPObject **retob)
83 binary searches the handle in the object list, inserts it
84 if not there yet, and returns a pointer to the object.
85
86 * uint16_t ptp_object_want (PTPParams *params, uint32_t handle,
87 int want, PTPObject **retob)
88 The most magic function, which does the "on demand" loading
89 of objectinfos, mtp proplists (and more).
90 want is a flag mask of PTPOBJECT_*_LOADED
91 PTPOBJECT_OBJECTINFO_LOADED clear
92 PTPOBJECT_CANONFLAGS_LOADED (special canon flags)
93 PTPOBJECT_MTPPROPLIST_LOADED mtp properties for this object
94 loaded
95 PTPOBJECT_DIRECTORY_LOADED (only used by libgphoto2 currently)
96 PTPOBJECT_PARENTOBJECT_LOADED this and storageid are
97 interesting for directory based
98 lookups
99 PTPOBJECT_STORAGEID_LOADED and can be filled out by directory
100 loading
101
102 * void ptp_objects_sort (PTPParams *params);
103 Sort the objects list if you did any modification of your own
104 on it and the order of object handles might not be linear
105 anymore.
106
107 - Multiple object information loading strategies are possible.
108 libmtp uses getobjecthandles() /getobjectinfo() and
109 getobjectproplist() loading strategies for initial setup. This
110 stays of course, it will just fill out the PTPObject array.
111
112 libgphoto2 now uses a per-directory getobjecthandles() /
113 getobjectinfo() loading approach, and I will readd the
114 getobjectproplist() approach.
115
116 It is open what you chose to use here. For libmtp the "load all
117 handles at startup" is good, dynamic loading is better for
118 libgphoto2.
119
120 Only rule is: The objectlist must be in order of objecthandles!
121 (ptp_object_sort()).
122
Linus Walleij1d829652009-06-02 19:53:01 +00001232009-06-02 Linus Walleij <triad@df.lth.se>
124
125 * examples/hotplug.c: change the udev match rule from
126 ATTR{dev}!="?*" to ENV{MAJOR}!="?*" at the suggestion of
127 Alan Jenkins, this should be faster.
Linus Walleij21b2dde2009-06-02 19:55:34 +0000128 * src/libusb-glue.c: include config.h (Marcus Meissner found
129 this is needed when you're not using iconv().)
Linus Walleijd4637502009-06-14 23:03:33 +0000130
Linus Walleij6db174f2009-05-09 13:15:26 +00001312009-05-09 Linus Walleij <triad@df.lth.se>
132
133 * src/libmtp.c: include <config.h> for iconv() compatibility.
134 * src/unicode.c: dito. NOTE: this file needs fixing to work
135 without iconv!
136 * src/ptp.h: sync to upstream and get all the embedded support
137 for FREE!
138 * src/ptp.c: dito.
139 * src/ptp-pack.c: dito.
140
Linus Walleij6f050022009-05-06 21:14:41 +00001412009-05-06 Linus Walleij <triad@df.lth.se>
142
Linus Walleij7e756532009-05-06 21:25:09 +0000143 * src/ptp.h: sync to upstream.
144 * src/ptp.c: dito.
145 * src/ptp-pack.c: dito.
146
1472009-05-06 Linus Walleij <triad@df.lth.se>
148
Linus Walleij6f050022009-05-06 21:14:41 +0000149 A host of Windows fixes from
150 Carlo Bramini <carlo_bramini@users.sourcefore.net>
151 With this patch everything works fine with cygwin and
152 Debian 5.0. Unfortunately, with MSys the "make install"
153 still fails at the very last actions. It happens that
154 everything is re-linked (strange, but not a big problem)
155 and for some unknown reason it loops forever when executing
156 "examples/hotplug > libmtp.usermap". But hopefully the
157 simple "make" completes without errors.
Linus Walleijd4637502009-06-14 23:03:33 +0000158
Linus Walleij6f050022009-05-06 21:14:41 +0000159 * configure.ac:
160 * iconv is now detected with autotools, this makes libmtp
161 linkable on cygwin too (previously it was not).
162 * the presence of Microsoft LIB.EXE is checked; if it is
163 absent then the MSVC libraries won't be generated.
164 * Added checking for some include files not available on
165 Windows: arpa/inet.h, byteswap.h, sys/uio.h.
166 * Check for presence of mkstemp: a replacement has been
167 written for Windows.
168 * examples/Makefile.am: the creation of the links failed:
169 I added source path and $(EXEEXT) extension for executables.
170 This is tested and working with Mingw+MSys, Cygwin, Debian 5.0.
171 * examples/albumart.c: include sys/uio.h only if it's available.
172 * examples/trexist.c: u_int32_t does not exists, into almost all
173 other parts libmtp is using uint32_t so I fixed it in that
174 manner. (Same for u_int64_t/uint64_t).
175 * examples/getfile.c: dito.
176 * examples/pathutils.c: dito, plus rindex() does not exist under
177 Windows, we must user strrchr() instead.
178 * examples/pathutils.h: fixes for prototypes changes made into
179 examples/pathutils.c
180 * examples/thumb.c: include sys/uio.h only if it's available.
181 * src/Makefile.am:
182 * Several fixes because the check on the presence of LIB.EXE
183 libmtp.sym is now prefixed by $(srcdir), this allows to
184 configure libmtp outside the source tree in Windows too.
185 * Libraries are put into LIBADD instead of LDFLAGS, this is the
186 right place.
187 * Previously the linker crashed because there was -ws2_32
188 instead of -lws2_32.
189 * src/playlist-spl.c:
190 * include sys/uio.h only if it's available.
191 * include replacement for mkstemp() function.
192
Richard Lowa7de0182009-05-03 22:33:33 +00001932009-05-03 Richard Low <richard@wentnet.com>
194
195 * src/libmtp.c: add external property types just like file
196 types so any property can be retrieved/set. Add function
197 LIBMTP_Is_Property_Supported to determine if a property is
198 supported for a given object type. Add function
199 LIBMTP_Get_Allowed_Property_Values to get alowed range/enum
200 of a property value. Make
201 LIBMTP_Get_Representative_Sample_Format get the size parameter
202 to allow us to determine the maximum size for a representative
203 sample.
204 * src/libmtp.h.in: ditto
205 * src/libusb-glue.c: update to check the handler function return
206 value so the handler can return PTP_ERROR_CANCEL to cancel the
207 transfer.
208
Linus Walleij6f050022009-05-06 21:14:41 +00002092009-05-02 Richard Low <richard@wentnet.com>
Richard Lowa7de0182009-05-03 22:33:33 +0000210
211 * src/ptp-pack.c: add a NULL check
212
2132009-04-18 Richard Low <richard@wentnet.com>
214
215 * src/ptp-pack.c: add terminating NULL character
216
2172009-04-11 Richard Low <richard@wentnet.com>
218
219 * src/libusb-glue.c: Make get_playlist_extension return type
220 const char *
221 * src/libusb-glue.h: ditto
222 * src/libusb-glue.c: In probe_device_descriptor, check to see if
223 dev->config is NULL before going round the first loop
224 * src/libmtp.c: Add LIBMTP_Get_File_To_Handler,
225 LIBMTP_Send_File_From_Handler, LIBMTP_Get_Track_To_Handler,
226 LIBMTP_Send_Track_From_Handler functions to get/send files/tracks
227 from/to handler functions. Add modificationdate to file and track
228 structs. Add LIBMTP_FILETYPE_ALBUM and LIBMTP_FILETYPE_PLAYLIST
229 filetypes.
230
Linus Walleij4096c882009-03-16 23:32:34 +00002312009-03-17 Linus Walleij <triad@df.lth.se>
232
233 * src/device-flags.h: discovered a new device that cannot even
234 read out battery level but still claims to be able to. Sigh.
235 * src/libusb-glue.h: flag macro.
236 * src/music-players.h: flag the Slacker.
237 * src/libmtp.c: avoid battery level getting on these devices.
238 * configure.ac: preparing for 0.3.7.
239 * src/Makefile.am: preparing for 0.3.7 (libmtp.so.8.2.2)
Linus Walleijb7bd2452009-03-16 23:44:41 +0000240 * Release libmtp 0.3.7.
Linus Walleij4096c882009-03-16 23:32:34 +0000241
Linus Walleijd98e8972009-03-08 22:57:17 +00002422009-03-08 Linus Walleij <triad@df.lth.se>
243
244 * src/libmtp.c: refactored OGG extenstion check again, same
245 code in three places, broke it out and made it foolproof
246 (hopefully) in one single spot.
247
Linus Walleijb84b3852009-03-04 15:11:08 +00002482009-03-04 Linus Walleij <triad@df.lth.se>
249
250 * src/libusb-glue.c: patch from Marcus to fix an issue
251 with retransmit originally reported by Florent Pillet.
252
Linus Walleij5c1499e2009-02-21 06:54:29 +00002532009-02-21 Linus Walleij <triad@df.lth.se>
254
255 * src/libmtp.c: some additional NULL checks from
256 Florent Pillet.
257
Linus Walleij30b3e022009-02-18 22:41:20 +00002582009-02-18 Linus Walleij <triad@df.lth.se>
259
260 * src/libmtp.c: error report from RedHat BZ
261 http://bugzilla.redhat.com/show_bug.cgi?id=485627
262 led to strange code for detecting anonymous OGG files
263 being rewritten to handle NULL filenames and filenames
264 that do not exceed 4 chars.
265
Linus Walleijafac36b2009-01-30 20:39:13 +00002662009-01-30 Linus Walleij <triad@df.lth.se>
267
268 * src/libmtp.c: store albums and playlists in the default
269 music folder if no default folder for albums resp.
270 playlists has been detected.
271
Linus Walleijb17b9f12009-01-21 23:59:40 +00002722009-01-22 Linus Walleij <triad@df.lth.se>
273
274 * configure.ac: bump to 0.3.6 and release.
Linus Walleij4096c882009-03-16 23:32:34 +0000275 * src/Makefile.am: interface bump to libmtp.so.8.2.1
Linus Walleijb17b9f12009-01-21 23:59:40 +0000276
Linus Walleij7e3b3072009-01-19 22:51:17 +00002772009-01-16 Linus Walleij <triad@df.lth.se>
278
279 * src/ptp.c: sync to upstream.
280 * src/ptp.h: dito.
281
Linus Walleij2eaaff02009-01-15 21:30:36 +00002822009-01-15 Linus Walleij <triad@df.lth.se>
283
284 * src/libmtp.c: include fixes from Yuri Pankov for *BSD.
285 * src/playlist-spl.c: dito.
286 * examples/*.c: (more or less) dito.
287
Linus Walleijf67c1ad2009-01-14 21:39:50 +00002882009-01-14 Linus Walleij <triad@df.lth.se>
289
290 * src/device-flags.h: new device flag for broken
291 SendObjectPropList, as found broken in MEU202
292 * src/music-players.h: use the new flag.
293 * src/libmtp.c: implement this device flag.
294 * src/libusb-glue.h: dito.
295
Linus Walleij5b4a4d22009-01-10 12:18:14 +00002962009-01-10 Linus Walleij <triad@df.lth.se>
297
298 * src/libmtp.h.in: mingw32 fixes from James Ravenscroft.
Linus Walleija0e863b2009-01-10 22:15:57 +0000299 * src/libmtp.c: dito. Replaced "rindex" with "strrchr"
Linus Walleij5b4a4d22009-01-10 12:18:14 +0000300 * src/Makefile.am: dito.
301 * examples/albumart.c: dito.
302
Linus Walleijdd987c32009-01-06 00:35:05 +00003032009-01-06 Linus Walleij <triad@df.lth.se>
304
305 * src/Makefile.am: patch from Rafael Laboissiere removing a
306 build artifact in distclean.
Linus Walleij362d13e2009-08-02 19:59:21 +0000307
Linus Walleij2242b022009-01-02 01:44:00 +00003082009-01-02 Linus Walleij <triad@df.lth.se>
309
310 * examples/connect.c: usage patch from Riley Patterson.
311 * examples/sendtr.c: dito. Plus only try to add track to an
312 album if and only if an album name was given.
313 * examples/newfolder.c: real bad bug fixed, didn't even work
314 due to bad args check.
315 * examples/sendfile.c: another bad bug...
316 * examples/common.h: include <config.h> not "config.h"
317 * src/unicode.h: no reason for this to include config.h!
318
Linus Walleijcb229572008-12-21 13:17:59 +00003192008-12-21 Linus Walleij <triad@df.lth.se>
320
321 * Release libmtp 0.3.5.
322
Linus Walleija89a7942008-12-14 23:19:34 +00003232008-12-15 Nathan Bullock <nathanbullock@gmail.com>
324
325 * src/libmtp.c: get folders to a flat list and we get O(n) searching
326 instead of the previous O(n^2) algorithm!
327
Linus Walleijb9255212008-12-13 22:26:26 +00003282008-12-13 Linus Walleij <triad@df.lth.se>
329
330 * examples/detect.c: make mtp-detect dump out default-capabilities.xml
331 if such a file exists on the device.
Linus Walleij2a84ca42008-12-14 00:00:23 +0000332 * m4/stdint.m4: update to newer macro from libgphoto2.
333 * m4/byteorder.m4: update to newer macro from libgphoto2.
334 We find these here:
335 http://gphoto.svn.sourceforge.net/viewvc/gphoto/trunk/m4/
336 * configure.ac: fix the renamed _stdint.h too.
337 * Doxyfile.in: some config option got obsolete.
Linus Walleijfc973122008-12-14 01:10:26 +0000338 * libmtp.c: start to use PTP error redirection to the libmtp error
339 stack. This also makes it possible to stop the annoying debug prints.
Linus Walleijd1e14e02008-12-14 01:07:30 +0000340 * libusb-glue.c: dito.
Linus Walleijfc973122008-12-14 01:10:26 +0000341 * ptp.c: sync to upstream.
342 * ptp.h: sync to upstream.
Linus Walleijb9255212008-12-13 22:26:26 +0000343
Linus Walleijd8a2fae2008-12-02 12:20:17 +00003442008-12-02 Linus Walleij <triad@df.lth.se>
345
346 * examples/util.c: another NULL check.
347
Linus Walleij73fecc42008-11-25 21:17:22 +00003482008-11-25 Linus Walleij <triad@df.lth.se>
349
350 * src/libmtp.c: fix a bug on handling folder children with an illegal
351 ID of 0. Occured in the ZEN Xi-Fi in the "Recordings" folder, when
352 that is created on the device.
353
alistair_boyle5e5fcb72008-11-17 14:38:19 +00003542008-11-17 Alistair Boyle <alistair.js.boyle@gmail.com>
355
alistair_boyle5e5fcb72008-11-17 14:38:19 +0000356 * configure.ac: change release to 0.3.5.
357 * libmtp.c: change metadata const*const to *const to allow playlist_id
358 to be modified by LIBMTP_Update_Playlist. (Samsung playlists)
359 * libmtp.h.in: match libmtp.c
360
Linus Walleij1ccd5862008-11-11 12:33:01 +00003612008-11-11 Linus Walleij <triad@df.lth.se>
362
363 * src/libmtp.c: allow for playlists with zero tracks on them,
364 also in update.
365
Linus Walleijd49955b2008-11-09 17:20:00 +00003662008-11-09 Linus Walleij <triad@df.lth.se>
367
368 * src/ptp.h: sync from upstream.
369 * src/ptp.c: sync from upstream.
370 * src/ptp-pack.c: sync from upstream.
371
Linus Walleij54c468c2008-11-07 22:36:15 +00003722008-11-07 Linus Walleij <triad@df.lth.se>
373
374 * Release libmtp 0.3.4.
375 * configure.ac: let's release 0.3.4.
376 * src/Makefile.am: compatible API and ABI.
377
Linus Walleij753a46a2008-11-05 09:10:52 +00003782008-11-05 Linus Walleij <triad@df.lth.se>
379
380 * src/libmtp.c: fix the association type problem on
381 LIBMTP_Create_Folder(). This causes folders not to
382 work properly on some devices!!
383
Linus Walleij3bc0d7f2008-11-01 23:06:24 +00003842008-11-01 Linus Walleij <triad@df.lth.se>
385
386 * src/ptp.h: sync to upstream.
387 * src/ptp.c: sync to upstream.
388 * src/ptp-pack.c: introduce Richards bugfix on top of
389 upstream and take advantage of the ptp_debug() function.
390 * src/libusb-glue.c: make ptp_debug() non-static since
391 ptp-pack.c needs it.
392
Linus Walleijcf8dc2b2008-10-21 13:58:36 +00003932008-10-21 Linus Walleij <triad@df.lth.se>
394
395 * src/device-flags.h: actually the SanDisks cannot handle
396 PTP_OPC_DateModified at ALL, not even as part of the
397 initial update so rename the flag to something sensible.
398 * src/music-players.h: consequental changes.
399 * src/libmtp.c: disable all use of PTP_OPC_DateModified if
400 flag is set, not just updates.
401
Linus Walleij37588142008-10-16 19:10:47 +00004022008-10-16 Linus Walleij <triad@df.lth.se>
403
404 * src/device-flags.h: new flag for broken updates of
405 PTP_OPC_DateModified.
406 * src/music-players.h: tag all SanDisk devices with this
407 flag. Bug appeared in them.
408 * libmtp.c: avoid updating PTP_OPC_DateModified on broken
409 devices.
410
Linus Walleijc8abc922008-09-28 18:38:42 +00004112008-09-28 Alvin <alvinbeach@gmail.com>
412
413 * src/libmtp.c: fix several bugs in Ogg filetype support.
414
Richard Lowff16bfa2008-09-26 19:23:08 +00004152008-09-26 Richard Low <richard@wentnet.com>
416
417 * src/libmtp.c: check propdesc before setting props in
418 create_new_abstract_list()
419
Linus Walleijf12e3052008-09-25 22:00:40 +00004202008-09-25 Linus Walleij <triad@df.lth.se>
421
422 * configure.ac: bump to 0.3.3.
423 * src/Makefile.am: interface to .so.8.1.0
424 * Release as 0.3.3.
425
Linus Walleij8d8c4352008-09-23 23:04:16 +00004262008-09-24 Linus Walleij <triad@df.lth.se>
427
428 * src/libmtp.h.in: add new filename setting functions, patch
429 from Florent Mertens <flomertens@gmail.com>.
430 * src/libmtp.c: implementation.
431 * src/playlist-spl.c: consequental changes.
432 * src/libmtp.sym: consequental changes.
Linus Walleijfb7212f2008-09-24 20:30:13 +0000433 * Fixup patch from Alvin later this day.
Linus Walleij8d8c4352008-09-23 23:04:16 +0000434 * Note to self: remember to bump soname to .so.8.1.0.
435
Richard Low4d9165f2008-09-23 20:13:17 +00004362008-09-23 Richard Low <richard@wentnet.com>
437
438 * src/libmtp.c: check for NULL storage
439 * src/libusb-glue.c: return PTP_RC_OK on zero read
440 * src/music-players.h: give Samsung YP-10 DEVICE_FLAG_NO_ZERO_READS
441
Linus Walleij97c351b2008-09-22 08:22:20 +00004422008-09-22 Linus Walleij <triad@df.lth.se>
443
444 * src/libmtp.c: make sure we don't try to fit a new file onto
445 a ROM storage. Add some pretty-print to FourCC codecs so
446 you can actually understand the enumerations.
447
Linus Walleij4347fda2008-09-19 22:28:45 +00004482008-09-20 Joe Nahmias <joe@nahmias.net>
449
450 * examples/sendtr.c: added option to specify which
451 storage_id the track should be copied.
452
Linus Walleijeb5d5fe2008-09-19 22:01:48 +00004532008-09-20 Linus Walleij <triad@df.lth.se>
454
455 * configure.ac: bump to 0.3.2.
456 * src/Makefile.am: bump to libmtp.so.8.0.2, compatible
457 interface.
458 * Release this as 0.3.2 mainly to get the Creative fixes out.
459
Linus Walleij2832a202008-09-17 18:58:20 +00004602008-09-17 Linus Walleij <triad@df.lth.se>
461
462 * src/libmtp.h.in: new helper macros from
463 Alvin <alvinbeach@gmail.com> plus some docs.
464
Linus Walleij780b3902008-09-11 22:17:00 +00004652008-09-12 Linus Walleij <triad@df.lth.se>
466
467 * src/music-players.h: drop bug flags off the Creative devices.
468 I am confident that the bugs they were masking have been
469 fixed now.
470
Richard Low4d93a992008-09-07 12:52:14 +00004712008-09-07 Richard Low <richard@wentnet.com>
472
473 * src/music-players.h: added Panasonic P905i
474
Linus Walleijb67fecc2008-09-05 10:41:30 +00004752008-09-05 Marcus Meissner <meissner@suse.de>
476
477 * src/libmtp.sym: update symbol export table.
478 * src/Makefile.am: fix up some magic for symbol export.
479
Linus Walleijf3296622008-09-04 20:53:56 +00004802008-09-04 Linus Walleij <triad@df.lth.se>
481
482 * src/libmtp.c: look up the filename for playlists if the name is
483 missing or not properly set. Not doing the same for albums -
484 these must have proper metadata.
485 * src/music-players.h: more players as usual.
486 * examples/sendtr.c: more warnings.
487
Linus Walleij9d00c1b2008-08-31 18:17:08 +00004882008-08-31 Linus Walleij <triad@df.lth.se>
489
490 * src/ptp.h: sync to upstream.
491 * src/ptp.c: sync to upstream.
492
Linus Walleij2f622812008-08-30 22:06:58 +00004932008-08-30 Chris Bagwell <chris@cnpbagwell.com>
494
495 * src/libusb-glue.c: make it possible to have per-command
496 or otherwise altered timeout values for different PTP
497 request/response sequences.
498 * src/libusb-glue.h: dito.
499 * src/libmtp.c: increase USB timeout to 30s when getting
500 a complete track listing off the device.
501 * src/music-players.h: as a consequence, the Sirus Stiletto
502 no longer needs any brokenness flag.
503
5042008-08-30 Linus Walleij <triad@df.lth.se>
505
506 * src/ptp.c: sync to upstream.
507
Linus Walleijeb144392008-08-28 14:43:38 +00005082008-08-28 Linus Walleij <triad@df.lth.se>
509
510 * examples/sendtr.c: fix non-strdup():ed strings to be
511 copied, patch courtesy of Juanan Pereira.
512
Linus Walleij5b17d8f2008-08-25 20:55:15 +00005132008-08-25 Linus Walleij <triad@df.lth.se>
514
515 * src/Makefile.am: bump interface a patchlevel. (Fully
516 compatible.)
517 * configure.ac: bump version to 0.3.1.
518 * Release as libmtp 0.3.1.
519
Linus Walleije1be4b92008-08-18 08:49:22 +00005202008-08-18 Linus Walleij <triad@df.lth.se>
521
522 * src/libusb-glue.c: some vartype and return flunkies.
Linus Walleij8b8c8502008-08-18 19:58:36 +0000523 * configure.ac: check for locale.h
524 * examples/util.c: set locale to pick up environment.
Linus Walleije1be4b92008-08-18 08:49:22 +0000525
Linus Walleij06e42322008-08-16 23:34:32 +00005262008-08-17 Linus Walleij <triad@df.lth.se>
527
528 * src/libusb-glue.c: some handling of ptp_usb_getdata()
529 when passed in data size was 0xffffffffU, data
530 sent in first transaction was ignored, fix by
531 Rob Woolley.
Linus Walleijdeddc342008-08-16 23:52:06 +0000532 * src/ptp-pack.c: sync in from upstream libgphoto2.
533 * src/README: move relevant stuff to README.
534 * README: see above.
Linus Walleij06e42322008-08-16 23:34:32 +0000535
Linus Walleijf3c44052008-08-16 21:14:56 +00005362008-08-15 Alistair Boyle <alistair.js.boyle@gmail.com>
537
538 * src/playlist-spl.c: added handling of Samsung's
539 proprietary .spl playlist format.
540 * src/playlist-spl.h: dito.
541 * src/device-flags.h: new flags for Samsung playlists.
542 * src/music-players.h: assign flags.
543 * src/libusb-glue.h: convenience macros.
544 * src/libmtp.c: integrate Samsung playlists.
545
Linus Walleij59765e82008-08-15 07:17:12 +00005462008-08-15 Linus Walleij <triad@df.lth.se>
547
548 * examples/Makefile.am: break out utility functions
549 (currently only checklang()) to a separate file.
550 * examples/util.h: dito.
551 * examples/util.c: dito.
552 * examples/detect.c: dito.
553 * examples/sendtr.c: dito.
554 * examples/connect.c: dito.
555
Linus Walleij25d5c212008-08-14 06:49:13 +00005562008-08-14 Linus Walleij <triad@df.lth.se>
557
558 * src/libmtp.c: add some documentation to file and track
559 listing functions to that it's clear that you have to
560 inspect storage_id and parent_id in order to group files
561 into storages and/or folders.
562
Linus Walleij07bb5382008-07-31 20:21:09 +00005632008-07-31 Linus Walleij <triad@df.lth.se>
564
565 * src/music-players.h: several new devices and flags.
566
Linus Walleije80d6bd2008-06-23 23:11:42 +00005672008-06-24 Linus Walleij <triad@df.lth.se>
568
569 * TODO: updates.
570 * src/Makefile.am: bump interface to libmtp.so.8.0.0.
571 It's NOT compatible!
572 * RELEASE libmtp 0.3.0 and let the apps developers have
573 their apps fixed!
574
Linus Walleijea68f1f2008-06-22 21:54:44 +00005752008-06-22 Linus Walleij <triad@df.lth.se>
576
577 * src/libmtp.h.in: removed the parenthandle argument from
578 LIBMTP_Send_File_From_File(),
579 LIBMTP_Send_File_From_File_Descriptor(),
580 LIBMTP_Send_Track_From_File(),
581 LIBMTP_Send_Track_From_File_Descriptor(),
582 LIBMTP_Create_New_Playlist() and
583 LIBMTP_Create_New_Album()
584 Now you must pass in parent ID from a metadata or
585 filedata set. Use the respective field of the
586 file, track, playlist or album struct to pass in
587 a parent handle when calling these functions from
588 now on. The bonus for changing your code is that you
589 can now also pass in a storage_id with any metadata
590 set! Consequently LIBMTP_Create_Folder() was
591 altered to accept THREE metadata arguments: name,
592 parent_id and storage_id. All calls to any of these
593 functions in any referring code need to be altered to
594 use this scheme. It should be quite self-evident for
595 most code and easy to perform.
596 * src/libmtp.c: changed outlined above were implemented.
597 * examples/newfolder.c: consequental changes.
598 * examples/sendfile.c: consequental changes.
599 * examples/sendtr.c: consequental changes.
600 * examples/albumart.c: consequental changes.
601 * examples/newplaylist.c: consequental changes.
602 * examples/files.c: consequental changes.
603 * examples/tracks.c: correct misleading strings.
604
Linus Walleij8f7f1aa2008-06-15 19:00:23 +00006052008-06-15 Linus Walleij <triad@df.lth.se>
606
607 * src/libmtp.c: only look for default folders in the
608 root folder on the primary storage, even.
609
Linus Walleijc40c9bf2008-06-13 23:24:17 +00006102008-06-14 Linus Walleij <triad@df.lth.se>
611
612 * src/libmtp.c: only look for default folders in the
613 primary storage, and only try to put files there
614 if they are targetting the primary storage.
615
Linus Walleij56c63952008-06-08 21:55:58 +00006162008-06-08 Linus Walleij <triad@df.lth.se>
617
618 * configure.ac: check for the langinfo.h header.
619 * examples/connect.c: check charset properly.
620 * examples/sendtr.c: dito.
621 * src/music-players.h: new devices galore.
622
Linus Walleij335a81c2008-06-02 23:01:00 +00006232008-06-03 Linus Walleij <triad@df.lth.se>
624
625 * src/device-flags.h: new device flag for devices that
626 always need to have their device descriptor probed.
627 * src/music-players.h: generously add this flag to all
628 SanDisk devices. The e280v2 and Fuze are known to be
629 especially problematic.
630 * src/libusb-glue.h: helper macro.
631 * src/libusb-glue.c: massage "OS Descriptor" on demand
632 when opening the device.
Linus Walleij5e202562008-06-03 11:35:05 +0000633 * src/music-players.h: detailed info and flags for the
634 SanDisk Sansa players. More to be done, probably.
Linus Walleij335a81c2008-06-02 23:01:00 +0000635
Linus Walleijfec4d562008-06-01 22:30:36 +00006362008-06-02 Linus Walleij <triad@df.lth.se>
637
638 * src/libusb-glue.c: refactor PTP_USB to use the raw
639 device and its contained deviceinfo to store and
640 retrieve the device flags. (This is starting to look
641 object oriented...)
642 * src/libusb-glue.h: accessor functions to simplify
643 switching on the device flags and increase the code
644 readability.
645 * src/libmtp.c: use the new accessor functions.
646
Linus Walleij64691b72008-05-31 22:55:18 +00006472008-06-01 Linus Walleij <triad@df.lth.se>
648
649 * src/libmtp.c: use LIBMTP_Detect_Raw_Devices() and
650 LIBMTP_Open_Raw_Device() inside
Linus Walleij3c643252008-05-31 23:22:28 +0000651 LIBMTP_Get_First_Device() refactoring. Move
652 params creation into this file.
653 * src/libusb-glue.c: move params creation away
654 from here.
Linus Walleij64691b72008-05-31 22:55:18 +0000655
Linus Walleij9b146182008-05-29 22:42:54 +00006562008-05-30 Linus Walleij <triad@df.lth.se>
657
658 * src/libusb-glue.c: unused variable.
659 * examples/detect.c: switch to using raw device
660 interface for opening devices.
661
Linus Walleij9d22ce02008-05-28 20:39:29 +00006622008-05-28 Linus Walleij <triad@df.lth.se>
663
Linus Walleija700d222008-05-28 23:06:14 +0000664 * src/libmtp.c: internally using the raw devices to
665 get a list of devices.
Linus Walleij9d22ce02008-05-28 20:39:29 +0000666 * src/ptp.c: sync to upstream.
667 * src/ptp.h: dito.
668 * src/ptp-pack.c: dito.
Linus Walleija700d222008-05-28 23:06:14 +0000669 * src/libmtp.h.in: move raw device detection to use
Linus Walleijbdb89bd2008-05-28 23:32:35 +0000670 error codes. Add interface to open a raw device!
Linus Walleija700d222008-05-28 23:06:14 +0000671 * src/libusb-glue.h: make the old device list internal,
672 use raw device in interface for configuring USB.
673 * src/libusb-glue.c: fix up error messages. Move the
674 raw device detection interface to use error codes.
675 * examples/detect.c: fix up error messages. Use error
676 codes for raw devices.
Linus Walleij9d22ce02008-05-28 20:39:29 +0000677
Linus Walleij817579a2008-05-23 21:21:40 +00006782008-05-23 Linus Walleij <triad@df.lth.se>
679
680 * src/libmtp.c: after sending a file, look up the
681 resulting file metadata from the cache to make sure
682 that parent_id is identical to that the file actually
683 gets on the device. If root folder (0) is selected, we
684 hardcode thing to 0xffffffffu to be used as parent,
685 but it will probably end up being 0 for example.
Linus Walleijfcb43422008-05-23 21:53:55 +0000686 Also fix an issue with ptp_mtp_getobjectproplist()
687 sometimes returning a NULL pointer while still
688 claiming there are props in the list.
Linus Walleija4e6bdc2008-05-23 22:31:53 +0000689 * src/libusb-glue.h: add a function to get the preferred
690 playlist extension.
Linus Walleij5ba40402008-05-23 21:36:54 +0000691 * src/libusb-glue.c: "written" variable in
692 ptp_usb_sendreq() may end up uninitialized if
693 ptp_write_func() fails. Initialize it to 0.
Linus Walleija4e6bdc2008-05-23 22:31:53 +0000694 Get the prefered playlist extension.
Linus Walleij817579a2008-05-23 21:21:40 +0000695
Richard Lowbb9fb4a2008-05-18 14:49:34 +00006962008-05-18 Richard Low <richard@wentnet.com>
697
698 * src/device-flags.h: added
699 DEVICE_FLAG_BROKEN_SET_SAMPLE_DIMENSIONS device flag
700 * src/music-players.h: ditto. Also set Samsung YH-999 to
701 DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST_ALL based on users
702 experience.
703 * src/libmtp.c: added
704 DEVICE_FLAG_BROKEN_SET_SAMPLE_DIMENSIONS device flag
705
Linus Walleijf106aa62008-05-04 22:55:51 +00007062008-05-05 Linus Walleij <triad@df.lth.se>
707
708 * src/libusb-glue.c: assign device name and flags to
709 detected raw devices, slowly preparing to move to
710 using the raw device detection internally as well.
711
Linus Walleij10e0ce72008-05-04 19:20:33 +00007122008-05-04 Linus Walleij <triad@df.lth.se>
713
714 * src/libmtp.h.in: move useful filetype macros here so
715 external programs can use them.
716 * src/libmtp.c: consequental changes.
717 * examples/sendtr.c: use the new macro to detect track
718 content.
719
Linus Walleij31b74292008-05-02 23:29:06 +00007202008-05-03 Johannes Huber <johub1180@gmx.at>
721
722 * src/libmtp.h.in: add interface for setting album composer,
723 needed for classical albums, on abstract albums.
724 * src/libmtp.c: implement it.
725 * examples/albums.c: consequental changes.
726 * examples/connect.c: dito.
727 * examples/sendtr.c: dito.
728 * examples/tracks.c: dito.
729 * AUTHORS: new contributor.
730
Linus Walleij46651f32008-04-26 23:30:19 +00007312008-04-27 Linus Walleij <triad@df.lth.se>
732
733 * src/libmtp.c: recognize audio files as tracks, since this
734 is what WMP does. (e.g. it sets playlength on movies
735 to enable skip bar) also define macros for audio/video/both
736 types and tidy up a bit.
737
Linus Walleij63fd1e62008-04-23 23:49:43 +00007382008-04-24 Linus Walleij <triad@df.lth.se>
739
740 * src/libmtp.h.in: added preliminary interface for getting
741 raw devices.
742 * src/libusb-glue.c: the implementation is all here!
743 * src/libusb-glue.h: add some bus and device fields to the
744 internal device list.
745 * examples/detect.c: exercise the raw device detection code.
746
Linus Walleij88feb2e2008-03-26 00:26:20 +00007472008-03-26 Linus Walleij <triad@df.lth.se>
748
749 * examples/pathutils.c: fix a folder identification bug,
750 courtesy of Dr Nicholas Jacobs.
751
Linus Walleij5ce59db2008-03-12 21:22:58 +00007522008-03-12 Linus Walleij <triad@df.lth.se>
753
Linus Walleij161fcce2008-03-12 22:02:59 +0000754 * configure.ac: bad mailing list address. (Marcus) Bump to
755 version 0.3.0.
756 * examples/hotplug.c: switch from using "info.bus" to
757 using "info.subsystem" to identify USB events. (Marcus).
Linus Walleij5ce59db2008-03-12 21:22:58 +0000758 * src/libmtp.c: add parent_id to albums and playlists,
759 based on a patch by Ali Shah.
760 * src/libmtp.h.in: dito.
761 * examples/playlists.c: consequental changes.
762 * examples/albums.c: consequental changes.
763 * This will be a new major revision of the API/ABI no
764 matter what.
765
Linus Walleij1018c162008-03-07 23:11:58 +00007662008-03-08 Linus Walleij <triad@df.lth.se>
767
768 * src/libusb-glue.c: left debug prints on :-(
Linus Walleij907905b2008-03-07 23:33:02 +0000769 * configure.ac: set to 0.2.6.1
Linus Walleij1018c162008-03-07 23:11:58 +0000770 * Release as 0.2.6.1
771
Linus Walleijb8f78c72008-03-02 20:22:56 +00007722008-03-02 Linus Walleij <triad@df.lth.se>
773
774 * configure.ac: prepare 0.2.6 release.
775 * src/Makefile.am: bump to compatible interface,
776 * src/ptp.c: sync in upstream, a Sansa fix!
777 * src/ptp.h: sync in upstream.
778 * doc/Doxyfile.in: retire obsoleted parameters.
779 * Release this as 0.2.6!
780
Richard Low641d1e32008-02-24 20:47:20 +00007812008-02-24 Richard Low <richard@wentnet.com>
782
783 * src/music-players.h: add DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST_ALL
784 for a broken Philips player.
785
Linus Walleijc12e1752008-02-18 22:45:45 +00007862008-02-18 Linus Walleij <triad@df.lth.se>
787
788 * examples/pathutils.c: fix up item ID typing to uint32_t,
789 handle file names passed in as arguments at suggestion from
790 anonymous mail list user.
791 * examples/pathutils.h: move a function static.
792
Linus Walleij75fe2bf2008-02-12 07:34:35 +00007932008-02-12 Nicolas Pennequin <nicolas.pennequin@free.fr>
794
795 * examples/sendtr.c: add transferred tracks to albums if possible.
796
Linus Walleij3191bba2008-02-10 21:16:25 +00007972008-02-10 Scott Snyder <snyder@fnal.gov>
798
799 * src/libusb-glue.c: finally fix up the short header detection
800 to skip over zero packets when encountered.
801 * examples/pathutils.c: fix a problem where all files sent has
802 to include a "." (period).
803
Linus Walleijbebc6d52008-02-06 00:17:58 +00008042008-02-06 Linus Walleij <triad@df.lth.se>
805
806 * src/libusb-glue.c: wait for response > 0 instead of > 2.
807
Linus Walleijce245a82008-01-28 10:25:13 +00008082008-01-28 Linus Walleij <triad@df.lth.se>
809
Linus Walleij0801cd52008-01-29 22:19:15 +0000810 * src/libmtp.c: LIBMTP_Get_Filemetadata() return metadata for
811 folders (associations) too. There is really no reason why it
812 shouldn't and it's good for use internally.
813 LIBMTP_Get_Filelisting_With_Callback() will still not return
814 any associations however. We want to use the folder functions
815 for that.
816
8172008-01-28 Linus Walleij <triad@df.lth.se>
818
Linus Walleijce245a82008-01-28 10:25:13 +0000819 * src/libmtp.h.in: withdraw LIBMTP_Set_Object_Parent() function,
820 no known devices will support this.
Linus Walleij8be2c032008-01-28 21:23:47 +0000821 * src/libmtp.c: dito. Fix up some problems with the
822 LIBMTP_Set_Object_Filename() function.
Linus Walleijce245a82008-01-28 10:25:13 +0000823
Linus Walleij399807b2008-01-27 22:05:12 +00008242008-01-27 Linus Walleij <triad@df.lth.se>
825
826 * src/libmtp.c: fix up some minor things and documentation on
827 the object handling functions.
828
Linus Walleijde8193f2008-01-27 14:55:31 +00008292008-01-27 Florent Mertens <flomertens@gmail.com>
830
831 * src/libmtp.h.in: new functions to rename object filenames
832 and change object parents. Good when modifying the device
833 as a file system, LIBMTP_Set_Object_Filename(),
834 LIBMTP_Set_Object_Parent().
835 * src/libmtp.c: implementation.
836
Linus Walleij00411ee2008-01-27 12:24:51 +00008372008-01-27 Linus Walleij <triad@df.lth.se>
838
839 * src/libusb-glue.c: re-read response from device until
840 it atleast exceeds two bytes. This fixes a problem with
841 the Samsung YP-U3 when populated with many, many songs.
842
Richard Lowa11a6ad2008-01-21 17:23:55 +00008432008-01-21 Richard Low <richard@wentnet.com>
844
845 * src/music-players.h: add Thomson Lyrca HC308A, remove
846 incorrect ID for Creative Zen 8GB
847
Richard Low36e447c2008-01-20 15:24:55 +00008482008-01-20 Richard Low <richard@wentnet.com>
849
850 * src/libmtp.c: add LIBMTP_Get_Representative_Sample()
851 * src/libmtp.h.in: ditto
852
8532008-01-14 Linus Walleij <triad@df.lth.se>
Linus Walleij2350b712008-01-14 22:54:37 +0000854
855 * src/libmtp.c: add LIBMTP_Get_Manufacturername(). Remember
856 to bump soname (compatible) in 0.2.6 (or whatever we name it).
857 0.3.0 perhaps?
858 * src/libmtp.h.in: dito.
859 * src/libmtp.c: detect default folders named "Datacasts" and
860 "Texts".
861
Richard Low36e447c2008-01-20 15:24:55 +00008622008-01-11 Linus Walleij <triad@df.lth.se>
Linus Walleij7fcaa372008-01-11 00:48:06 +0000863
864 * examples/pathutils.c: recognize .bin files as firmware,
865 used by e.g. RockBox developers. Doesn't cost anything to
866 add.
867
Richard Low36e447c2008-01-20 15:24:55 +00008682008-01-08 Linus Walleij <triad@df.lth.se>
Linus Walleij89daa092008-01-08 22:35:39 +0000869
870 * configure.ac: bump to 0.2.5.
871 * src/Makefile.am: interface to libmtp.so.7.0.2
872 (compatible).
873 * Release as libmtp 0.2.5. Why not?
874
Linus Walleij0b75ab62007-12-28 00:47:34 +00008752007-12-28 Linus Walleij <triad@df.lth.se>
876
877 * src/libmtp.c: make libmtp use PTP_OPC_AlbumArtist on albums,
878 instead of the (seldom present) PTP_OPC_Artist tag. Use both
879 if both are supported. We're not setting AlbumArtist on regular
880 tracks though, what's the point, and what does it mean if this
881 differs from Artist??
882
Linus Walleija3544f62007-11-30 01:20:04 +00008832007-11-30 Linus Walleij <triad@df.lth.se>
884
885 * src/music-players.h: new flag for the YP-T10.
886 * src/device-flags.h: define the new flag, that is needed
887 to support Ogg files on these devices.
888 * src/libmtp.c: recognize and report Ogg support, set type
889 to unknown when transferring.
890
Linus Walleijcc2cf972007-11-22 20:23:43 +00008912007-11-22 Linus Walleij <triad@df.lth.se>
892
893 * configure.ac: bump to 0.2.4.
894 * src/Makefile.am: bump age of soversion (compatible).
895 * RELEASE 0.2.4 mainly to get some new device support out there.
896
Linus Walleijbc550bc2007-11-08 23:25:09 +00008972007-11-09 Linus Walleij <triad@df.lth.se>
898
899 * src/libusb-glue.c: avoid probing deeper into interfaces
900 that have a string describing them as "MTP" after a
901 suggested patch from Alexander Kanavin <ak@sensi.org>.
Linus Walleij20c3b672007-11-09 19:02:19 +0000902 * examples/albumart.c: patch from Chris Waters <xtifr@debian.org>
903 replacing calls to atoi() with calls to strtoul(). Since
904 object ID:s are unsigned long, atoi() would reject too
905 high object IDs. The patch also fix a few memory leaks.
906 THANKS DEBIAN! We love our downstream!
907 * examples/newplaylist.c: dito.
908 * examples/pathutils.c: dito.
909 * examples/thumb.c: dito.
Linus Walleijbc550bc2007-11-08 23:25:09 +0000910
Linus Walleij5f42ef42007-11-05 22:58:50 +00009112007-11-05 Linus Walleij <triad@df.lth.se>
912
913 * src/libmtp.c: use OPFF codes instead of DPFF codes,
914 we're dealing with objects, not device props.
915 * src/ptp.c: silence some OPFF freeing warnings.
916
Linus Walleij3e4b1142007-11-01 23:54:16 +00009172007-11-02 Linus Walleij <triad@df.lth.se>
918
919 * src/libusb-glue.c: try to repair header here instead of
920 ignoring error in ptp.c.
Linus Walleij1d0e84f2007-11-02 21:05:35 +0000921 * src/music-players.h: flag some more Creative devices as
922 broken getting all files.
923 * src/Makefile.am: reference the 2 new .h files.
Linus Walleij3e4b1142007-11-01 23:54:16 +0000924
Linus Walleij8f4bb042007-10-31 08:59:12 +00009252007-10-31 Linus Walleij <triad@df.lth.se>
926
927 * src/ptp.c: bring cache handling into this file.
928 * src/ptp.h: dito.
929 * src/libmtp.c: consequential changes.
930
Linus Walleij1a673de2007-10-29 23:10:05 +00009312007-10-30 Linus Walleij <triad@df.lth.se>
932
933 * src/music-players.h: split this off as a shared file
934 between us and libgphoto2 so we get out of the syncing
935 nightmare.
Linus Walleij3e667ae2007-10-29 23:29:39 +0000936 * src/device-flags.h: split out this as well, Marcus
937 might want it.
Linus Walleij8f4bb042007-10-31 08:59:12 +0000938 * src/libusb-glue.c: consequential movement.
Linus Walleij3e667ae2007-10-29 23:29:39 +0000939 * src/libmtp.c: reference new flag file.
Linus Walleij0b89a7e2007-10-30 22:21:15 +0000940 * src/ptp.c: sync in upstream.
941 * src/ptp.h: dito.
Linus Walleij1a673de2007-10-29 23:10:05 +0000942
Linus Walleij08c90082007-10-25 20:29:53 +00009432007-10-25 Linus Walleij <triad@df.lth.se>
944
945 * Release 0.2.3. Nice bunch of cleaned-up code, sad we had
946 too bump soversion but such is life.
947
Linus Walleijfb28b632007-10-23 21:56:18 +00009482007-10-23 Linus Walleij <triad@df.lth.se>
949
950 * src/libmtp.c: make LIBMTP_Send_File_From_File_Descriptor()
951 survive the case where device->storage is NULL. This happens
952 on the Nokia 3110c.
953
Linus Walleij7752b952007-10-19 20:11:46 +00009542007-10-19 Linus Walleij <triad@df.lth.se>
955
956 * src/libmtp.c: bring the cache handling code together at the
957 end of the file, refactor so as to avoid code duplication,
Linus Walleij4d0deea2007-10-19 21:27:48 +0000958 do things in one place only and looking good. Get folder
959 list recursively instead, this works better with fast dir
960 retrieveal I think.
Linus Walleij7752b952007-10-19 20:11:46 +0000961
Linus Walleij26d42da2007-10-18 14:02:02 +00009622007-10-18 Linus Walleij <triad@df.lth.se>
963
964 * src/libmtp.c: fix the deletion of cached properties when
965 removing objects. This code was seriously broken.
966
jefferaida9687e2007-10-16 16:44:15 +00009672007-10-16 Jeff Mitchell <kde-dev@emailgoeshere.com>
968
Linus Walleijc5908a02007-10-16 20:42:08 +0000969 * src/libusb-glue.c: remove the previously-concatenated vendor
970 and product string "name" field as it's now redundant
971 * src/Makefile.am: interface to libmtp.so.7.0.0 (incompatible,
972 device_entry_struct members changed)
973 * examples/hotplug.c: port to use vendor and product instead of
974 name, also some useful commenting in the fdi file
jefferaida9687e2007-10-16 16:44:15 +0000975
Linus Walleij06542122007-10-14 22:13:48 +00009762007-10-15 Linus Walleij <triad@df.lth.se>
977
978 * src/libusb-glue.c: repair headers, don't just ignore them.
Linus Walleijf9267e92007-10-15 21:07:37 +0000979 Add support for broken set object proplist devices. Motorola
980 RAZR2 V8 has this problem.
981 * src/libusb-glue.h: flag for broken set object proplist.
982 * libmtp.c: avoid broken set object proplist.
Linus Walleij06542122007-10-14 22:13:48 +0000983
jefferaida9687e2007-10-16 16:44:15 +00009842007-10-09 Jeff Mitchell <kde-dev@emailgoeshere.com>
985
Linus Walleijc5908a02007-10-16 20:42:08 +0000986 * src/libusb-glue.c: add separate vendor and product strings
987 in device entry structs
jefferaida9687e2007-10-16 16:44:15 +0000988 * src/libmtp.h.in: update device entry structs to reflect this
989
Linus Walleija91f8892007-10-04 21:25:22 +00009902007-10-04 Linus Walleij <triad@df.lth.se>
991
992 * src/libusb-glue.c: rm some pointless confusing defines
993 inherited from libgphoto2.
Linus Walleij2ec6ff52007-10-04 22:20:43 +0000994 * configure.ac: bump to 0.2.2
995 * src/Makefile.am: interface to libmtp.so.6.0.2 (compatible)
996 * Release as 0.2.2. Now is as good time as ever. Release
997 early and release often.
Linus Walleija91f8892007-10-04 21:25:22 +0000998
Linus Walleij41e75b22007-10-03 21:58:06 +00009992007-10-03 Linus Walleij <triad@df.lth.se>
1000
1001 * src/libusb-glue.c: tag the OLD Creative devices with
1002 DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST_ALL, after clear
1003 indications that it was broken when retrieveing folders
1004 on all those devices. The newer devices (those supporting
1005 32bit object size) presumably does not have this limitation.
1006
Linus Walleijca2a1702007-10-02 20:41:45 +000010072007-10-02 Linus Walleij <triad@df.lth.se>
1008
1009 * src/libmtp.c: devices which represented file size with a
1010 32bit value (some Creative devices) would return a bananas
Linus Walleij1d877372007-10-02 21:21:57 +00001011 file size. Fixed it up by...
1012 * src/libmtp.h.in: recycling the uint8_t "interface"
Linus Walleijddaba2f2007-10-02 21:20:30 +00001013 field in the device struct as a holder of the object size
1014 for the device. This will make the new library binary
1015 compatible with version 0.2.1 since no-one should *ever*
1016 dereference that value (which used to be the USB interface
1017 number and is now the object size).
Linus Walleijca2a1702007-10-02 20:41:45 +00001018 * examples/files.c: display 64bit file sizes in hex correctly.
1019
Richard Low99a93e82007-09-29 08:16:08 +000010202007-09-29 Richard Low <richard@wentnet.com>
1021
1022 * src/libmtp.c: avoid crash on failed connect
1023
Linus Walleij8e3af002007-09-28 19:21:54 +000010242007-09-28 Linus Walleij <triad@df.lth.se>
1025
1026 * src/libusb-glue.h: introduce a new device flag for devices that
1027 have broken PTP headers, first encountered on the Creative
1028 ZEN 8GB.
1029 * src/libusb-glue.c: attempt to begin to work around the broken
1030 PTP headers.
1031
Linus Walleij29f03ba2007-09-25 19:22:12 +000010322007-09-25 Linus Walleij <triad@df.lth.se>
1033
1034 * src/libusb-glue.h: add a new device flag for devices that don't
1035 like it if you release the interface (or try to clear endpoints).
1036 * src/libusb-glue.c: dito, implement this flag, tag all SanDisk
1037 Sansa devices with it except for the Linux-based Sansa Connect.
1038
Richard Low61edc1a2007-09-23 10:35:48 +000010392007-09-23 Richard Low <richard@wentnet.com>
1040
1041 * src/libusb-glue.c: updated some device flags, removed second
1042 call to ptp_getdeviceinfo
1043 * src/libmtp.c: property cache fixes
1044
Linus Walleij7783b9b2007-09-22 22:10:44 +000010452007-09-23 Linus Walleij <triad@df.lth.se>
1046
1047 * src/libmtp.c: wrapped updating of playlists and albums into an
1048 abstract function so we do it consistently. Added support for
1049 tagging on modification date to files, tracks, playlists and
1050 albums.
1051
Linus Walleij580aff72007-09-21 13:02:19 +000010522007-09-21 Linus Walleij <triad@df.lth.se>
1053
1054 * src/libusb-glue.c: flag the Samsung YH-820 with
1055 DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST_ALL after tests by Stephan
1056 Fabel.
1057
Linus Walleijda17cda2007-09-18 21:12:05 +000010582007-09-18 Linus Walleij <triad@df.lth.se>
1059
1060 * src/libusb-glue.c: stop the endpoint unhalting/unstalling when
1061 closing the USB device. It was AYBABTU the Samsungs
1062 (and others).
1063
Linus Walleij724f0102007-09-17 20:10:12 +000010642007-09-17 Linus Walleij <triad@df.lth.se>
1065
1066 * src/libusb-glue.c: silenced weirdo error message.
1067
Linus Walleijb644b412007-09-16 21:46:02 +000010682007-09-16 Linus Walleij <triad@df.lth.se>
1069
1070 * src/ptp.c: cancellation working *as it should*
1071 * src/ptp.h: dito.
1072 * src/libusb-glue.c: dito.
1073 * src/libusb-glue.h: dito.
1074 * src/libmtp.c: dito.
1075 * src/libmtp.h.in: new error code for cancellation.
1076
Richard Lowe9f205f2007-09-16 16:25:50 +000010772007-09-16 Richard Low <richard@wentnet.com>
1078
1079 * src/libusb-glue.c: only read descriptors for devices we
1080 don't know since it breaks on some devices
Richard Lowd7bcab52007-09-16 16:30:20 +00001081 * src/libmtp.c: a couple of bugs fixed in metadata retreival
Richard Lowe9f205f2007-09-16 16:25:50 +00001082
Linus Walleij3e418e22007-09-15 20:30:14 +000010832007-09-15 Linus Walleij <triad@df.lth.se>
1084
1085 * src/ptp.c: get cancellation of xfers working.
1086 * src/libusb-glue.c: dito.
1087 * src/libusb-glue.h: dito.
1088 * src/libmtp.c: dito.
1089
Linus Walleijf43558d2007-09-14 17:59:20 +000010902007-09-14 Linus Walleij <triad@df.lth.se>
1091
1092 * src/ptp.h: sync in upstream to get cancellation prototypes.
Linus Walleijbd3bf9e2007-09-14 19:31:54 +00001093 * src/libusb-glue.c: first try to implement cancellation.
Linus Walleij997d3ec2007-09-14 21:29:54 +00001094 * src/libmtp.c: dito. Bugfix to one of Marcus' realloc():s.
Linus Walleijf43558d2007-09-14 17:59:20 +00001095
Linus Walleij1e9a0332007-09-12 19:35:56 +000010962007-09-12 Marcus Meissner <meissner@suse.de>
1097
1098 * src/ptp-pack.c: sync to upstream, rewrote packing to use
1099 a static array to be qsort():ed when reading in proplists.
1100 * src/ptp.c: reflect changes.
1101 * src/ptp.h: reflect changes.
1102 * src/libmtp.c: reflect changes.
1103
Linus Walleij71b8c0f2007-09-06 09:09:14 +000011042007-09-06 Linus Walleij <triad@df.lth.se>
1105
1106 * examples/hotplug.c: edit up into a udev ruleset that is
1107 inexorably complicated but probably compatible with most
1108 udev versions out there. Now please DON'T update udev
1109 styles again!
1110
Richard Low17cec172007-09-05 20:43:51 +000011112007-09-05 Richard Low <richard@wentnet.com>
1112
1113 * src/libmtp.c: album fixups
1114
Linus Walleij50d47a52007-09-05 07:59:40 +000011152007-09-05 Linus Walleij <triad@df.lth.se>
1116
1117 * examples/hotplug.c: use old udev style by default, use new
1118 if requested explicitly by a -U switch.
1119
Linus Walleij6bf68b42007-09-03 22:50:02 +000011202007-09-04 Linus Walleij <triad@df.lth.se>
1121
1122 * src/libmtp.c: make sure we query recursively supplying each
1123 storage ID in turn, so we spin over storages. Also check
1124 what storage may be available to store a file, if the first
1125 one fails, try the next!
1126
Linus Walleija0b7d042007-08-31 23:57:31 +000011272007-09-01 Linus Walleij <triad@df.lth.se>
1128
1129 * src/ptp-pack.c: make the resulting MTP proplist sorted by
1130 object ID.
Linus Walleij70ac9772007-09-01 18:59:28 +00001131 * hotplug.sh.in: explicitly call BASH instead of just sh. Warn
1132 if script is not run as root.
Linus Walleija0b7d042007-08-31 23:57:31 +00001133
Linus Walleijf4592072007-08-29 10:19:25 +000011342007-08-29 Linus Walleij <triad@df.lth.se>
1135
1136 * examples/Makefile.am: move include define from AM_CFLAGS to
1137 AM_CPPFLAGS (as it should be) bug found by Petar Petrov
1138 <pesho.petrov@gmail.com>.
Linus Walleijb0ab5482007-08-29 21:08:54 +00001139 * src/libusb-glue.c: strange misleading message corrected. Fix
1140 up the horrid interface passing back-and-forward and confusing.
1141 * src/libusb-glue.h: dito.
1142 * src/libmtp.c: rid interface references, that's a USB issue!
1143 * src/libmtp.h.in: flag interface number in device struct as retired.
Linus Walleijf4592072007-08-29 10:19:25 +00001144
Linus Walleij1b87ea72007-08-28 07:53:09 +000011452007-08-28 Linus Walleij <triad@df.lth.se>
1146
1147 * src/libmtp.c: retire the horrid, broken, stream send facility that
1148 does not work on any device since they all want to know the file
Linus Walleij8533bf72007-08-28 10:03:59 +00001149 size in advance. Add in some code to fall back on the recursive
1150 metadata retrieveal if getting the whole long list fails.
Linus Walleij6d0cf972007-08-28 09:48:19 +00001151 * src/libusb-glue.c: tag all Sansas as having broken GetObjectPropList
Linus Walleijc4108242007-08-28 20:38:27 +00001152 when all tags for all objects are requested. Scan each INTERFACE
1153 of the device for device descriptors.
Linus Walleij1b87ea72007-08-28 07:53:09 +00001154
Linus Walleijd3b78572007-08-24 21:28:24 +000011552007-08-24 Linus Walleij <triad@df.lth.se>
1156
1157 * src/libusb-glue.h: new device flag to strip all non-7bit chars from
1158 filenames on some lame devices.
1159 * src/libusb-glue.c: tag the Philips Shoqbox with this flag.
1160 * src/libmtp.c: strip the non-7bit chars from filenames if that
1161 flag is set.
1162 * src/unicode.h: introduce a 7bit-strip helper function.
1163 * src/unicode.c: dito.
1164
Linus Walleij29559562007-08-22 21:38:04 +000011652007-08-22 Linus Walleij <triad@df.lth.se>
1166
1167 * src/libmtp.c: deal with setting of metadata sets for u16/u32:s that
1168 are ranges or enums, rounding and twiddling if need be. This is
1169 needed because some new devices (like the TrekStor Sweez,
1170 has duration defined as a range: MIN 0, MAX 65535000, STEP 1
1171 and Sandisk Sansa c240 has duration as range: MIN 0, MAX 2147483000,
1172 STEP 1000) whereas old devices would just accept any value.
1173
Richard Lowd47b9212007-08-16 21:14:23 +000011742007-08-16 Richard Low <richard@wentnet.com>
1175
1176 * src/ptp-pack.c: allow packing of NULL strings
1177
rreardon21a3a9d2007-08-15 10:56:31 +000011782007-08-15 Robert Reardon <rreardon@monkshatch.vispa.com>
1179
1180 * src/libmtp.c: return device max values for representative
rreardon65b47322007-08-15 15:17:54 +00001181 samples.
rreardon21a3a9d2007-08-15 10:56:31 +00001182
Richard Low92cb2692007-08-15 09:35:23 +000011832007-08-15 Richard Low <richard@wentnet.com>
1184
1185 * src/libusb-glue.c: added Philips Shoqbox
1186
Linus Walleij53c5f4e2007-08-13 08:27:58 +000011872007-08-13 Linus Walleij <triad@df.lth.se>
1188
1189 * src/ptp.c: sync to upstream.
1190
Linus Walleijdb906232007-08-07 15:59:09 +000011912007-08-07 Linus Walleij <triad@df.lth.se>
1192
1193 * configure.ac: bump to 0.2.1.
1194 * src/Makefile.am: interface to libmtp.so.6.0.1.
1195 * Release libmtp 0.2.1!
1196
Linus Walleijdbcc8242007-08-05 22:31:26 +000011972007-08-06 Linus Walleij <triad@df.lth.se>
1198
Linus Walleije23000a2007-08-06 20:47:17 +00001199 * configure.ac: tag on the large file support compilation flag.
Linus Walleij07795772007-08-06 18:44:06 +00001200 * src/libmtp.c: smack up the data file transfer function so it
1201 works again and *finally* should support 64bit sizes!
Linus Walleijd2778d12007-08-06 19:24:58 +00001202 Then wrapped the track sending function around the file
1203 sending function so there is no more pointless code duplication
Linus Walleij05358382007-08-06 20:46:35 +00001204 giving rise to ever more bugs. Enable LFS, Large File Support so
1205 we can handle 64bit files properly.
1206 * examples/sendtr.c: shape up print-outs, LFS support.
Linus Walleijd2778d12007-08-06 19:24:58 +00001207 * examples/sendfile.c: dito.
Linus Walleij07795772007-08-06 18:44:06 +00001208
12092007-08-06 Linus Walleij <triad@df.lth.se>
1210
Linus Walleijdbcc8242007-08-05 22:31:26 +00001211 * src/ptp.c: fixed a stray error print bug.
1212 * src/libmtp.c: overhaul of all proplist setting to follow the same
1213 design pattern. Probably fixed a few opd memory leaks along the road.
1214
Richard Lowfd86bd12007-08-05 09:41:06 +000012152007-08-05 Richard Low <richard@wentnet.com>
1216
1217 * src/libmtp.c: send 64 bit filesize
1218
Linus Walleijd9d28d52007-08-04 19:01:18 +000012192007-08-04 Linus Walleij <triad@df.lth.se>
1220
1221 * src/libmtp.c: fix up the 64bit filesize and tracksize support.
1222 There were some bugs...
Linus Walleij529d08f2007-08-04 19:20:00 +00001223 * src/Makefile.am: tweak interface revision so that we produce
1224 libmtp.so.6 now.
1225 * configure.ac: bump library revision to 0.2.0.
Linus Walleij2f049902007-08-04 20:02:39 +00001226 * examples/hotplug.c: switch to use ATTR{} instead of SYSFS{}
Linus Walleijdbcc8242007-08-05 22:31:26 +00001227 * Release libmtp 0.2.0!
Linus Walleijd9d28d52007-08-04 19:01:18 +00001228
Richard Low25bf8002007-08-04 08:36:53 +000012292007-08-04 Richard Low <richard@wentnet.com>
1230
1231 * src/libusb-glue.c: add Sansa m240 (a different ID to before)
1232 Give the Toshiba Gigabeat S
1233 DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST_ALL.
1234
12352007-08-03 Marcus Meissner <meissner@suse.de>
Linus Walleij960ebb62007-08-03 21:38:34 +00001236
1237 * m4/byteorder.m4: byteorder fixes.
1238
Richard Lowcc265902007-07-30 20:14:12 +000012392007-07-30 Richard Low <richard@wentnet.com>
1240
1241 * src/ptp-pack.c: fix up array packing
1242
Linus Walleijabf54752007-07-30 19:51:54 +000012432007-07-30 Linus Walleij <triad@df.lth.se>
1244
1245 * src/ptp-pack.c: try to get a uniform 64 bit
1246 support, use some old macro code.
1247
Richard Lowc3f5fc32007-07-29 09:40:50 +000012482007-07-29 Richard Low <richard@wentnet.com>
1249
1250 * src/libmtp.c: 64 bit filesize support for tracks
1251 * src/ptp-pack.c: ditto
1252 * src/ptp.h: ditto
1253
Richard Low39a147a2007-07-27 20:18:01 +000012542007-07-27 Richard Low <richard@wentnet.com>
1255
1256 * src/libmtp.c: Some better NULL checks
1257
Linus Walleijc51a4312007-07-27 06:28:39 +000012582007-07-27 Linus Walleij <triad@df.lth.se>
1259
1260 * examples/hotplug.c: changed subsystem from "usb_device"
1261 to "usb". Presumably a change in the kernel some time ago.
1262
Richard Lowbd14bf42007-07-21 11:25:11 +000012632007-07-21 Richard Low <richard@wentnet.com>
1264
1265 * src/libmtp.c: Correctly bail out of LIBMTP_Get_Storage
1266
Linus Walleij5d533bb2007-07-17 21:48:57 +000012672007-07-17 Linus Walleij <triad@df.lth.se>
1268
1269 * examples/reset.c: Add a device reset program.
1270 * src/libmtp.c: Add reset command.
1271 * src/ptp.c: dito, and sync in upstream changes.
1272 * src/ptp.h: dito, and sync in upstream changes.
1273 * src/ptp-pack.c: sync in upstream changes.
1274
Richard Low0fa83522007-07-17 20:05:08 +000012752007-07-17 Richard Low <richard@wentnet.com>
1276
1277 * src/libmtp.c: Added some more (paranoid) NULL checks
1278
Richard Low8e8d9d42007-07-14 10:36:50 +000012792007-07-14 Richard Low <richard@wentnet.com>
1280
1281 * src/libmtp.c: Add a NULL check
1282
12832007-07-13 Richard Low <richard@wentnet.com>
Richard Low14afeb72007-07-13 19:11:56 +00001284
1285 * src/libusb-glue.c: add Disney MixMax
1286
Linus Walleij9521e2b2007-07-10 21:50:42 +000012872007-07-11 Linus Walleij <triad@df.lth.se>
1288
1289 * src/libmtp.c: put in Tero's name in the preamble.
1290 * src/libusb-glue.c: make the dump function sump out the zuper zecret
1291 devize dezcriptorz in clear text hex.
1292
Linus Walleij3e13dda2007-07-09 22:42:17 +000012932007-07-10 Linus Walleij <triad@df.lth.se>
1294
Linus Walleijc51a4312007-07-27 06:28:39 +00001295 * examples/hotplug.c: force HAL OGG support on iriver devices.
1296 They all have it! Also force for two other devices that does
1297 this.
Linus Walleij3e13dda2007-07-09 22:42:17 +00001298
Linus Walleij2b218852007-07-07 20:16:36 +000012992007-07-07 Linus Walleij <triad@df.lth.se>
1300
1301 * src/libusb-glue.h: new flag for the case when getting the object
1302 property list of all metadata for all objects is broken.
1303 * src/libusb-glue.c: tentatively tag a Philips device with this flag.
1304 * src/libmtp.c: fixed usage of returned pointers from realloc(),
1305 introduce new flag.
1306
tsaarnia3eb60a2007-07-06 17:41:30 +000013072007-07-05 Tero Saarni <tero.saarni@gmail.com>
1308
1309 * src/libmtp.c: update cache when manipulating objects instead of
1310 always flushing the whole cache.
1311
Linus Walleij338ade42007-07-03 20:44:08 +000013122007-07-03 Linus Walleij <triad@df.lth.se>
1313
1314 * src/libmtp.c: use the params->proplist metadata cache. Help
1315 rid all flush_handles() you can in order to add even more to
1316 the efficiency of the cache.
1317
Linus Walleijf0bf4372007-07-01 21:47:38 +000013182007-07-01 Linus Walleij <triad@df.lth.se>
1319
1320 * src/ptp.c: sync to upstream gPhoto source.
1321 * src/ptp.h: dito.
1322 * src/ptp-pack.c: dito.
1323 * src/libmtp.c: use the params->objectinfo object info cache to
1324 speed things up considerably. This is exactly what libgphoto2
1325 does so now we move closer to upstream. I believe this also
1326 fixes quite a few memory leaks because we weren't freeing the
1327 strings inside the objectinfo previously.
1328
Linus Walleije60d56b2007-05-28 22:13:12 +000013292007-05-29 Linus Walleij <triad@df.lth.se>
1330
1331 * src/libmtp.c: use the set object prop list command to set album
1332 props if available. Follow metadata set design pattern used for
1333 tracks; check first if the object type can set name/artist/genre.
1334
jefferaida9687e2007-10-16 16:44:15 +000013352007-05-24 Jeff Mitchell <kde-dev@emailgoeshere.com>
jefferaif28f2a12007-05-24 23:07:41 +00001336
Linus Walleije60d56b2007-05-28 22:13:12 +00001337 * hotplug.sh.in: Properly install the HAL FDI rules if
jefferaie3f1bba2007-05-24 23:27:13 +00001338 the user so chooses to when prompted.
1339
jefferaida9687e2007-10-16 16:44:15 +000013402007-05-24 Jeff Mitchell <kde-dev@emailgoeshere.com>
jefferaie3f1bba2007-05-24 23:27:13 +00001341
Linus Walleije60d56b2007-05-28 22:13:12 +00001342 * examples/hotplug.c: Fix/update HAL output to conform
jefferaif28f2a12007-05-24 23:07:41 +00001343 to new specs. Fix whitespacing to be consistent.
1344
Richard Low34a624a2007-05-17 12:32:35 +000013452007-05-17 Richard Low <richard@wentnet.com>
1346
1347 * src/libusb-glue.c: added Samsung YH-920
1348
Linus Walleij99466e32007-05-11 21:42:53 +000013492007-05-11 Linus Walleij <triad@df.lth.se>
1350
1351 * examples/hotplug.c: output a usb.ids map if need be.
1352 * sync-usbids.sh: script to assist in comparing our device
1353 database to the linux-usb database so we can submit new
1354 entries to it more easily. Please extend this until it
1355 creates automated diff:s if you can!
1356
Linus Walleij229b24b2007-05-09 22:10:55 +000013572007-05-10 Linus Walleij <triad@df.lth.se>
1358
1359 * src/libusb-glue.c: some new devices, some rewording etc.
1360
Linus Walleij4fa9d5e2007-05-05 20:35:56 +000013612007-05-05 Linus Walleij <triad@df.lth.se>
1362
1363 * src/libusb-glue.h: removed the DUALMODE flag, it's pointless and
1364 equal to the problem solved by the UNLOAD_DRIVER flag.
1365 * src/libusb-glue.c: dito, move the only DUALMODE flag into an
Linus Walleij1327a852007-05-06 19:47:38 +00001366 UNLOAD_DRIVER flag. Added Archos Gmini.
Linus Walleij4fa9d5e2007-05-05 20:35:56 +00001367
Richard Low6711f442007-05-05 19:00:59 +000013682007-05-05 Richard Low <richard@wentnet.com>
1369
1370 * src/libusb-glue.c: added Philips PSA610
1371 * src/libmtp.c: code to recursively get object handles for each
1372 assoc.
Linus Walleij4fa9d5e2007-05-05 20:35:56 +00001373 * src/ptp.h: ditto
Richard Low6711f442007-05-05 19:00:59 +00001374
Richard Low1869d272007-04-28 13:55:17 +000013752007-04-28 Richard Low <richard@wentnet.com>
1376
1377 * src/libusb-glue.c: new device
1378
Linus Walleijeccaae02007-04-26 08:19:03 +000013792007-04-26 Linus Walleij <triad@df.lth.se>
1380
Linus Walleij4fa9d5e2007-05-05 20:35:56 +00001381 * src/libusb-glue.c: memory leak: dangling, unused pointer killed.
Linus Walleijeccaae02007-04-26 08:19:03 +00001382
Linus Walleijadce4a52007-04-23 07:28:11 +000013832007-04-23 Linus Walleij <triad@df.lth.se>
1384
1385 * src/libmtp.h.in: extend LIBMTP_album_t to include fields for
1386 artist and genre. This is sort of required so we must change
1387 the API to have it working properly.
1388 * src/libmtp.c: dito. Reflect changes in implementation.
1389
Linus Walleij953504f2007-04-18 19:01:11 +000013902007-04-18 Linus Walleij <triad@df.lth.se>
1391
1392 * src/ptp.c: sync to upstream gPhoto source.
1393 * src/ptp.h: dito.
1394
Richard Low3637e1a2007-04-17 21:25:10 +000013952007-04-17 Richard Low <richard@wentnet.com>
1396
1397 * src/libusb-glue.c: new device
1398
Richard Low856f3452007-04-13 11:21:26 +000013992007-04-13 Richard Low <richard@wentnet.com>
1400
1401 * src/libusb-glue.c: new devices
1402
Linus Walleijfd531632007-04-12 19:49:58 +000014032007-04-12 Linus Walleij <triad@df.lth.se>
1404
1405 * examples/hotplug.c: fix GOTO style in udev map.
1406
Linus Walleije73f74a2007-04-02 08:51:35 +000014072007-04-02 Linus Walleij <triad@df.lth.se>
1408
1409 * examples/files.c: some WIN32 64bit prefix fixup.
1410 * examples/tracks.c: dito.
1411
tedbullockcd9f4992007-03-29 06:00:40 +000014122007-03-28 Ted Bullock <tbullock@canada.com>
1413
Linus Walleije73f74a2007-04-02 08:51:35 +00001414 * examples/*.c: Print library version number on execution of examples.
1415 * src/libmtp.h.in: New version number string to aid version echoing.
tedbullockcd9f4992007-03-29 06:00:40 +00001416
Linus Walleij3968f362007-03-26 19:50:05 +000014172007-03-26 Linus Walleij <triad@df.lth.se>
1418
1419 * configure.ac: bump version to 0.1.5, release 0.1.5!
1420 * src/Makefile.am: bump lib interface revision to libmtp.so.5.2.1,
1421 backwards compatible to libmtp.so.5.
1422
Richard Low057ea772007-03-24 13:37:38 +000014232007-03-24 Richard Low <richard@wentnet.com>
1424
1425 * src/libusb-glue.c: fixed bug in zero read code
1426
Linus Walleije7df6532007-03-23 08:20:06 +000014272007-03-23 Linus Walleij <triad@df.lth.se>
1428
1429 * src/libmtp.c: refactored MTP property list handling code to make
1430 things simple. Removed the flag for MTP enhanced: there are devices
Linus Walleij3968f362007-03-26 19:50:05 +00001431 that will not work without MTP enhanced (for example the Samsung
1432 YP-K5 will only support setting object property lists, not
1433 individual object properties, leaving out parts of the MTP basic
1434 subset), thus we are allowed to reverse-engineer and implement this
1435 for interoperability. I also made the output from
1436 LIBMTP_Dump_Device_Info() considerably more verbose, plotting out
1437 the ranges and possible enumerated values of all object properties.
1438 For example you can see that the secret values associated with
1439 Audible.com property 0xda01 is an enumerated value that can be
1440 2, 3 or 4 (etc).
Linus Walleije7df6532007-03-23 08:20:06 +00001441
Richard Low15731fe2007-03-22 20:27:20 +000014422007-03-22 Richard Low <richard@wentnet.com>
1443
1444 * src/ptp.c: PTP_OC_MTP_SetObjPropList implementation
1445 * src/ptp.h: ditto
1446 * src/libmtp.c: Use PTP_OC_MTP_SetObjPropList when updating track
1447 metadata.
1448
Richard Lowbf2675c2007-03-18 18:20:26 +000014492007-03-18 Richard Low <richard@wentnet.com>
1450
1451 * src/libusb-glue.c: new devices. Some of the Samsung players may
Richard Low6c8fea42007-03-18 19:11:52 +00001452 need DEVICE_FLAG_NO_ZERO_READS to be set - I only know the YP-K5
1453 needs it.
Richard Lowbf2675c2007-03-18 18:20:26 +00001454
Linus Walleij2be40c72007-03-16 15:19:44 +000014552007-03-16 Linus Walleij <triad@df.lth.se>
1456
1457 * src/libusb-glue.h: introducing yet another device flag for the
1458 irivers bugged firmwares, this is for the Alzheimer disease that
1459 cause irivers to forget that OGG files are OGG files.
1460 * src/libmtp.c: dito.
1461 * src/libusb-glue.c: introduce this flag for all iriver devices.
1462 * examples/pathutils.c: found a (small) bug.
1463
Linus Walleijd1292842007-03-12 11:52:00 +000014642007-03-12 Linus Walleij <triad@df.lth.se>
1465
1466 * Makefile.am: cleanup patch from Rafael Laboissiere.
Linus Walleija4942fc2007-03-12 19:23:21 +00001467 * src/libusb-glue.c: refactored device detection code to
1468 immediately test if the device is in the known devices list if it
1469 does not feature a MTP device descriptor. This fixes the problem
1470 of not being able to mix devices with proper descriptors and
1471 non-detected devices.
Linus Walleijd1292842007-03-12 11:52:00 +00001472
Linus Walleijc2c96972007-03-07 08:12:31 +000014732007-03-07 Linus Walleij <triad@df.lth.se>
1474
1475 * src/libusb-glue.c: remove libgphoto2 functions that we
1476 don't use.
Linus Walleij45a86372007-03-07 09:36:19 +00001477 * src/libusb-glue.h: export the free_mtpdevice_list() function,
1478 new signature of find_usb_devices().
1479 * src/libmtp.c: shrink code, pass as list of devices instead of
1480 several huge arrays between libmtp.c and USB glue layer in
1481 libusb-glue.c using the nifty list struct defined in libusb-glue.h.
Linus Walleijd24a7ab2007-03-07 21:48:43 +00001482 * Eventually release libmtp 0.1.4.
Linus Walleijc2c96972007-03-07 08:12:31 +00001483
Linus Walleijbfcb7922007-03-06 20:14:04 +000014842007-03-06 Linus Walleij <triad@df.lth.se>
1485
1486 * src/libusb-glue.c: rewrote one more function to be
1487 non-recursive, perhaps I found the remaining bug, just
1488 cannot see that right now, will test tomorrow.
1489
Linus Walleijf27d1cd2007-03-05 14:23:00 +000014902007-03-05 Linus Walleij <triad@df.lth.se>
1491
1492 * src/libmtp.c: rewrite recursive function to linear.
1493 * src/libusb-glue.h: create a wrapper type for the
1494 device list instead of abusing the libusb device "next"
1495 field in our code.
1496 * src/libusb-glue.c: rewrite all recursive functions to
1497 linear, use wrapper objects, don't copy the libusb device
1498 struct, instead just store a pointer to it. This magically
1499 solved a bug...
1500
Linus Walleij82265222007-03-04 19:47:08 +000015012007-03-04 Linus Walleij <triad@df.lth.se>
1502
1503 * src/Makefile.am: bump library interface to libmtp.so.5.2.0
1504 backwards compatible with any libmtp.so.5 interface, for
1505 imminent libmtp 0.1.4 release.
1506
tedbullock848009b2007-03-03 23:20:12 +000015072007-03-03 Ted Bullock <tbullock@canada.com>
tedbullock36f2afb2007-03-03 22:16:44 +00001508
1509 * src/libusb-glue.c: Don't echo warnings about reading a single
Linus Walleij82265222007-03-04 19:47:08 +00001510 extra byte on devices in which DEVICE_FLAG_NO_ZERO_READS has
1511 been set
tedbullock848009b2007-03-03 23:20:12 +00001512 * src/libmtp.c: New API function to retrieve the number of devices
Linus Walleij82265222007-03-04 19:47:08 +00001513 in a list of connected devices
tedbullock848009b2007-03-03 23:20:12 +00001514 * src/libmtp.h: New API function to retrieve the number of devices
Linus Walleij82265222007-03-04 19:47:08 +00001515 in a list of connected devices
tedbullock848009b2007-03-03 23:20:12 +00001516 * examples/detect.c: Use new API function to count number of devices
Linus Walleij82265222007-03-04 19:47:08 +00001517 that were detected
tedbullock36f2afb2007-03-03 22:16:44 +00001518
tedbullock848009b2007-03-03 23:20:12 +000015192007-03-03 Linus Walleij <triad@df.lth.se>
Linus Walleij049f50c2007-03-03 20:30:43 +00001520
1521 * src/libusb-glue.h: Tiresome ramblings to explain exactly what
tedbullock848009b2007-03-03 23:20:12 +00001522 the (now renamed) device flag DEVICE_FLAG_NO_ZERO_READS really
Linus Walleij049f50c2007-03-03 20:30:43 +00001523 means.
1524 * src/libusb-glue.c: Renamed flag. Indent code :-) Reading the code
1525 and being impressed by our ability to iron out the root cause
Linus Walleij4cec9872007-03-03 21:00:53 +00001526 of this kinda weird thing... Fix a few compile warnings.
Linus Walleij049f50c2007-03-03 20:30:43 +00001527
Richard Low4fd59d62007-03-03 16:34:37 +000015282007-03-03 Richard Low <richard@wentnet.com>
1529
1530 * src/libusb-glue.c: (hopefully) fixed iRiver read errors. Enabled
1531 get object prop lists for Clix since it appears to work.
1532 * src/libusb-glue.h: ditto
1533 * src/ptp.h: ditto
1534
Linus Walleij8a5b8852007-02-28 14:25:39 +000015352007-02-28 Linus Walleij <triad@df.lth.se>
1536
1537 * src/ptp.h: Upstream accepted our patch so synced it in.
1538
Linus Walleij07fde342007-02-27 06:09:46 +000015392007-02-27 Linus Walleij <triad@df.lth.se>
1540
1541 * src/ptp.c: Synced in upstream version which removes the
1542 offending line.
Linus Walleij56b037f2007-02-27 08:04:01 +00001543 * src/libmtp.c: replaces strcmp() for strcasecmp() in folder
1544 detection since Windows and some devices (such as iRivers)
1545 ignore case and user capital letters for default folders.
Linus Walleij07fde342007-02-27 06:09:46 +00001546
tedbullock6c060952007-02-26 19:07:23 +000015472007-02-22 Ted Bullock <tbullock@canada.com>
1548
Linus Walleij07fde342007-02-27 06:09:46 +00001549 * src/ptp.c: Comment out line in ptp_exit_fd_handler that was
1550 closing a file descriptor. This is not the responsibility of
1551 the PTP Layer. Defect and solution found by Rob Reardon
tedbullock6c060952007-02-26 19:07:23 +00001552
Linus Walleij304433d2007-02-26 08:02:47 +000015532007-02-26 Linus Walleij <triad@df.lth.se>
1554
Linus Walleij07fde342007-02-27 06:09:46 +00001555 * src/libmtp.c: Implement a check for PTP_OC_MTP_SetObjectPropValue
1556 in the LIBMTP_Update_Track_Metadata() function, there are
1557 obviously devices that do not support this, but only
1558 PTP_OC_MTP_SetObjPropList instead (such as the Samsung YH 925-GS),
1559 but we haven't implemented that yet. Problems are
Linus Walleij304433d2007-02-26 08:02:47 +00001560 atleast reported correctly now.
1561
Richard Low4eb01122007-02-24 10:11:32 +000015622007-02-24 Richard Low <richard@wentnet.com>
1563
1564 * src/libusb-glue.c: Fix incorrect transfer sizes causing zero
1565 write issues
1566
Linus Walleij039d1dd2007-02-23 22:34:07 +000015672007-02-23 Linus Walleij <triad@df.lth.se>
1568
1569 * src/libmtp.c: Undeprecate getting first device code.
1570
Richard Low0f794762007-02-23 22:06:27 +000015712007-02-23 Richard Low <richard@wentnet.com>
1572
1573 * src/libmtp.c: Fix crash when no devices connected
1574
tedbullock2b45f2e2007-02-23 20:16:37 +000015752007-02-23 Ted Bullock <tbullock@canada.com>
1576
1577 * examples/detect.c: Stub out probe functionality
Richard Low0f794762007-02-23 22:06:27 +00001578 * src/libusb-glue.c: Remove old uni-device cruft code
1579 * src/libusb-glue.h: Remove old uni-device cruft code
tedbullock433d2172007-02-23 22:39:12 +00001580 * Replace LIBMTP_ERROR_N0_DEVICE_ATTACHED with
1581 LIBMTP_ERROR_NO_DEVICE_ATTACHED across entire project
tedbullock2b45f2e2007-02-23 20:16:37 +00001582
tedbullock20eb8202007-02-23 00:33:36 +000015832007-02-22 Ted Bullock <tbullock@canada.com>
1584
1585 * examples/albums.c: Updated to use new multi device code
tedbullock51649202007-02-23 03:04:33 +00001586 * examples/tracks.c: Updated to use new multi device code
1587 * examples/files.c: Updated to use new multi device code
tedbullock20eb8202007-02-23 00:33:36 +00001588
tedbullocke7713642007-02-18 23:10:09 +000015892007-02-18 Ted Bullock <tbullock@canada.com>
1590
1591 * src/libmtp.c: Altered the function LIBMTP_Get_First_Device
Linus Walleij039d1dd2007-02-23 22:34:07 +00001592 to wrap around the multi device API. Also added deprecation
1593 warnings to avoid using this function
tedbullocke7713642007-02-18 23:10:09 +00001594
Richard Lowd284f072007-02-17 08:52:41 +000015952007-02-17 Richard Low <richard@wentnet.com>
1596
Richard Low02724f62007-02-17 09:47:26 +00001597 * src/libusb-glue.c: Debug output fixes and read/write sizes changed
Richard Low507e7fe2007-02-17 09:04:42 +00001598 * src/libmtp.c: memset params to 0 to avoid freeing unalloced
1599 memory
Richard Low02724f62007-02-17 09:47:26 +00001600 * src/ptp.h: read/write sizes changed
Richard Lowd284f072007-02-17 08:52:41 +00001601
rreardonbc730092007-02-15 14:32:20 +000016022007-02-15 Robert Reardon <rreardon@monkshatch.vispa.com>
rreardon34511b12007-02-15 14:27:56 +00001603
1604 * src/libmtp.c: Fix a segfault in new error handling code.
1605
Linus Walleij68b19c02007-02-15 11:50:37 +000016062007-02-15 Linus Walleij <triad@df.lth.se>
1607
1608 * src/libmtp.c: Adding some sanity checks to error stack code.
Linus Walleij3d78c4c2007-02-15 12:18:12 +00001609 * examples/newplaylist.c: LGPL boilerplate, crediting Robert.
1610 * examples/playlists.c: LGPL boilerplate.
1611 * examples/sendfile.c: LGPL boilerplate, crediting me and Chris.
1612 * examples/sendtr.c: LGPL boilerplate, crediting me, Chris,
1613 Shaun, Enrique.
1614 * examples/thumb.c: LGPL boilerplate, crediting Robert.
1615 * examples/tracks.c: LGPL boilerplate.
1616 * examples/trexist.c: LGPL boilerplate, crediting noone.
Linus Walleij68b19c02007-02-15 11:50:37 +00001617
tedbullock69a445b2007-02-15 07:41:04 +000016182007-02-15 Ted Bullock <tbullock@canada.com>
1619
1620 * examples/folders.c: Updated to use new multi device code
1621 * src/libmtp.c: Fixed potential memory leaks
Linus Walleij57c2eff2007-02-15 12:02:04 +00001622 * src/libusb-glue.c: Fixed potential memory leaks and fixed device
1623 release segfault for multiple devices
tedbullock69a445b2007-02-15 07:41:04 +00001624
tedbullock0f033cb2007-02-14 20:56:54 +000016252007-02-14 Ted Bullock <tbullock@canada.com>
1626
Linus Walleij57c2eff2007-02-15 12:02:04 +00001627 * src/libusb-glue.c: Wrote three new recursive functions to avoid
1628 extreme levels of multiple indirection and to clean the code up
1629 a bit for multiple devices.
1630 * examples/detect.c: Adjusted function calls to use new multiple
1631 device code.
tedbullock0f033cb2007-02-14 20:56:54 +00001632 * src/libmtp.h.in: Added prototype for LIBMTP_Release_Device_List
1633
Linus Walleij2d3f7b82007-02-14 09:24:20 +000016342007-02-12 Ted Bullock <tbullock@canada.com>
1635
1636 * src/libmtp.c: Two new functions (create_usb_mtp_devices and
Linus Walleij57c2eff2007-02-15 12:02:04 +00001637 LIBMTP_Get_Connected_Devices) to add support for multiple devices
1638 to client applications
Linus Walleij2d3f7b82007-02-14 09:24:20 +00001639 * src/libmtp.h: Added LIBMTP_Get_Connected_Devices as a publicly
Linus Walleij57c2eff2007-02-15 12:02:04 +00001640 accessible function
Linus Walleij2d3f7b82007-02-14 09:24:20 +00001641 *libusb-glue.c: Renamed connect_mtp_devices to find_usb_devices
1642 *libusb-glue.h: Renamed connect_mtp_devices to find_usb_devices
1643
Linus Walleij2a1e3a42007-02-12 08:18:31 +000016442007-02-09 Ted Bullock <tbullock@canada.com>
1645
1646 * src/libusb-glue.c: Addressed a number of potential memory leaks in
Linus Walleij57c2eff2007-02-15 12:02:04 +00001647 the new multiple device code
Linus Walleij2a1e3a42007-02-12 08:18:31 +00001648
Linus Walleij7b7a0e22007-02-05 18:22:27 +000016492007-02-05 Linus Walleij <triad@df.lth.se>
1650
1651 * src/libmtp.h.in: LGPL boilerplate.
1652 * src/libusb-glue.h: LGPL boilerplate.
1653 * src/unicode.h: LGPL boilerplate.
1654 * src/util.h: LGPL boilerplate.
Linus Walleij543badf2007-02-05 19:07:38 +00001655 * examples/albumart.c: LGPL boilerplate, crediting Andy.
1656 * examples/pathutils.h: LGPL boilerplate, crediting Chris.
1657 * examples/pathutils.c: LGPL boilerplate, crediting me and Chris.
1658 * examples/common.h: LGPL boilerplate.
1659 * examples/albums.c: LGPL boilerplate, crediting Chris.
1660 * examples/connect.c: LGPL boilerplate, crediting Chris.
1661 * examples/delfile.c: LGPL boilerplate, crediting me and Chris.
1662 * examples/detect.c: LGPL boilerplate.
1663 * examples/emptyfolders.c: LGPL boilerplate, crediting Andy.
1664 * examples/files.c: LGPL boilerplate.
1665 * examples/folders.c: LGPL boilerplate.
1666 * examples/format.c: LGPL boilerplate.
1667 * examples/getfile.c: LGPL boilerplate, crediting me and Chris.
1668 * examples/getplaylist.c: LGPL boilerplate.
1669 * examples/hotplug.c: LGPL boilerplate, crediting me and Marcus.
1670 * examples/newfolder.c: LGPL boilerplate, crediting me and Chris.
Linus Walleij7b7a0e22007-02-05 18:22:27 +00001671
Linus Walleija8a19cc2007-02-02 22:13:17 +000016722007-02-02 Linus Walleij <triad@df.lth.se>
1673
1674 * src/ptp.c: sync upstream.
1675 * src/ptp.h: dito.
1676 * src/ptp-pack.c: dito.
1677 * src/libmtp.c: make changes necessary to handle
1678 the new iconv(3) code in ptp-pack.c. People will have to
Linus Walleij073c4172007-02-02 22:26:33 +00001679 use recent stdlibc, glibc or libiconv. Also call new memory
Linus Walleij2f45d222007-02-02 22:47:39 +00001680 clean-up functions. Fix LGPL boilerplate text.
1681 * src/unicode.c: Fix LGPL boilerplate text.
1682 * src/utils.c: Fix LGPL boilerplate text.
1683 * src/libusb-glue.c: Fix LGPL boilerplate text.
Linus Walleija8a19cc2007-02-02 22:13:17 +00001684
Linus Walleij550d6d52007-01-24 14:32:51 +000016852007-01-24 Ted Bullock <tbullock@canada.com>
1686
1687 * src/libusb-glue.c: new function to retrieve multiple device
1688 instances.
1689 * src/libusb-glue.h: dito.
1690 * src/libmtp.h.in: new error codes.
1691
Linus Walleij070e9b42007-01-22 08:49:28 +000016922007-01-22 Linus Walleij <triad@df.lth.se>
1693
1694 * examples/albumart.c: use the new errostack.
1695 * examples/delfile.c: dito.
1696 * examples/detect.c: dito.
1697 * examples/emptyfolders.c: dito.
1698 * examples/format.c: dito.
1699 * examples/getfile.c: dito.
1700 * examples/getplaylist.c: dito.
1701 * examples/newfolder.c: dito.
1702 * examples/newplaylist.c: dito.
1703 * examples/playlists.c: dito.
1704 * examples/sendfile.c: dito.
1705 * examples/sendtr.c: dito.
1706 * examples/thumb.c: dito.
1707 * src/libmtp.c: add some errors to the stack so we can
1708 see how it's to be used. (Just a first try...)
Linus Walleij552ba322007-01-22 11:49:59 +00001709 * src/libusb-glue.c: move the LIBMTP_Get_Supported_Devices()
1710 function into this file cause it only return USB devices
1711 anyway and could be renamed LIBMTP_Get_Supported_USB_Devices()
1712 (but let's not do that renaming since it would break the API).
1713 For now let's understand this is a USB-only function by
1714 simply putting it in the libusb-glue.c file.
Linus Walleij070e9b42007-01-22 08:49:28 +00001715
17162007-01-22 Ted Bullock <tbullock@canada.com>
1717
1718 * src/libusb-glue.c: first hack at creating an interface
1719 to retrieve multiple devices.
1720 * src/libmtp.h.in: new error codes related to multiple devices.
1721
Richard Low7059ed42007-01-21 09:33:34 +000017222007-01-21 Richard Low <richard@wentnet.com>
1723
1724 * src/libusb-glue.c: more new devices
1725
Linus Walleij2715c442007-01-20 22:35:29 +000017262007-01-20 Linus Walleij <triad@df.lth.se>
1727
1728 * src/libmtp.h.in: error stack handling like in libnjb.
1729 just bare bones implementation as of now but the idea
1730 should be clearly visible. TODO: add a plethora of
1731 errors and adjust examples to make use of the error
1732 stack.
1733 * src/libmtp.c: dito.
1734
Richard Lowa98d0542007-01-20 12:31:07 +000017352007-01-20 Richard Low <richard@wentnet.com>
1736
1737 * src/libusb-glue.c: new device 'Philips PSA235'
1738
Linus Walleij85a4c032007-01-16 20:42:18 +000017392007-01-16 Linus Walleij <triad@df.lth.se>
1740
1741 * configure.ac: bump and release 0.1.3.
1742 * src/Makefile.am: bump interface REVISION. Nothing changed
1743 externally really.
1744
Linus Walleijd85d2bb2007-01-11 21:32:48 +000017452007-01-11 Linus Walleij <triad@df.lth.se>
1746
1747 * src/libmtp.sym: updated symbol table for mingw32 but does
1748 anyone use this? Also I believe one could auto-generate
1749 this some way, just haven't figured out how... Perhaps with
1750 a funky script that massage libmtp.h if nothing else.
1751
Richard Low4df32f82007-01-11 20:04:39 +000017522007-01-11 Richard Low <richard@wentnet.com>
1753
1754 * src/libusb-glue.c: a zero read fix
1755 * src/libmtp.c: fix spelling mistake
1756
Linus Walleijc49c6372007-01-09 00:18:51 +000017572007-01-09 Linus Walleij <triad@df.lth.se>
1758
1759 * src/libusb-glue.c: repair callbacks, structure the code just
1760 a little bit.
1761 * src/libmtp.c: don't assign values to writes or reads, use the
1762 PTP transport intrinsics instead.
1763
Linus Walleij15af8532007-01-07 12:45:20 +000017642007-01-07 Orson Teodoro <orsonteodoro@yahoo.com>
1765
1766 * src/ptp.h: Encoding profile.
1767 * src/ptp.c: Dito.
1768
Linus Walleij58b62792007-01-07 12:38:59 +000017692006-01-07 Linus Walleij <triad@df.lth.se>
1770
1771 * src/libusb-glue.c: (re)introduce de-halting of endpoints
1772 as this is needed by VMWare emulation. Must check whether
Linus Walleijb97379b2007-01-07 12:42:20 +00001773 this causes problems for other archs! Problem was reported
1774 by Orson Teodoro under i686 Gentoo, with a suggested patch.
Linus Walleij58b62792007-01-07 12:38:59 +00001775
Linus Walleija0323272007-01-07 12:21:30 +000017762006-01-07 Marcus Meissner <meissner@suse.de>
1777
1778 * src/ptp.c: sync to upstream libgphoto2.
1779 * src/ptp.h: dito.
1780 * src/ptp-pack.c: dito.
1781 * libusb-glue.c: fixes to move low-level functions
1782 out of ptp.c and into this libmtp-specific portion.
1783 libgphoto2 has been similarly altered to use a usb.c
1784 file for the low-level stuff. (This was a long needed
1785 split anyway.)
1786
Linus Walleij58b62792007-01-07 12:38:59 +000017872007-01-03 Richard Low <richard@wentnet.com>
Richard Low68f45882007-01-03 10:08:31 +00001788
1789 * src/libusb-glue.c: fix zero write bug
Richard Lowef05b892007-01-03 21:18:56 +00001790 * src/ptp.c: ditto
Richard Low68f45882007-01-03 10:08:31 +00001791
Linus Walleij99ed83c2007-01-02 18:46:02 +000017922007-01-02 Linus Walleij <triad@df.lth.se>
1793
1794 * src/libusb-glue.c: fix up comments, remove things
1795 refering to stuff we don't have.
1796
Richard Lowb89ea942007-01-02 11:47:19 +000017972007-01-02 Richard Low <richard@wentnet.com>
1798
1799 * src/libmtp.c: another try at split headers/packet sizes
1800 * src/ptp.c: ditto
1801 * src/libusb-glue.c: ditto
1802
Linus Walleijc70a6df2007-01-01 22:19:08 +000018032007-01-01 Linus Walleij <triad@df.lth.se>
1804
1805 * src/libmtp.c: move default setting of split headers
1806 off to ptp.c open session.
1807 * src/ptp.c: dito.
1808
Richard Low021421e2007-01-01 18:08:57 +000018092007-01-01 Richard Low <richard@wentnet.com>
1810
1811 * src/libmtp.c: split headers/packet size fix
1812 * src/ptp.c: ditto
1813 * src/ptp.h: ditto
1814 * src/libusb-glue.c: ditto
1815
Linus Walleijfa2d1d12007-01-01 17:08:13 +000018162007-01-01 Orson Teodoro <orsonteodoro@yahoo.com>
1817
1818 * src/ptp.h: changed some WMDRMND def codes to AAVT def codes.
1819 addition of AAVT error codes.
1820 * src/ptp.c: changes to reflect modifications done in ptp.h
1821
Linus Walleija5ab8c42006-12-31 09:25:36 +000018222006-12-31 Linus Walleij <triad@df.lth.se>
1823
1824 * configure.ac: bump to 0.1.2.
1825 * src/Makefile.am: bump interface revision. (Compatible.)
1826 * RELEASE 0.1.2.
1827
Linus Walleij02ee8802006-12-30 17:27:58 +000018282006-12-30 Linus Walleij <triad@df.lth.se>
1829
1830 * examples/pathutils.c: reflect new filetypes.
1831 * examples/sendtr.c: dito.
1832
Linus Walleij5fb47132006-12-30 15:35:48 +000018332006-12-30 Orson Teodoro <orsonteodoro@yahoo.com>
1834
1835 * src/ptp.h: added WMDRMPD, WMDRMND, WMPPD, WPDWCN extension
1836 codes. added more format object codes flac, m4a, 3gp, aac,
1837 xml, xls, ppt, etc. 0x9101-0x910B identfiers are infixed
1838 with WMDRMPD. Added more object properties codes (0xDCD3-0xDD72).
1839 Added more device property codes.
1840 Changed PTP_OFC_MTP_WindowsImageFormat to 0xb881 reflect spec.
1841 * src/ptp.c: added changes to reflect new extensions, object
1842 codes, device property codes.
1843 * src/libmtp.c: modified mp4 to reflect it is a container format
1844 not a codec. Added more descriptions in init_filemap(). mp4
1845 container format is ambiguous in
1846 LIBMTP_Send_File_From_File_Descriptor(). Audio? video? both?.
1847 mp4 searched in video by default. Added comments about this.
1848 Added support for the new format object types.
1849 * src/libmtp.h.in: added constants to reflect changes to
1850 init_filemap().
1851
Richard Lowedd61832006-12-30 12:38:18 +000018522006-12-30 Richard Low <richard@wentnet.com>
1853
1854 * src/libusb-glue.c: fixed bug in debug printing
1855
Richard Lowa6c924c2006-12-29 17:44:28 +000018562006-12-29 Richard Low <richard@wentnet.com>
1857
1858 * src/libmtp.c: Made abstract list creation to be more
1859 WMP like
1860 * src/libusb-glue.c: added Philips GoGear SA9200
Richard Lowa679b1c2006-12-29 20:08:14 +00001861 * src/ptp-pack.c: fixed packing bug in ptp_pack_OI
Richard Lowa6c924c2006-12-29 17:44:28 +00001862
Linus Walleij784ac3f2006-12-29 10:36:51 +000018632006-12-29 Marcus Meissner <meissner@suse.de>
1864
1865 * src/ptp.h: API changes for libgphoto2 to use the file
1866 retrieveal functions.
1867 * src/ptp.c: dito.
1868 * src/libusb-glue.c: changes in libmtp reflecting the new
1869 API for libgphoto2.
1870
Linus Walleij8609af32006-12-28 21:25:17 +000018712006-12-28 Linus Walleij <triad@df.lth.se>
1872
Linus Walleije2e21182006-12-28 22:36:59 +00001873 * configure.ac: making older autotools happy. Bump to 0.1.1.
Linus Walleij3a3d24d2006-12-28 22:35:58 +00001874 * src/Makefile.am: bump interface for release, also autotools.
1875 * RELEASE libmtp 0.1.1.
Linus Walleij8609af32006-12-28 21:25:17 +00001876
Linus Walleijd6735f72006-12-19 13:38:29 +000018772006-12-19 Matthew Wilcox <matthew@wil.cx>
1878
1879 * src/ptp.c: fix a (serious) short file bug.
1880
Richard Lowaf20b5d2006-12-17 18:00:59 +000018812006-12-17 Richard Low <richard@wentnet.com>
1882
1883 * src/libmtp.c: don't bail out on failures when setting
1884 metadata.
1885
Linus Walleij037a1252006-12-16 20:36:52 +000018862006-12-16 Linus Walleij <triad@df.lth.se>
1887
1888 * src/ptp.c: sync to upstream.
1889 * src/ptp.h: dito.
1890 * src/ptp-pack.c: dito.
1891
Linus Walleijf8491912006-12-15 10:23:30 +000018922006-12-15 Linus Walleij <triad@df.lth.se>
1893
1894 * src/libmtp.h.in: make the format function take a storage as
1895 parameter. Add comments to device storage.
1896 * src/libmtp.c: dito, fix up some code and docs.
1897 * examples/format.c: make the format command comply with
1898 the new API.
1899
Linus Walleije1ac07e2006-12-14 19:38:59 +000019002006-12-14 Linus Walleij <triad@df.lth.se>
1901
1902 * src/libmtp.c: make get_first_storage_freespace() always query
1903 the first storage when the space is requested. And some other
1904 janitorial stuff.
1905
Linus Walleijb01d18b2006-12-13 12:49:15 +000019062006-12-13 Linus Walleij <triad@df.lth.se>
1907
1908 * src/libusb-glue.c: one more device.
1909 * examples/detect.c: compilation warnings fixed.
1910
rreardon3d583062006-12-13 10:10:27 +000019112006-12-13 Robert Reardon <rreardon@monkshatch.vispa.com>
1912
1913 * src/ptp.c: add 0xD901 flag as BuyNow property of objects.
1914 * src/ptp.h: ditto.
1915
Linus Walleijcd849362006-12-13 12:37:58 +000019162006-12-12 Daniel Williams <danielw@iinet.net.au>
Linus Walleij9e1b0812006-12-12 19:22:02 +00001917
1918 * src/libmtp.h.in: revamped storage API.
1919 * src/libmtp.c: dito.
1920 * examples/detect.c: dito.
1921
rreardon73d02c92006-12-12 16:45:30 +000019222006-12-12 Robert Reardon <rreardon@monkshatch.vispa.com>
rreardond2ddb632006-12-12 12:13:21 +00001923
1924 * src/libmtp.c: Send_Representative_Sample() updated to
1925 set image height and width, or audio duration and size.
1926
Linus Walleijd0f67702006-12-07 09:56:46 +000019272006-12-07 Linus Walleij <triad@df.lth.se>
1928
Linus Walleija05b9802006-12-08 08:50:30 +00001929 * src/libmtp.h.in: support firmware object type. (Dangerous.)
1930 * src/libmtp.c: dito.
1931
19322006-12-07 Linus Walleij <triad@df.lth.se>
1933
Linus Walleijd0f67702006-12-07 09:56:46 +00001934 * src/libmtp.c: default text folder detection (used in Samsung
1935 Yepp T9) also add a few "My Foo" folder strings, remove the
1936 "remaining directories" kludge.
1937 * src/libmtp.h.in: default text folder.
1938
Linus Walleijf1b02f22006-12-06 09:03:23 +000019392006-12-06 Linus Walleij <triad@df.lth.se>
1940
1941 * src/libmtp.h.in: extend the respresentative sample API a bit.
1942 * src/libmtp.c: dito.
1943 * examples/albumart.c: free memory after use.
1944 * examples/thumb.c: dito.
Linus Walleij8a08c212006-12-06 20:12:30 +00001945 * RELEASE this as libmtp 0.1.0!
Linus Walleijf1b02f22006-12-06 09:03:23 +00001946
Linus Walleijfdef4ae2006-12-05 16:15:51 +000019472006-12-04 Linus Walleij <triad@df.lth.se>
1948
1949 * src/ptp.c: enable split headers on sending object lists again.
1950
19512006-12-04 Robert Reardon <rreardon@monkshatch.vispa.com>
rreardond11473f2006-12-05 10:18:46 +00001952
1953 * src/libmtp.c: abstract Send_Representative_Sample() so
1954 it can send samples for any format that supports it
1955 * src/libmtp.h.in: same as above
1956 * examples/albumart.c: altered to use new abstract function above
1957 * example/thumb.c: sample program to upload thumbnails
1958 * example/Makefile.am: add sample thumbnail program
1959
Linus Walleijbdfaac22006-12-03 22:32:19 +000019602006-12-03 Linus Walleij <triad@df.lth.se>
1961
1962 * src/libmtp.c: check space on disk before sending
1963 tracks or files.
Linus Walleij7e3f2762006-12-03 22:52:05 +00001964 * src/libmtp.h.in: refactor LIBMTP_Send_Album_Art()
1965 into LIBMTP_Send_Representative_Sample().
1966 * src/libmtp.c: dito.
1967 * examples/albumart.c: dito.
Linus Walleijbdfaac22006-12-03 22:32:19 +00001968
Linus Walleijfa3fbe32006-12-02 20:47:32 +000019692006-12-02 Marcus Meissner <meissner@suse.de>
1970
1971 * examples/Makefile.am: make sure symlinks really end
1972 up in the correct dir.
1973
Linus Walleij6eab3b32006-11-30 22:58:21 +000019742006-11-30 Linus Walleij <triad@df.lth.se>
1975
1976 * src/ptp.c: make Matthews patch thread-safe and fix it
1977 so it will handle more than one surplus packet.
1978 * src/ptp.h: dito.
1979
Richard Lowab0d22d2006-11-30 22:17:49 +000019802006-11-30 Richard Low <richard@wentent.com>
1981
1982 * src/libmtp.c: memset PTPObjectInfo structs to 0
1983
Linus Walleij4bf38dd2006-11-30 21:27:29 +000019842006-11-30 Matthew Wilcox <matthew@wil.cx>
1985
1986 * src/ptp.c: on some devices, surplus packet data is
1987 sometimes returned during read, i.e. a header of the
1988 next package is typically attacked to the incoming
1989 data, as if someone was sending several packets at
1990 once. If this happens we buffer the surplus packet.
Linus Walleijef1e6352006-11-30 22:07:16 +00001991 * src/libusb-glue.c: revert my own mistakes by making
1992 them Windows-only.
Linus Walleij4bf38dd2006-11-30 21:27:29 +00001993
Linus Walleij9901e222006-11-30 12:28:19 +000019942006-11-30 Linus Walleij <triad@df.lth.se>
1995
Linus Walleij2978f1a2006-11-30 14:00:26 +00001996 * configure.ac: this *is* gonna be libmtp 0.1.0!
1997 * src/Makefile.am: age interface to 4-0-0 to indicate that
1998 intefaces have been removed.
Linus Walleij9901e222006-11-30 12:28:19 +00001999 * src/libmtp.h.in: removed external object interface.
2000 * src/libmtp.c: dito. Made all object manipulation functions
2001 static.
2002
Richard Lowc7d48d22006-11-29 18:24:55 +000020032006-11-29 Richard Low <richard@wentnet.com>
2004
2005 * src/libusb-glue.c: added new devices
2006
Linus Walleij7beba572006-11-29 08:56:12 +000020072006-11-29 Linus Walleij <triad@df.lth.se>
2008
2009 * src/libusb-glue.c: remove some pointless #include <>
2010 clutter, call usb_set_configuration() as needed by
2011 Windows.
2012 * src/libmtp.c: various fixups to enable use of Windows
2013 <io.h> include file.
2014 * README.windows.txt: added a quick porting guide for
2015 MSVC by Farooq Zaman.
2016
Linus Walleijcf42f452006-11-28 08:32:49 +000020172006-11-28 Linus Walleij <triad@df.lth.se>
2018
2019 * src/libmtp.h.in: removed filetype mapping API. We can handle
2020 everything inside of libmtp now so no need for this.
2021 * src/libmtp.c: dito.
2022
Linus Walleij72e9c2b2006-11-28 08:14:00 +000020232006-11-27 Linus Walleij <triad@df.lth.se>
Linus Walleij64ad9ae2006-11-27 11:23:26 +00002024
2025 * examples/files.c: unsigned int sized printout.
2026 * examples/tracks.c: sort of the same.
Linus Walleij72e9c2b2006-11-28 08:14:00 +00002027 * Makefile.am: HAL style map output by default.
Linus Walleij64ad9ae2006-11-27 11:23:26 +00002028
Richard Low6c0a6ce2006-11-26 10:42:08 +000020292006-11-26 Richard Low <richard@wentnet.com>
Linus Walleijb7426d12006-11-25 23:19:11 +00002030
Richard Low6c0a6ce2006-11-26 10:42:08 +00002031 * src/libmtp.c: object handles for proplists
2032 * src/ptp-pack.c: ditto
2033 * src/ptp.c: ditto
2034 * src/ptp.h: ditto
2035
Linus Walleijf73de152006-11-25 21:44:44 +000020362006-11-25 Marcus Meissner <marcus@jet.franken.de>
2037
2038 * examples/hotplug.c: adding HAL style XML output for
2039 the devices.
2040 * examples/Makefile.am: fixing a bug in the automake
2041 file (pathutils.h missing!)
2042 * Makefile.am: fix the problem with re-making sources
2043 (you had to run ./autogen.sh before!)
2044
Linus Walleijfe677ac2006-11-23 13:35:00 +000020452006-11-23 Linus Walleij <triad@df.lth.se>
2046
2047 * src/libusb-glue.h: add a new bug flag for devices that
2048 have broken PTP_OC_MTP_GetObjPropList implementations.
2049 * src/libusb-glue.c: state that all iRivers have this problem.
2050 * src/libmtp.c: disable the user of ptp_mtp_getobjectproplist()
2051 for these devices.
2052
20532006-11-21 Robert Reardon <rreardon@monkshatch.vispa.com>
rreardonbddc0f82006-11-21 13:44:42 +00002054
2055 * src/libmtp.c: set handle ids for new objects to 0 when
2056 creating new albums and playlists.
2057
Linus Walleij2f5ed5c2006-11-21 07:40:29 +000020582006-11-21 Linus Walleij <triad@df.lth.se>
2059
2060 * src/libmtp.c: enabled enhanced mode for metadata retrieval
2061 by default.
Linus Walleij9be685b2006-11-21 09:44:53 +00002062 * src/libmtp.c: fixed the problem with sending files using
2063 enhanced commands.
Linus Walleij2f5ed5c2006-11-21 07:40:29 +00002064
Linus Walleij277cd532006-11-20 14:57:46 +000020652006-11-20 Linus Walleij <triad@df.lth.se>
2066
2067 * src/ptp.h: sync to upstream libgphoto2
2068 * src/ptp.c: dito.
2069 * src/ptp-pack.c: dito.
Linus Walleij8ae78bb2006-11-20 21:45:52 +00002070 * src/libmtp.c: check for zerolength files/tracks.
Linus Walleij277cd532006-11-20 14:57:46 +00002071
20722006-11-20 Andy Kelk <andy@mopoke.co.uk>
mopoke31364442006-11-20 04:53:04 +00002073
2074 * src/libmtp.h.in: add "parent_id" property to LIBMTP_track_struct.
2075 * src/libmtp.c: get "parent_id" property when reading tracks.
mopoke33744bb2006-11-20 04:55:32 +00002076 * examples/emptyfolders.c: new example program for pruning empty
2077 folders. (does a dummy run by default).
mopoke31364442006-11-20 04:53:04 +00002078
Linus Walleij277cd532006-11-20 14:57:46 +000020792006-11-19 Robert Reardon <rreardon@monkshatch.vispa.com>
rreardon508705f2006-11-19 21:27:22 +00002080
rreardonbbb4e562006-11-19 22:16:11 +00002081 * src/libmtp.c: use enhanced MTP commands to create playlists and
2082 send files
rreardon508705f2006-11-19 21:27:22 +00002083 * examples/newplaylist.c: demo program for creating new playlists
rreardona7220ad2006-11-19 21:36:46 +00002084 * examples/Makefile.am: add demo newplaylists program
rreardon508705f2006-11-19 21:27:22 +00002085
Linus Walleijcd849362006-12-13 12:37:58 +000020862006-11-19 Daniel Williams <danielw@iinet.net.au>
Linus Walleij48a2d462006-11-19 14:07:59 +00002087
2088 * src/libusb-glue.c: fix error on reconnect.
2089
Linus Walleij277cd532006-11-20 14:57:46 +000020902006-11-18 Richard Low <richard@wentnet.com>
Richard Lowef925022006-11-18 09:06:10 +00002091
2092 * src/ptp.c: tidy up ptp_usb_getdata
2093
Linus Walleij277cd532006-11-20 14:57:46 +000020942006-11-17 Richard Low <richard@wentnet.com>
Richard Low91354812006-11-17 22:44:05 +00002095
2096 * src/libmtp.c: fixed parent handle for uploaded tracks
2097
Linus Walleij277cd532006-11-20 14:57:46 +000020982006-11-17 Robert Reardon <rreardon@monkshatch.vispa.com>
Linus Walleije6605692006-11-17 09:18:52 +00002099
2100 * src/libmtp.c: fixed up album art using enhanced commands.
2101
Linus Walleij277cd532006-11-20 14:57:46 +000021022006-11-16 Richard Low <richard@wentnet.com>
Richard Low8d82d2f2006-11-16 20:37:43 +00002103
2104 * src/libmtp.c: a crude implementation of ptp_mtp_getobjectproplist
2105 * src/ptp.c: ditto
2106 * src/ptp.h: ditto
2107 * src/ptp-pack.c: ditto
2108
Linus Walleij277cd532006-11-20 14:57:46 +000021092006-11-16 Robert Reardon <rreardon@monkshatch.vispa.com>
Linus Walleij9e68bc12006-11-16 15:59:18 +00002110
Linus Walleijccf28ce2006-11-16 16:06:38 +00002111 * src/libmtp.c: use enhanced MTP commands to create albums and
2112 add detection of the default album folder.
2113 * src/libmtp.h.in: add a holder for album default folder.
Linus Walleij9e68bc12006-11-16 15:59:18 +00002114
Linus Walleij277cd532006-11-20 14:57:46 +000021152006-11-15 Richard Low <richard@wentnet.com>
Richard Low8b42ca32006-11-15 08:52:17 +00002116
2117 * src/ptp-pack.c: set string buffer to correct size.
2118
Linus Walleij277cd532006-11-20 14:57:46 +000021192006-11-14 Richard Low <richard@wentnet.com>
Richard Lowe1ab2642006-11-14 08:34:49 +00002120
2121 * examples/tracks.c: really use undeprecated API entry.
2122
Linus Walleij277cd532006-11-20 14:57:46 +000021232006-11-13 Richard Low <richard@wentnet.com>, Linus Walleij <triad@df.lth.se>
Linus Walleij3fcfea52006-11-13 07:07:36 +00002124
2125 * src/libmtp.h.in: add LIBMTP_Get_Tracklisting_With_Callback()
Richard Lowdc0b6c72006-11-13 09:22:23 +00002126 and LIBMTP_Get_Filelisting_With_Callback()
Linus Walleij3fcfea52006-11-13 07:07:36 +00002127 * src/libmtp.c: dito, deprecate LIBMTP_Get_Tracklisting()
Richard Lowdc0b6c72006-11-13 09:22:23 +00002128 and LIBMTP_Get_Filelisting()
Linus Walleij3fcfea52006-11-13 07:07:36 +00002129 * examples/tracks.c: use undeprecated API entry.
Richard Lowdc0b6c72006-11-13 09:22:23 +00002130 * examples/connect.c: ditto.
2131 * examples/detect.c: ditto.
2132 * examples/files.c: ditto.
Linus Walleij3fcfea52006-11-13 07:07:36 +00002133 * src/ptp.c: working on getting object prop lists.
2134 * src/ptp.h: dito.
2135
Linus Walleij277cd532006-11-20 14:57:46 +000021362006-11-12 Richard Low <richard@wentnet.com>
Richard Lowe1f06922006-11-12 16:38:39 +00002137
2138 * src/libusb-glue.c: added Zen Vision W to devices
2139
Linus Walleij277cd532006-11-20 14:57:46 +000021402006-11-07 Richard Low <richard@wentnet.com>
Richard Low4c60f6e2006-11-07 20:36:42 +00002141
2142 * src/libmtp.c: added checks for supported properties
2143
Linus Walleij277cd532006-11-20 14:57:46 +000021442006-11-06 Richard Low <richard@wentnet.com>
Richard Low64fa3992006-11-06 21:24:11 +00002145
2146 * src/libmtp.c: added a check for NULL filenames in
2147 LIBMTP_Get_Folder_List.
2148
Linus Walleij99310d42006-11-01 08:29:39 +000021492006-11-01 Linus Walleij <triad@df.lth.se>
2150
2151 * src/libmtp.h.in: set/get uint8 to/from objects
2152 * src/libmtp.c: send object property list.
2153 * src/ptp.c: dito.
2154 * src/ptp.h: dito.
2155 * src/ptp-pack.c: dito.
2156
mopoke90be30e2006-10-30 08:47:41 +000021572006-10-29 Andy Kelk <andy@mopoke.co.uk>
2158
2159 * examples/albumart.c: simple tool for adding album art.
2160 * src/libmtp.c: graceful handling of players not supporting
2161 abstract album objects.
2162
Linus Walleij0c33ec02006-10-27 10:15:40 +000021632006-10-27 Linus Walleij <triad@df.lth.se>
2164
2165 * src/Makefile.am: bump library interface to reflect the new
2166 album methods.
2167 * configure.ac: bump to 0.0.22 for the next release.
2168
21692006-10-27 Andy Kelk <andy@mopoke.co.uk>
2170
2171 * src/libmtp.c: add support form abstract audio/video albums.
2172 * src/libmtp.h.in: dito.
2173
Linus Walleij7347d0f2006-10-23 07:23:39 +000021742006-10-23 Linus Walleij <triad@df.lth.se>
2175
2176 * src/libmtp.c: retire opcode rendering (moved to ptp.c)
2177 * src/ptp.c: sync to upstream.
2178 * src/ptp.h: dito.
2179 * src/ptp-pack.c: dito.
2180
Linus Walleij9efe75f2006-10-20 09:09:45 +000021812006-10-20 Linus Walleij <triad@df.lth.se>
2182
2183 * Release 0.0.21 to get all the new device support out.
2184
Linus Walleij501ba4d2006-10-16 06:17:04 +000021852006-10-16 Linus Walleij <triad@df.lth.se>
2186
2187 * configure.ac: bump to 0.0.21.
2188 * src/libusb-glue.c: add code to unload a kernel driver for
2189 the primary interface if it is already in use under Linux.
2190 * src/libusb-glue.h: add a device flag to make this possible.
2191
Linus Walleij37253292006-10-11 08:38:14 +000021922006-10-11 Linus Walleij <triad@df.lth.se>
2193
2194 * examples/delfile.c: patch from Chris Debenham
2195 straingtening out the command-line interface a bit
2196 more.
2197
Linus Walleij43ff8fc2006-10-10 11:16:53 +000021982006-10-10 Linus Walleij <triad@df.lth.se>
2199
Linus Walleij37253292006-10-11 08:38:14 +00002200 * examples/delfile.c: patch from Chris Debenham to make
2201 this command take an optional filename as parameter
2202 instead of file ID.
Linus Walleij43ff8fc2006-10-10 11:16:53 +00002203
Linus Walleij955e6ba2006-09-26 16:55:10 +000022042006-09-26 Linus Walleij <triad@df.lth.se>
2205
2206 * libmtp.pc.in: require libusb instead of just linking it.
2207 * configure.ac: bump release to 0.0.20 and release.
2208
Linus Walleijb1318d12006-09-25 14:59:26 +000022092006-09-25 Linus Walleij <triad@df.lth.se>
2210
2211 * examples/evolution-sync.sh: example script to illustrate
2212 to to transfer calendar, task and contact information
2213 to a device supporting this.
2214
Linus Walleij4ef39e62006-09-19 14:11:52 +000022152006-09-19 Linus Walleij <triad@df.lth.se>
2216
2217 * src/libmtp.h.in: fixed attribute IDs to be 16bit.
2218 * src/libmtp.c: dito.
2219 * examples/sendfile.c: support vcard3.
2220
Linus Walleijf248fdd2006-09-16 20:11:40 +000022212006-09-16 Linus Walleij <triad@df.lth.se>
2222
2223 * configure.ac: bump to 0.0.19 and release. There are some
2224 new devices as well.
Linus Walleij5b5c7852006-09-16 20:23:37 +00002225 * src/unicode.c: retire unused code.
Linus Walleijf248fdd2006-09-16 20:11:40 +00002226
Linus Walleijb8bfcb22006-09-13 12:14:28 +000022272006-09-13 Linus Walleij <triad@df.lth.se>
2228
2229 * examples/format.c: formatting test program.
2230 * examples.Makefile.am: added format.
2231
Linus Walleij13374a42006-09-13 11:55:30 +000022322006-09-13 Andy Kelk <andy@mopoke.co.uk>
2233
2234 * src/libmtp.h.in: added interface to format storage.
2235 * src/libmtp.c: dito.
2236 * src/ptp.c: dito.
2237 * src/ptp.h: dito.
2238
Linus Walleijd31e6192006-09-12 07:55:27 +000022392006-09-12 Linus Walleij <triad@df.lth.se>
2240
2241 * configure.ac: bump release. Released 0.0.18 yesterday.
2242 * src/libmtp.c: do not try to read battery max level unless
2243 the device supports it. (Bug occurred on Toshiba Gigabeat
2244 P10.)
2245
Linus Walleijd5d51c82006-09-11 06:57:50 +000022462006-09-11 Linus Walleij <triad@df.lth.se>
2247
2248 * src/libusb-glue.c: messed around a bit with device descriptor
2249 detection so as to bring closer to libgphoto2 detection algorithm.
2250 I've seen things that might be false positives, possibly USB mass
2251 storage devices with additional MSFT descriptors to indicate they
2252 have Janus DRM.
2253 * src/libmtp.c: use UCS-2-INTERNAL if we're not on glibc. glibc
2254 knows that UCS-2 is in machine endianness but Darwin and *BSD does
2255 not. Detect C library and switch accordingly.
2256 * src/unicode.c: retire old unicode code only keep things we cannot
2257 live without. Remove the own internal UCS-2 conversion engine and
2258 the internal iconv() engine and use the one already available in
2259 PTPParams.
2260 * src/unicode.h: dito.
2261
Linus Walleij0558ac52006-09-07 06:55:03 +000022622006-09-07 Linus Walleij <triad@df.lth.se>
2263
2264 * src/libusb-glue.h: added device flags so we can make
2265 the code behave differently on certain devices.
2266 * src/libusb-glue.c: dito, plus removed some debug prints.
2267 * src/libmtp.c: docs.
2268 * src/libmtp.h.in: added device_flags to device list struct.
2269 * src/Makefile.am: bumped to compatible library interface.
2270 * configure.ac: bump version to 0.0.18 (0.0.17 released
2271 yesterday).
2272
Richard Low6ec2cc12006-09-06 16:59:16 +000022732006-09-06 Richard Low <richard@wentnet.com>
2274
2275 * src/libusb-glue.c: changed packet sizes to improve
2276 transfer speeds.
2277 * src/libmtp.c: changed packet sizes to improve transfer
2278 transfer speeds. Also stopped extra ptp_getobjectinfo
2279 calls when getting directories on connect.
2280
Linus Walleij7f0c72e2006-09-06 13:01:58 +000022812006-09-06 Linus Walleij <triad@df.lth.se>
2282
2283 * src/libusb-glue.c: fixed some endpoint size detection
2284 and sending special file sizes stuff. Real hairy bug...
2285 Also messed around a bit with the callbacks.
2286 * src/libmtp.c: changes for callback size detection.
2287
Linus Walleija9310fa2006-09-04 06:47:42 +000022882006-09-04 Linus Walleij <triad@df.lth.se>
2289
2290 * src/libmtp.c: bug in streaming code, use defined USB_BULK_HDR_SIZE
2291 instead of magic values.
2292
Linus Walleijd7aa5b22006-09-02 11:52:31 +000022932006-09-02 Linus Walleij <triad@df.lth.se>
2294
Linus Walleijcd3eb3d2006-09-02 21:33:22 +00002295 * src/libmtp.c: add some code to have
2296 LIBMTP_Send_File_From_File_Descriptor() accept a stream
2297 if size is set to (uint64_t) -1, plus documentation fixes.
2298 I don't think the streaming code will work but whoever want
2299 to experiment with it has a place to start.
2300 * examples/refactortest.c: removed. Who uses this?
Linus Walleijd7aa5b22006-09-02 11:52:31 +00002301
Linus Walleijda9500d2006-08-30 13:17:06 +000023022006-08-30 Linus Walleij <triad@df.lth.se>
2303
2304 * configure.ac: version bump.
2305 * src/libmtp.c: more debug prints.
2306 * src/libusb-glue.c: new iRiver device called Clix. By
2307 the way I released libmtp 0.0.16 yesterday.
2308
Linus Walleija823a702006-08-27 21:27:46 +000023092006-08-28 Linus Walleij <triad@df.lth.se>
2310
2311 * configure.ac: version bump.
2312 * src/ptp-pack.c: upstream has committed my patch giving full
2313 unicode support in libgphoto2 ptp2 camlib. No need for
2314 any more ugly workarounds, plus we now have full unicode
2315 filenames!
2316 * src/ptp.c: dito.
2317 * src/ptp.h: dito.
2318 * src/libmtp.c: revamp to use the new unicode support in
2319 libgphoto2.
2320 * src/unicode.c: remove unused functionality.
2321 * src/unicode.h: dito.
2322
Linus Walleijee73ef22006-08-27 19:56:00 +000023232006-08-27 Linus Walleij <triad@df.lth.se>
2324
2325 * configure.ac: version bump. Release all these fixes
2326 as 0.0.15.
2327 * src/libusb-glue.c: fixed sucky errors. Added callback
2328 code when reading files.
2329 * src/libusb-glue.h: const correctness.
2330 * src/libmtp.h.in: finally fixup the type on the callbacks.
2331 * src/libmtp.c: more accurate sending callbacks. Callbacks
2332 when getting files also, working correctly. Typeing of
2333 callbacks now OK.
2334 * examples/getfile.c: some display bar cosmetic fixup.
2335 * TODO: lots of the things todo are now done.
2336
Linus Walleijd214b9b2006-08-26 22:08:37 +000023372006-08-26 Linus Walleij <triad@df.lth.se>
2338
2339 * configure.ac: version bump.
2340 * src/libmtp.c: fix bug and reinstate callbacks.
2341 * src/libusb-glue.h: dito.
2342 * src/libusb-glue.c: dito.
2343
Linus Walleije7f44be2006-08-25 19:32:29 +000023442006-08-25 Linus Walleij <triad@df.lth.se>
2345
2346 * src/libmtp.c: use the new file descriptor sender function.
2347 Going to release this as 0.0.13.
2348 * src/ptp.c: upstream accepted patches synced in.
2349 * src/ptp.h: dito.
2350
Linus Walleijeab650b2006-08-21 23:26:37 +000023512006-08-22 Linus Walleij <triad@df.lth.se>
2352
Linus Walleij80d134a2006-08-22 21:41:37 +00002353 * src/libusb-glue.c: found a real nasty endpoint bug,
2354 code from libgphoto2 was assuming max packet size of
2355 512 bytes while it is 64 when a USB 2.0 device is
2356 plugged into an UHCI hub.
2357
23582006-08-22 Linus Walleij <triad@df.lth.se>
2359
Linus Walleijeab650b2006-08-21 23:26:37 +00002360 * configure.ac: bump to 0.0.13, also released 0.0.12 now.
2361
Linus Walleij924236a2006-08-20 22:17:58 +000023622006-08-21 Linus Walleij <triad@df.lth.se>
2363
2364 * src/libmtp.c: fixup mmap() usage and add madvise()
Linus Walleij96c62432006-08-21 10:04:02 +00002365 as result of experiments by Gavin McCullagh. Upstream
2366 accept patch to get files directly to file descriptor.
Linus Walleij3ec86312006-08-21 13:25:24 +00002367 Move iconv() converters into device struct for thread
2368 safety.
Linus Walleij96c62432006-08-21 10:04:02 +00002369 * src/ptp.c: sync to upstream which merges patch to get
2370 file directly to file descriptor.
2371 * src/ptp.h: dito.
Linus Walleij3ec86312006-08-21 13:25:24 +00002372 * src/unicode.c: move iconv() converters into the device
2373 struct for thread safety.
2374 * src/unicode.h: dito.
Linus Walleij924236a2006-08-20 22:17:58 +00002375
Linus Walleij30658792006-08-19 22:18:55 +000023762006-08-20 Linus Walleij <triad@df.lth.se>
2377
2378 * src/libmtp.h.in: set friendly name and sync partner,
2379 rename ownername to friendlyname.
2380 * src/libmtp.c: dito.
2381 * examples/detect.c: reflect changes.
2382 * src/Makefile.am: interface is incompatible so age it.
2383
Linus Walleijfae27482006-08-19 20:13:25 +000023842006-08-19 Linus Walleij <triad@df.lth.se>
2385
2386 * src/libmtp.h.in: add function to get syncronization
2387 partner for the device.
2388 * src/libmtp.c: dito.
2389 * examples/detect.c: use that function.
2390 * src/Makefile.am: backward-compatible interface bump.
2391
Linus Walleij16571dc2006-08-17 20:27:46 +000023922006-08-17 Linus Walleij <triad@df.lth.se>
2393
2394 * configure.ac: bump to 0.0.12 and require iconv.h.
2395
23962006-08-16 Linus Walleij <triad@df.lth.se>
2397
2398 * src/unicode.c: remove bigendian weirdness and switch
2399 to using iconv() instead.
2400 * src/unicode.h: dito.
2401 * src/libmtp.c: reflect changes.
2402
Linus Walleij3e188f12006-08-09 20:46:05 +000024032006-08-09 Linus Walleij <triad@df.lth.se>
2404
2405 * Release libmtp 0.0.11.
2406
Linus Walleij2eb884b2006-08-04 19:17:36 +000024072006-08-04 Linus Walleij <triad@df.lth.se>
2408
2409 * src/libmtp.c: patch from Dan Aloni to make sendfile
2410 use mmap and avoid memory drainage.
Linus Walleij9eb3d312006-08-04 19:25:59 +00002411 * src/libusb-glue.c: patch from Andy Kelk to avoid
2412 exit():ing when the interface cannot be claimed.
Linus Walleij232943d2006-08-04 19:26:53 +00002413 * configure.ac: version bump.
Linus Walleij2eb884b2006-08-04 19:17:36 +00002414
Linus Walleijaa4b0752006-07-26 22:21:04 +000024152006-07-27 Linus Walleij <triad@df.lth.se>
2416
2417 * Release libmtp 0.0.10.
2418
Linus Walleij17b55ea2006-07-26 13:54:00 +000024192006-07-26 Linus Walleij <triad@df.lth.se>
2420
2421 * src/libusb-glue.c: new SanDisk devices.
Linus Walleij00cf0642006-07-26 20:40:59 +00002422 * src/libmtp.c: only set metdata properties supported by
2423 the device, duh.
Linus Walleijaa4b0752006-07-26 22:21:04 +00002424 * src/ptp.c: sync to upstream.
2425 * src/ptp.h: sync to upstream.
2426 * configure.ac: bump to 0.0.10.
Linus Walleij17b55ea2006-07-26 13:54:00 +00002427
Linus Walleijc187cb92006-06-22 17:58:13 +000024282006-06-22 Linus Walleij <triad@df.lth.se>
2429
2430 * Release libmtp 0.0.9.
2431
Linus Walleij8ab54262006-06-21 07:12:28 +000024322006-06-21 Linus Walleij <triad@df.lth.se>
2433
2434 * src/libmtp.h.in: added function to retrieve supported
2435 filetypes.
2436 * src/libmtp.c: ditto.
2437 * examples/detect.c: use that function.
2438
Linus Walleijcf223e62006-06-19 09:31:53 +000024392006-06-19 Linus Walleij <triad@df.lth.se>
2440
2441 * src/unicode.c: support all endianness, detect
2442 byte-order-mark
2443 * src/unicode.h: ditto.
2444 * src/libmtp.c: ditto.
2445 * examples/detect.c: use proper tempfile function.
2446 * src/libmtp.h.in: add some more track properties.
2447 * src/libmtp.c: ditto.
2448 * examples/tracks.c: ditto.
2449
Linus Walleij2e4b5f92006-06-16 14:00:49 +000024502006-06-16 Linus Walleij <triad@df.lth.se>
2451
2452 * src/libmtp.h.in: new interfaces for single metadata post
2453 retrieveal.
2454 * src/libmtp.c: ditto.
2455 * examples/playlists.c: display track info using the new
2456 individual track metadata retrieveal method.
2457 * examples/getplaylist.c: ditto.
2458
Linus Walleij05ccbe72006-06-13 07:46:58 +000024592006-06-13 Linus Walleij <triad@df.lth.se>
2460
2461 * src/libmtp.h.in: added default folders to device struct.
Linus Walleij545c7792006-06-13 15:22:30 +00002462 Add some new function prototypes.
Linus Walleij05ccbe72006-06-13 07:46:58 +00002463 * src/libmtp.c: discover and use the default folders if
Linus Walleij545c7792006-06-13 15:22:30 +00002464 we can find them. Retrieve device secure time and cert
2465 out of sheer curiosity.
2466 * src/ptp.c: sync to libgphoto2 with my patches.
2467 * src/ptp.h: ditto.
Linus Walleij05ccbe72006-06-13 07:46:58 +00002468
Linus Walleij438bd7f2006-06-08 11:35:44 +000024692006-06-07 Linus Walleij <triad@df.lth.se>
2470
2471 * src/libmtp.h.in: new playlist API and refactorings.
2472 * src/libmtp.c: ditto, and refactorings.
2473 * src/unicode.h: const correctness.
2474 * src/unicode.c: ditto.
2475 * examples/playlists.c: new example program.
2476 * configure.ac: bump to 0.0.9
2477 * src/Makefile.am: bump library interface.
2478
Linus Walleij52e3ac52006-06-05 10:30:00 +000024792006-06-05 Linus Walleij <triad@df.lth.se>
2480
2481 * examples/sendtr.c: fixed annoying bug that made this
2482 program totally useless.
2483 * src/libmtp.c: cosmetics.
2484 * configure.ac: bump to 0.0.8.
2485
Linus Walleij345a3372006-06-03 20:55:25 +000024862006-06-03 Linus Walleij <triad@df.lth.se>
2487
2488 * src/libmtp.c: metadata bugs, album name and genre
2489 confused. Fixe it and released libmtp 0.0.7.
2490
Linus Walleijdc09dc02006-06-01 14:23:41 +000024912006-06-01 Linus Walleij <triad@df.lth.se>
2492
2493 * Released libmtp 0.0.6.
2494
Linus Walleij549ec4d2006-05-31 19:59:52 +000024952006-05-31 Linus Walleij <triad@df.lth.se>
2496
2497 * src/libmtp.c: fixed mapping for JPEG vs JFIF
2498 * src/libmtp.h.in: added proper type for JPEG
2499 * examples/sendfile.c: send proper JPEG type
2500
Linus Walleijd3fdd972006-05-30 15:51:37 +000025012006-05-30 Flavien Lebarbe <flavien+libmtp@lebarbe.net>
2502
2503 * src/libmtp.c: fixed a bug in update metadata due to
2504 bad use of return code.
2505 * src/libusb-glue.c: fixed a loop exiting problem with
2506 good 'ol GOTO.
2507
Linus Walleij9b1fcd92006-05-29 08:35:29 +000025082006-05-29 Linus Walleij <triad@df.lth.se>
2509
2510 * src/libusb-glue.c: one more device.
2511 * doc/examples.h: produce correct documentation.
2512 * configure.ac: bump to 0.0.6.
Linus Walleijf67bca92006-05-29 09:33:39 +00002513 * src/ptp.c: sync to libgphoto2.
2514 * src/ptp.h: ditto.
2515 * src/ptp-pack.c: ditto.
Linus Walleijf0f3d482006-05-29 14:10:21 +00002516 * src/libmtp.c: fixed all filetype API related functions
2517 not to use any PTP intrinsic defines at all, made all
2518 parameters to functions use the internal libmtp interface
2519 enumerations and definitions. Removed LIBMTP_Release():
2520 we can live with the memory lost during init. You're not
2521 supposed to re-initialize the device. Consequently removed
2522 the delete function that cleaned the filetype assoc list.
2523 * examples/refactortest.c: reflect changes.
Linus Walleij9b1fcd92006-05-29 08:35:29 +00002524
ravelox088180b2006-05-26 23:55:40 +000025252006-05-26 Dave Kelly <libmtp@ravelox.co.uk>
2526
2527 * src/libmtp.c: refactored object handling to be more generic
2528 * src/libmtp.h.in: ditto
2529 * examples/refactortest.c: Added simple example to use refactoring
2530 * examples/getplaylist.c: Added example to extract playlist data
Linus Walleij9b1fcd92006-05-29 08:35:29 +00002531 * src/ptp.c: Re-added ptp_get/set_objectreferences to allow
2532 for playlist handling
2533 * src/ptp.h: ditto
ravelox088180b2006-05-26 23:55:40 +00002534
Linus Walleij1fd2d272006-05-08 09:22:01 +000025352006-05-08 Linus Walleij <triad@df.lth.se>
2536
2537 * src/libmtp.h.in: add simple detection function.
2538 * src/libusb-glue.c: implement MTP "OS descriptor" for
2539 looking for MTP devices.
2540 * examples/detect.c: make it possible to do very
2541 rudimentary detection with "detect -p".
2542 * configure.ac: bump to 0.0.5.
2543
Linus Walleij685137f2006-05-07 18:09:02 +000025442006-05-07 Linus Walleij <triad@df.lth.se>
2545
2546 * COPYING: since we no longer use any parts of libptp2
2547 and only files from libgphoto2, we switch to the GNU
2548 Lesser General Public License (GNU LGPL). libptp2 is
2549 a derived work from libgphoto2, and so is libmtp, there
2550 are no remnants of libptp2 in libmtp anymore.
2551
Linus Walleij16c51f02006-05-04 13:20:22 +000025522006-05-04 Linus Walleij <triad@df.lth.se>
2553
2554 * examples/sendfile.c: fixes some more filetypes.
Linus Walleij453813c2006-05-04 19:46:43 +00002555 * src/libmtp.c: respectfully rearranged to use a filetype mapping
2556 table.
2557 * src/ptp-pack.c: real nasty unicode packing bug.
2558 * Release libmtp 0.0.4.
Linus Walleij16c51f02006-05-04 13:20:22 +00002559
Linus Walleijd6a49972006-05-02 08:24:54 +000025602006-05-02 Linus Walleij <triad@df.lth.se>
2561
2562 * src/libmtp.c: general shaping up for release. All track
2563 and file sending functions now respects a parent ID to be
2564 sent along with files and tracks.
2565 * src/libmtp.h.in: dito.
2566 * src/libusb-glue.c: dito.
2567 * examples/sendfile.c: interface dependency changes.
2568 * examples/sendtr.c: dito.
2569
Linus Walleijc60275a2006-04-30 10:58:11 +000025702006-04-30 Linus Walleij <triad@df.lth.se>
2571
2572 * src/ptp.c: sync upstream.
2573 * src/ptp.h: dito.
2574
Linus Walleij370c68d2006-04-27 14:19:01 +000025752006-04-27 Linus Walleij <triad@df.lth.se>
2576
2577 * examples/sendfile.c: first file sender program based
2578 on API implementation and changes by Chris Allegretta.
2579 * examples/Makefile.am: new program, new entry.
2580 * src/libmtp.c: reflect this new functionality.
2581 * src/libmtp.h.in: dito.
2582
Linus Walleijb02a0662006-04-25 08:05:09 +000025832006-04-25 Linus Walleij <triad@df.lth.se>
2584
2585 * Rebased the sources around libgphoto2 instead.
2586 This was a major revision...
2587 * src/ptp.c: imported libgphoto2 version verbatim.
2588 * src/ptp.h: imported libgphoto2 version, minor patch.
2589 * src/ptp-pack.c: imported libgphoto2 version, minor patch.
Linus Walleij9a96f0b2006-04-25 08:46:59 +00002590 * src/ptp-pack.h: dropped, libgphoto2 does not use it.
Linus Walleijb02a0662006-04-25 08:05:09 +00002591 * src/mtp.c: dropped, since all functions are now in ptp.c
2592 * src/mtp-pack.c: dropped, same reason.
2593 * src/mtp.h: dropped, same reason.
2594 * src/mtp-pack.h: dropped, same reason.
2595
Linus Walleije5f3ad42006-04-21 07:44:36 +000025962006-04-21 Linus Walleij <triad@df.lth.se>
2597
Linus Walleij902c0b92006-04-21 10:52:48 +00002598 * Released libmtp 0.0.3
2599 * Bumped source to 0.0.4
2600
26012006-04-21 Linus Walleij <triad@df.lth.se>
2602
Linus Walleije5f3ad42006-04-21 07:44:36 +00002603 * src/ptp-pack.c: GCC 4.x compilation patch from
2604 Diego Pettenò.
Linus Walleija06a2792006-04-21 07:52:26 +00002605 * src/libusb-glue.c: New Samsung device and some
2606 from libgphoto2.
Linus Walleij9c6ca022006-04-21 10:24:15 +00002607 * src/ptp.h: some defines from libgphoto2 to get
2608 a bit more compatible.
2609 * src/libmtp.c: Added a folder API implementation by
2610 Dave "ravelox" Kelly.
2611 * src/libmtp.h.in: dito.
2612 * examples/folders.c: dito.
2613 * examples/newfolder.c: dito.
2614 * examples/trexist.c: dito.
Linus Walleije5f3ad42006-04-21 07:44:36 +00002615
Linus Walleij6fd2f082006-03-28 07:19:22 +000026162006-03-28 Linus Walleij <triad@df.lth.se>
2617
2618 * m4/*: updated macros to work with GCC 4.1.0.
2619 * examples/hotplug.c: new program to create device
2620 ID lists.
2621 * libmtp.rules: now an auto-generated file.
2622 * libmtp.usermap: now an auto-generated file.
2623
Linus Walleijf6bc1782006-03-24 15:12:47 +000026242006-03-24 Linus Walleij <triad@df.lth.se>
2625
2626 * Beginning a file API, fixed some example program
2627 names and such.
2628
Linus Walleij6946ac52006-03-21 06:51:22 +000026292006-03-18 Linus Walleij <triad@df.lth.se>
2630
2631 * Fixed up callback interface to a simpler version,
2632 the old one was bloated stuff from libnjb anyway.
2633 Bump to 0.0.2.
2634
Linus Walleij9b28da32006-03-16 13:47:58 +000026352006-03-16 Linus Walleij <triad@df.lth.se>
2636
2637 * Fixed the .h file and implementation so you really only
2638 need this one .h file to interface the library.
2639
Linus Walleij80124062006-03-15 10:26:09 +000026402006-03-15 Linus Walleij <triad@df.lth.se>
2641
2642 * Added three device information retrieval functions.
2643
Linus Walleij15e344f2006-03-06 15:15:00 +000026442006-03-06 Linus Walleij <triad@df.lth.se>
2645
2646 * Moving some things around to structure the source. More
2647 will be needed...
2648
Linus Walleij93218602006-02-27 08:53:38 +000026492006-02-27 Linus Walleij <triad@df.lth.se>
2650
2651 * Release libmtp 0.0.1 so people have something to play with,
2652 what the heck. Probably saves someones day.
2653
Linus Walleij95698cd2006-02-24 10:40:40 +000026542006-02-24 Linus Walleij <triad@df.lth.se>
2655
2656 * Deltr example program to delete tracks, plus corresponding
2657 interface call.
2658
Linus Walleij17e39f72006-02-23 15:54:28 +000026592006-02-23 Linus Walleij <triad@df.lth.se>
2660
2661 * Fixed up sendtr program and metadata tagging function that is
2662 used after sending files.
2663
Linus Walleij394bbbe2006-02-22 16:10:53 +000026642006-02-22 Linus Walleij <triad@df.lth.se>
Linus Walleijeb8c6fe2006-02-03 09:46:22 +00002665
Linus Walleij394bbbe2006-02-22 16:10:53 +00002666 * Untested gettr.c and sendtr.c programs to get and send tracks
2667 created.
2668
Linus Walleijeb8c6fe2006-02-03 09:46:22 +000026692006-01-30 Linus Walleij <triad@df.lth.se>
2670
2671 * Created the initial GNU source directory structure.
2672 * Added the most basic files.