NEWS 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. Version 3.0.0:
  2. --------------
  3. Generic changes:
  4. - Added support for tvOS
  5. - Removed support for the 32bit OS X platform
  6. - Added support for audio muting on iOS and tvOS
  7. New APIs:
  8. - VLCLibrary
  9. - added properties: debugLogging, debugLoggingLevel
  10. - VLCMediaPlayer
  11. - added properties: titleDescriptions, indexOfLongestTitle, numberOfTitles,
  12. snapshots, lastSnapshot
  13. - added selectors: chaptersForTitleIndex:
  14. numberOfChaptersForTitle:
  15. - added notifications: VLCMediaPlayerTitleChanged, VLCMediaPlayerChapterChanged
  16. - VLCMedia
  17. - added keys: VLCMetaInformationTrackTotal, VLCMetaInformationDirector,
  18. VLCMetaInformationSeason, VLCMetaInformationEpisode,
  19. VLCMetaInformationShowName, VLCMetaInformationActors,
  20. VLCMetaInformationAlbumArtist, VLCMetaInformationDiscNumber
  21. - added selectors: codecNameForFourCC:trackType:
  22. mediaType
  23. parseWithOptions:
  24. - added enums: VLCMediaType, VLCMediaParsingOptions
  25. - VLCTime
  26. - added selectors: isEqual:
  27. hash
  28. - VLCAudio
  29. - setMuted:
  30. Deprecated APIs:
  31. - VLCMediaPlayer
  32. - titles, chaptersForTitleIndex:, countOfTitles, framesPerSecond
  33. - VLCAudio
  34. - setMute:
  35. Removed APIs:
  36. - VLCMedia:
  37. - fps
  38. - media:metaValueChangedFrom:forKey:
  39. - VLCMediaPlayer
  40. - audioTracks
  41. - videoTracks
  42. - videoSubTitles
  43. Version 2.2.2:
  44. --------------
  45. New APIs:
  46. - VLCMediaPlayer
  47. - added properties: numberOfVideoTracks, numberOfSubtitlesTracks
  48. numberOfAudioTracks
  49. Version 2.2.0:
  50. --------------
  51. Cross-platform:
  52. - Fixed deinterlacing if requested
  53. - Fixed decoding and display of Teletext-based subtitles
  54. - Improved thumbnailing reliability
  55. - Added support for inclusion in swift projects
  56. - Switched to Automatic Reference Counting
  57. - Various stability improvements
  58. MobileVLCKit:
  59. - It is finally possible to compile the framework without relying on third
  60. party scripts
  61. - Added 2 sample projects illustrating video playback
  62. - Added support for https and hls playback
  63. - VLCMediaListPlayer is available now
  64. - Added support for https connectivity
  65. VLCKit:
  66. - VLCMediaThumbnailer is a public API on the Mac now matching the mobile
  67. counterpart
  68. - Updated samples projects illustrating playback, file conversation, ...
  69. New APIs:
  70. - VLCMediaThumbnailer:
  71. - added property: snapshotPosition to overwrite the default
  72. - VLCMediaListPlayer:
  73. - added initWithOptions selector matching VLCMediaPlayer's implementation
  74. - added pause selector
  75. - added previous, next and playItemAtIndex selectors
  76. - VLCMedia:
  77. - added delegate method mediaMetaDataDidChange
  78. - VLCMediaPlayer:
  79. - added equalizer
  80. - added countOfTitles
  81. Modified API behavior:
  82. - VLCMediaPlayer:
  83. - implementing mediaPlayerTimeChanged and mediaPlayerStateChanged within a
  84. delegate object is optional now
  85. - VLCMedia:
  86. - nowPlaying meta information is correctly handled now
  87. Deprecated APIs:
  88. - VLCMedia:
  89. - media:metaValueChangedFrom:forKey:
  90. Changes within VLCKit between 2.0.0 and 2.1.0:
  91. ----------------------------------------------
  92. The entire framework was relicensed to LGPL 2.1 or later as well as its
  93. underlying playback modules.
  94. Support for transcoding and streaming as well as DVD playback was not affected
  95. by this move and stays under GPL until further notice.
  96. Please note that the Objective-C syntax was updated, so VLCKit may no longer
  97. compile with outdated versions of Xcode / clang.
  98. New APIs:
  99. - VLCStreamOutput:
  100. - support for subtitle transcoding
  101. - VLCMedia:
  102. - extended media track information for bitrate, language, description, source
  103. aspect ratio, source aspect denominator, frame rate, frame rate denominator,
  104. and text encoding
  105. - added setter and getter for individual meta data values as well as the
  106. ability to write changes to the media file
  107. - added (BOOL)isMediaSizeSuitableForDevice to let VLCKit determine whether the
  108. current media is considered to be suitable for the current device or
  109. playback is discouraged. Will always return true on OS X devices.
  110. - added individual getters for all statistic values, so client application can
  111. fetch single values instead of having to process a NSDictionary with all the
  112. available values. The old API is still available and will stay.
  113. - VLCMediaPlayer:
  114. - added support to enable, switch and disable video tracks
  115. - added setter/getter for SPU and audio delays
  116. - added setter/getter for the video scale factor
  117. - added support for the "adjust" video filter to manipulate contrast,
  118. brightness, hue, saturation and gamma on the fly
  119. - new interfaces to fetch names and IDs of audio, subtitle and video tracks
  120. - added the ability to launch instances with custom libvlc options
  121. - VLCLibrary:
  122. - added the ability to launch instances with custom libvlc options
  123. - added methods to set App ID and User-Agent
  124. - added readonly property to fetch compiler information
  125. Deprecated APIs:
  126. - VLCMediaPlayer:
  127. @property (readonly) NSUInteger fps;
  128. - use (float)fps instead.
  129. - (NSArray *)videoSubTitles;
  130. - use - (NSArray *)videoSubtitleNames; instead
  131. - (NSArray *)audioTracks;
  132. - use - (NSArray *)audioTrackNames; instead
  133. - (NSArray *)videoTracks;
  134. - use - (NSArray *)videoTrackNames; instead
  135. Modified behavior:
  136. - use of clang instead of llvm-gcc-4.2
  137. - updated project file for Xcode 4.3 and later
  138. - iOS Deployment target was raised to iOS 5.1
  139. - dropped support for the PowerPC architecture
  140. - Mac Deployment target was raised to OS X 10.7
  141. - different logging behavior: to see any debug messages, the framework needs
  142. to be compiled in debug mode
  143. MobileVLCKit features:
  144. - added support for Opus
  145. - slimmed binary by removing dysfunctional or irrelevant modules
  146. - screen sleep is prevented during playback
  147. - functionality is strictly limited for full LGPL compliance
  148. Removed APIs:
  149. - VLCMedia:
  150. - (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
  151. use setMetadata:(NSString *)data forKey:(NSString *)key instead