CHANGELOG 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. lwext4-1.0.0
  2. ============
  3. * new extent module implementation (handle unwritten extents correctly)
  4. * xattr support
  5. * journaling transactions & recover support
  6. * improve configurations (with automatic generated config file)
  7. * move stm32disco demo to separate repository
  8. * test suite & tools improvements (more tests on autogenerated images)
  9. * new filesystem tools: lwext4-mkfs, lwext4-mbr
  10. * travis continious integration
  11. * lot of bugfixes and minor improvements...
  12. lwext4-0.8.0
  13. ============
  14. * improve ext4_dir_entry_next
  15. * clang code format based on config file
  16. * ChibiOS demo for some stm32 boards
  17. * Improve includes in lwext4 dir
  18. * Add some const keyword where should be used
  19. lwext4-0.7.0
  20. ============
  21. * features supported: flex_bg, uninit_bg, dir_nlink
  22. * config file improvements, 3 basic build modes:
  23. * feature set ext2 - small footprint (~20KB .text)
  24. * feature set ext3 - htree directory indexing (~25KB .text)
  25. * feature set ext4 - all supported features enabled (~30KB .text)
  26. * IO timing stats in stm32f429_demo
  27. * more advanced cases in test suite
  28. * support for meta_bg feature (unstable)
  29. * crc32c module for meta_csum feature (not supported yet)
  30. * small demo application improvments (readability)
  31. lwext4-0.6.0
  32. ============
  33. * Fixed stm32429demo enumerating issues
  34. * Comb sort for directory indexing
  35. * Cmake toolchain files for msp430
  36. lwext4-0.5.0
  37. ============
  38. * Build system refactoring
  39. * Pedantic warning check for lwext4 files
  40. * New toolchain files for cortex-m0, avexmega7, arm-sim
  41. * Merge bugfixes from HelenOS mainline
  42. * OS locks setup function
  43. lwext4-0.4.0
  44. ============
  45. * Client-server based automatic test suite
  46. lwext4-0.3.0
  47. ============
  48. * STM32F429 demo
  49. lwext4-0.2.0
  50. ============
  51. * Full extents support
  52. * Doxygen comments
  53. * Bug fixing
  54. * Demo app improvments
  55. lwext4-0.1.1
  56. ============
  57. * First version of the lwext4 filesystem library.