Skip to content

Commit

Permalink
Update for release of version 5.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arvkmr committed Sep 20, 2023
1 parent 31462ba commit 851c1f7
Show file tree
Hide file tree
Showing 41 changed files with 10,509 additions and 39 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- v5.5.1
- Hotfix for iOS 17 support.

- v5.5.0
- Improve timing accuracy of play starts.
- Added Feed class that allows for a smoother Xpress SDK integration. Please consult your portal docs for more information.
Expand Down
2 changes: 1 addition & 1 deletion FeedMedia.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "FeedMedia"
s.version = "5.5.0"
s.version = "5.5.1"
s.summary = "FeedMedia SDK for Internet radio streaming"
s.description = <<-DESC
Feed.fm allows you to legally add popular music to your mobile app with a Pandora-style
Expand Down
24 changes: 16 additions & 8 deletions FeedMedia.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,40 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>FeedMedia.framework/FeedMedia</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>FeedMedia.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>FeedMedia.framework/FeedMedia</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>FeedMedia.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>tvos</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>FeedMedia.framework/FeedMedia</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
Expand All @@ -53,18 +56,23 @@
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>FeedMedia.framework/FeedMedia</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FeedMedia.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified FeedMedia.xcframework/ios-arm64/FeedMedia.framework/FeedMedia
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,24 @@ typedef NS_ENUM(NSInteger, FMMixingAudioPlayerCompletionReason) {




/**
* Search for audiofiles in the current set of stations for the given token and secret. This search only returns songs that can be played on demand.
*
* @param query Search query
* @param stationId optional search query if you wish to narrow the search to a specific station.
* @param page results page starts from 0
* @param resultsPerPage No of results per page, must be higher then zero default is 20
* @param onResult the block that will be called when results are available. The parameter can be null if no results are found.
*/

-(void) searchForAudioItem:(nonnull NSString *)query
station:(nullable NSString *)stationId
pageNo:(nullable NSNumber *)page
resultsPerPage:(nullable NSNumber *)resultsPerPage
withCallback:(void (^_Nonnull)(NSArray<FMAudioItem*>*_Nonnull)) onResult ;


/**
* Search for stations
* @param searchQuery A string search query
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@

#import <FeedMedia/FMStationCrossfader.h>


/**
* Program class with cuepoints
*/

@interface FMProgram : NSObject

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@

NS_ASSUME_NONNULL_BEGIN

/**
* Feed class is a simplified way to use our SDK, it does not replace any functionality of the SDK but is rather a layer on top to simplify integration.
*
* This method associates the feed audio player with an avplayer. The feed SDK watches the associated AVPlayer and automatically finds and plays the correct station and pauses and unpause the playback etc. For more info please check out our welcome docs on business portal.
*/

@interface Feed : NSObject

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2017 Feed Media. All rights reserved.
//

#define FEED_MEDIA_CLIENT_VERSION @"5.5.0"
#define FEED_MEDIA_CLIENT_VERSION @"5.5.1"

// All public headers

Expand Down
Binary file modified FeedMedia.xcframework/ios-arm64/FeedMedia.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
framework module FeedMedia {
umbrella header "FeedMedia.h"

export *

module * { export * }
}
Binary file not shown.
Loading

0 comments on commit 851c1f7

Please sign in to comment.