NEWS 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Changes between 0.1.0 and 0.1.1:
  2. --------------------------------
  3. * Add files and folder deletion with smb_directory_rm and smb_file_rm
  4. * Add folder creation with smb_directory_create
  5. * Add files creation with smb_fwrite
  6. * Add files and folder move/rename with smb_file_mv
  7. * Fix smb_tree_connect return value and smb_tree_disconnect implementation
  8. * Fix session state after spnego authentication
  9. Changes between 0.0.7 and 0.1.0:
  10. --------------------------------
  11. * Fix shares listing when server returns a tid equal to 0
  12. Notably TimeCapsule and AirPort Express/Extreme servers
  13. * Fix crashes and wrong assertions
  14. * Improve BSD compatibility
  15. Changes between 0.0.6 and 0.0.7:
  16. --------------------------------
  17. * Rework folders opening with large number of files (FIND_NEXT)
  18. * Fix for reading from OS X SMB Sharing
  19. * Fix build for old glibc versions
  20. * Fix support for large files (fix for >1GiB and for >4GiB)
  21. * Fix potential deadlock when server disconnects
  22. Changes between 0.0.5 and 0.0.6:
  23. --------------------------------
  24. * Fix iOS compilation
  25. * Fix regression on smb_buffer_alloca that introduced login and discovery
  26. issues
  27. * Fix double-free crash
  28. Changes between 0.0.4 and 0.0.5:
  29. --------------------------------
  30. * Rework netbios_ns timeouts
  31. * Expose less APIs and defines
  32. * Fix support for Darwin OS missing clock_gettime()
  33. Changes between 0.0.3 and 0.0.4:
  34. --------------------------------
  35. * Improve discovery that is now done in a separate thread and lot more robust
  36. * API: Add netbios_ns_discover_start and netbios_ns_discover_stop to start and
  37. stop a discovery task
  38. * API: Remove netbios_ns_discover, netbios_ns_entry_count, netbios_ns_entry_at,
  39. netbios_ns_clear, netbios_ns_abort. Use the new discovers calls instead
  40. * Fix smb_fopen failing to open long path
  41. Changes between 0.0.2 and 0.0.3:
  42. --------------------------------
  43. * Port to Android
  44. * Simplification of the NetBios discovery API
  45. * New abort mechanism when discovery: netbios_ns_abort
  46. * Numerous cleanups, include headers and API
  47. * Provide a replacement for strlcpy
  48. * Fix numerous warnings, build issues and leaks
  49. * Support SMBX servers
  50. Changes between 0.0.1 and 0.0.2:
  51. --------------------------------
  52. * Fix various build failures
  53. First release 0.0.1:
  54. --------------------
  55. * This is the first basic release.
  56. * It should provide the basics for this library, but is not ready yet for
  57. prime-time