NEWS 6.4 KB

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