Skip to content
Snippets Groups Projects
NEWS 5.52 KiB
Newer Older
Soomin Lee's avatar
Soomin Lee committed
Version 3.0.0
-------------
* Migration to the usage of medialibrary(c++)

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.6.4
-------------
* Added unstable Cocoapods spec

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.6.3
-------------
* Added Cocoapods spec

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.6.2
-------------
* Optimized thumbnailing and parsing

Version 2.6.1
-------------
* Fixed file lookup for paths containing spaces or umlauts
Felix Paul Kühne's avatar
Felix Paul Kühne committed
* Added native support for watchOS 2
* Added improve data model
* Added support for CoreSpotlight
* Improved thumbnailing
* Improved support for group identifiers
* Stability improvements

Felix Paul Kühne's avatar
Felix Paul Kühne committed
- MLMediaLibrary:
  - new property: spotlightIndexingEnabled
- MLAlbumTrack:
  - new selectors: trackWithAlbum:metadata:createIfNeeded:wasCreated:
                   trackWithMetadata:createIfNeeded:wasCreated:

Deprecated Public APIs:
- MLAlbumTrack:
  trackWithAlbum:trackNumber:createIfNeeded:
  trackWithAlbum:trackNumber:trackName:createIfNeeded:
  trackWithAlbumName:trackNumber:createIfNeeded:wasCreated:
  trackWithAlbumName:trackNumber:trackName:createIfNeeded:wasCreated:

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.5.5
-------------
* Stability improvements

Version 2.5.4
-------------
* Stability improvements

Version 2.5.3
-------------
* Stability improvements

Version 2.5.2
-------------
* Smaller library size by increased dead code stripping
* Added new target to create a read-only variant which
  does not depend on VLCKit

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.5.1
-------------
Added Public APIs:
- MLMediaLibrary:
  - new selectors: libraryBasePath
                   additionalPersitentStoreOptions
                   objectForURIRepresentation:
                   migrateLibraryToBasePath
                   deviceSpeedCategory
                   computeThumbnailForFile:
                   fetchMetaDataForFile:
  - new selector: setComputedThumbnailScaledForDevice
- MLAlbum:
  - new selector: addAlbumTrack
- MLAlbumTrack:
  - new selectors: trackWithAlbum:trackNumber:trackName:createIfNeeded:
                   trackWithAlbumName:trackNumber:trackName:createIfNeeded:wasCreated:
Felix Paul Kühne's avatar
Felix Paul Kühne committed

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.5
-----------
- Updated database format allowing more meta data
- Stability improvements

Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.4
-----------
- NEW: code was upgraded to ARC
- FIX: library is no longer reset when upgrading iOS app through the store
- FIX: [] pattern is correctly removed from file titles

Added Public APIs:
- MLMediaLibrary
  - new selector: documentFolderPath

Felix Paul Kühne's avatar
Felix Paul Kühne committed
- FIX: crash when deploying MLFile's unread property

Felix Paul Kühne's avatar
Felix Paul Kühne committed
  - new selectors: fileForURL
                   folderTrackNumber
- MLLabel:
  - new selector: sortedFolderItems
- MLMediaLibrary:
  - new selector: removeObject
Version 2.2.1
-------------
- FIX: incorrect return value for untitled TV shows
- FIX: crash in setter/getter for lastPosition and unread in MLFile
- Thumbnailer: use a special libVLC instance for thumbnails
Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.2
-----------
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- FIX: correct subitem behavior of MLShow and MLAlbum on removal
- FIX: MLTitleDecrapifier handles shows with more than 99 and less than 1000
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- NEW: added user defaults option to disable file name display optimizations
  when media is newly added to the library
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- FIX: thumbnails are correctly purged if a media item is removed
Felix Paul Kühne's avatar
Felix Paul Kühne committed
  - new selectors: removeEpisode:
                   removeEpisodeWithSeasonNumber:andEpisodeNumber:
Felix Paul Kühne's avatar
Felix Paul Kühne committed
  - new selectors: removeTrack:
                   removeTrackWithTrackNumber:
                   sortedTracks
- MLLabel:
  - new selector: allLabels
Version 2.1.3
-------------
- fix crash when processing files whose names are less than 6 characters long
  (after removing the file extension)

Version 2.1.2
-------------
- fix crashes and missing exception handlings
- fix memory leaks in MLFile, library and title sanitizer
- prevent zombie creation and VLCMedia corruptions

Version 2.1.1
-------------
- improved title decrapification with faster processing and support for older
  TV show naming schemes
- improve notifications of some properties
Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.1
-----------
Felix Paul Kühne's avatar
Felix Paul Kühne committed
Features:
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- added support for audio file detection and album organization
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- improved title decrapification including advanced TV Show support
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- overall stability improvements
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- updated database format including a future-proof upgrade API
Felix Paul Kühne's avatar
Felix Paul Kühne committed

Added Public APIs:
- MLAlbum:
  - New class
- MLAlbumTrack:
  - New class
- MLFile:
  - new properties: lastAudioTrack, lastSubtitleTrack
Felix Paul Kühne's avatar
Felix Paul Kühne committed
- MLMediaLibrary:
  - new properties: delegate, libraryNeedsUpgrade
Felix Paul Kühne's avatar
Felix Paul Kühne committed
  - new selector: upgradeLibrary
  - new delegate protocol: libraryUpgradeComplete
Felix Paul Kühne's avatar
Felix Paul Kühne committed
Version 2.0
-----------
The entire library was cleaned and relicensed to LGPL 2.1 or later.
Please note that the Objective-C syntax was updated, so MediaLibraryKit may no longer compile with outdated versions of Xcode / clang.

Features:
- added automatic support for HiDPI thumbnails depending on the iOS device the
  client app is executed on

Added APIs:
- MediaLibraryKit:
  - added a generic header to include the entire framework's functionality
    with a single #import
- MLMediaLibrary:
  - (void)updateMediaDatabase;

Removed APIs and code:
- MLMediaLibrary:
  - (void)updateDatabase;
- NameCleaner.rb

Modified behavior and misc:
- use of clang instead of llvm-gcc-4.2
- updated project file for Xcode 4.3 and later
- iOS Deployment target was raised to iOS 5.1
- different logging behavior: to see any debug messages, the framework needs
  to be compiled in debug mode.
- fixed a significant number of memory leaks
- updated TouchXML snapshot to current HEAD