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.

37 lines
1.2 KiB

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