NEWS 6.8 KB

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