CHANGELOG.txt 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ----- v0.1 -----
  2. * Initial release
  3. ----- v0.2 -----
  4. * Minimum Unity version is now 4.0.1
  5. * Source stream access is now thread safe. No more random visible and audible glitches
  6. * Fixed a bug that caused crop and fill not to work in certain cases
  7. * All aspects of the FeatureDemo can now be controlled on touch screen (it used to depend on physical keyboard)
  8. * Added support for AVI OpenDML extension. 2Gb file size limit is not an issue any more
  9. * MoviePlayer component can decode frames for preview in edit mode
  10. * Added directory navigation to feature demo
  11. ----- v0.3 -----
  12. * Added MPNG video codec with alpha channel support
  13. * Fixed RGB decoder where R and B channels were swapped
  14. ----- v0.4 -----
  15. * Simplified some parts of the C# API. MoviePlayer component remained essentially the same
  16. * Added HTTP MJPEG streaming support (Unity PRO only)
  17. * Added "Movie Encoder" tool that wraps ffmpeg for easier use
  18. * Added "Duplicate Frame Remover" tool that can shrink AVI files further with zero quality loss
  19. * Fixed a bug that may cause "flashing" when switching quickly between movie clips
  20. * Added scripting samples
  21. ----- v0.5 -----
  22. * Removed empty c# files whose only purpose was to make v0.3 to v0.4 upgrade errorless
  23. * Added MJPEG over HTTP streamer to feature demo scene
  24. ----- v0.6 -----
  25. * Fixed NotSupportedException caused by HttpWebRequest when trying to stream MJPEG over HTTP in web player build
  26. * Disabled local webcam support when using Unity 4.3 on OSX, because WebCamTexture is not available since 4.3.2 on OSX build targets
  27. ----- v0.7 -----
  28. MoviePlayer and MovieStreamer components:
  29. * Added lengthSeconds property
  30. * Material property is now used when drawing to screen
  31. * Renamed propery otherMaterial -> material (when upgrading, otherMaterial will get copied to material automatically)
  32. MovieStreamer:
  33. * Switched from HTTP 1.1 to HTTP 1.0 protocol if build target is web player (fix for glitchy decoding caused by "Transfer-Encoding: chunked" issue)
  34. Movie Encoder:
  35. * Added file overwrite check
  36. * Added "add .bytes extension" option
  37. * Added "send to duplicate frame remover" option
  38. * Fixed "ffmpeg not found" issue even if it was installed on OSX