updates.txt 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. R0.10c, Nov 09, 2014
  2. Added a configuration option for the platforms without RTC. (_FS_NORTC)
  3. Fixed volume label created by Mac OS X cannot be retrieved with f_getlabel().
  4. Fixed a potential problem of FAT access that can appear on disk error.
  5. Fixed null pointer dereference on attempting to delete the root direcotry.
  6. R0.10b, May 19, 2014
  7. Fixed a hard error in the disk I/O layer can collapse the directory entry.
  8. Fixed LFN entry is not deleted on delete/rename an object with its lossy converted SFN.
  9. R0.10a, Jan 15, 2014
  10. Added arbitrary strings as drive number in the path name. (_STR_VOLUME_ID)
  11. Added an option for minimum sector size. (_MIN_SS)
  12. 2nd argument of f_rename() can have a drive number and it will be ignored.
  13. Fixed f_mount() with forced mount fails when drive number is larger than 0.
  14. Fixed f_close() invalidates the file object without volume lock.
  15. Fixed volume lock is left acquired after return from f_closedir().
  16. Fixed creation of a directory entry with LFN fails on too many SFN collisions.
  17. R0.10, Oct 02, 2013
  18. Added an option for character encoding on the file. (_STRF_ENCODE)
  19. Added f_closedir().
  20. Added forced full FAT scan option for f_getfree(). (_FS_NOFSINFO)
  21. Added forced mount feature with changes of f_mount().
  22. Improved behavior of volume auto detection.
  23. Improved write throughput of f_puts() and f_printf().
  24. Changed argument of f_chdrive(), f_mkfs(), disk_read() and disk_write().
  25. Fixed f_write() can be truncated when the file size is close to 4GB.
  26. Fixed f_open(), f_mkdir() and f_setlabel() can return incorrect result code on error.
  27. R0.09b, Jan 24, 2013
  28. Added f_getlabel() and f_setlabel(). (_USE_LABEL = 1)
  29. R0.09a, Aug 27, 2012
  30. Fixed assertion failure due to OS/2 EA on FAT12/16 volume.
  31. Changed file functions reject null object pointer to avoid crash.
  32. Changed option name _FS_SHARE to _FS_LOCK.
  33. R0.09, Sep 06, 2011
  34. f_mkfs() supports multiple partition to complete the multiple partition feature.
  35. Added f_fdisk(). (_MULTI_PARTITION = 2)
  36. R0.08b, Jan 15, 2011
  37. Fast seek feature is also applied to f_read() and f_write().
  38. f_lseek() reports required table size on creating CLMP.
  39. Extended format syntax of f_printf().
  40. Ignores duplicated directory separators in given path names.
  41. R0.08a, Aug 16, 2010
  42. Added f_getcwd(). (_FS_RPATH = 2)
  43. Added sector erase feature. (_USE_ERASE)
  44. Moved file lock semaphore table from fs object to the bss.
  45. Fixed a wrong directory entry is created on non-LFN cfg when the given name contains ';'.
  46. Fixed f_mkfs() creates wrong FAT32 volume.
  47. R0.08, May 15, 2010
  48. Added a memory configuration option. (_USE_LFN)
  49. Added file lock feature. (_FS_SHARE)
  50. Added fast seek feature. (_USE_FASTSEEK)
  51. Changed some types on the API, XCHAR->TCHAR.
  52. Changed fname member in the FILINFO structure on Unicode cfg.
  53. String functions support UTF-8 encoding files on Unicode cfg.
  54. R0.07e, Nov 3, 2009
  55. Separated out configuration options from ff.h to ffconf.h.
  56. Added a configuration option, _LFN_UNICODE.
  57. Fixed f_unlink() fails to remove a sub-dir on _FS_RPATH.
  58. Fixed name matching error on the 13 char boundary.
  59. Changed f_readdir() to return the SFN with always upper case on non-LFN cfg.
  60. R0.07c, Jun 21, 2009
  61. Fixed f_unlink() may return FR_OK on error.
  62. Fixed wrong cache control in f_lseek().
  63. Added relative path feature.
  64. Added f_chdir().
  65. Added f_chdrive().
  66. Added proper case conversion to extended characters.
  67. R0.07a, Apr 14, 2009
  68. Separated out OS dependent code on re-entrant configuration.
  69. Added multiple sector size support.
  70. R0.07, Apr 01, 2009
  71. Merged Tiny-FatFs into FatFs as a buffer configuration option.
  72. Added long file name support.
  73. Added multiple code page support.
  74. Added re-entrancy for multitask operation.
  75. Added auto cluster size selection to f_mkfs().
  76. Added rewind option to f_readdir().
  77. Changed result code of critical errors.
  78. Renamed string functions to avoid name collision.
  79. R0.06, Apr 01, 2008
  80. Added f_forward. (Tiny-FatFs)
  81. Added string functions: fgets, fputc, fputs and fprintf.
  82. Improved performance of f_lseek on moving to the same or following cluster.
  83. R0.05a, Feb 03, 2008
  84. Added f_truncate.
  85. Added f_utime.
  86. Fixed off by one error at FAT sub-type determination.
  87. Fixed btr in f_read can be mistruncated.
  88. Fixed cached sector is left not flushed when create and close without write.
  89. R0.05, Aug 26, 2007
  90. Changed arguments of f_read, f_write.
  91. Changed arguments of f_mkfs. (FatFs)
  92. Fixed f_mkfs on FAT32 creates incorrect FSInfo. (FatFs)
  93. Fixed f_mkdir on FAT32 creates incorrect directory. (FatFs)
  94. R0.04b, May 05, 2007
  95. Added _USE_NTFLAG option.
  96. Added FSInfo support.
  97. Fixed some problems corresponds to FAT32. (Tiny-FatFs)
  98. Fixed DBCS name can result FR_INVALID_NAME.
  99. Fixed short seek (<= csize) collapses the file object.
  100. R0.04a, Apr 01, 2007
  101. Supported multiple partitions on a plysical drive. (FatFs)
  102. Added minimization level 3.
  103. Added a capability of extending file size to f_lseek.
  104. Fixed an endian sensitive code in f_mkfs. (FatFs)
  105. Fixed a problem corresponds to FAT32 support. (Tiny-FatFs)
  106. R0.04, Feb 04, 2007
  107. Supported multiple drive system. (FatFs)
  108. Changed some APIs for multiple drive system.
  109. Added f_mkfs. (FatFs)
  110. Added _USE_FAT32 option. (Tiny-FatFs)
  111. R0.03a, Dec 11, 2006
  112. Improved cluster scan algolithm to write files fast.
  113. Fixed f_mkdir creates incorrect directory on FAT32.
  114. R0.03, Sep 22, 2006
  115. Added f_rename.
  116. Changed option _FS_MINIMUM to _FS_MINIMIZE.
  117. R0.02a, Jun 10, 2006
  118. Added a configuration option _FS_MINIMUM.
  119. R0.02, Jun 01, 2006
  120. Added FAT12.
  121. Removed unbuffered mode.
  122. Fixed a problem on small (<32M) patition.
  123. R0.01, Apr 29, 2006
  124. First release
  125. R0.00, Feb 26, 2006
  126. Prototype (not released)