You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.2 KiB

10 years ago
10 years ago
  1. ## [1.1.3] - 2015-10-16
  2. ### FIXED
  3. - ND2s with a single image can now be parsed
  4. ## [1.1.2] - 2015-10-09
  5. ### ADDED
  6. - `Image` objects now have a `frame_number` attribute.
  7. - `Nd2` can be used as a context manager.
  8. - More unit tests and functional tests
  9. ### CHANGED
  10. - `Image` objects now directly subclass Numpy arrays.
  11. - Refactored code to permit parsing of different versions of ND2s, which will allow us to add support for NIS Elements 3.x.
  12. ### DEPRECATED
  13. - The `data` attribute is no longer needed since `Image` is now a Numpy array.
  14. - The `image_sets` iterator will be removed in the near future. You should implement this yourself.
  15. ## [1.1.1] - 2015-09-02
  16. ### FIXED
  17. - Images returned by indexing would sometimes be skipped when the file contained multiple channels
  18. ### CHANGED
  19. - Dockerfile now installs scikit-image to make visual testing possible
  20. ## [1.1.0] - 2015-06-03
  21. ### ADDED
  22. - Indexing and slicing of images
  23. - Python 3 support
  24. - Dockerfile support for Python 3.4
  25. - Makefile commands for convenient testing in Docker
  26. - Unit tests
  27. ### CHANGED
  28. - Switched to setuptools to automatically install missing dependencies
  29. - Made the interface for most metadata public
  30. - Refactored some poorly-named things
  31. ## [1.0.0] - 2015-05-23
  32. ### Added
  33. - First stable release!