0.13.0#80
Merged
Merged
Conversation
BaseURL for PlayolaStationPlayer (for use with staging)
Fix Missing /v1
Stations - Release Date
Add SpinGroupId to Spin
Bugfix: Resume After Audio Interruption
Adjust Playback For "Live" Broadcasting
Update Fastlane
Bugfix: Deadlock Crash
Bugfix: Carplay Can't Play Sometimes
Bugfix: Audio Grabbed Back from Interruptors
Incorporate Models for Shows, Airings, and Episodes
Remove Scheduled Show
…model Add Station to Airing Model
…outAuth Bugfix - ListeningSessionReporter Memory Leak
Extract models to PlayolaCore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant enhancements and refactoring to the codebase, primarily focused on modularizing core models into a new
PlayolaCoretarget, expanding model capabilities, and updating build configurations. The changes add new models for radio shows and episodes, extend existing models with additional fields and mock data utilities, and update the CI and Swift package settings to support these improvements.Core Model Additions and Enhancements:
Show,Episode, andAiringinPlayolaCore, each with Codable, Sendable, Equatable, Hashable, and Identifiable conformance, plus static mock data and customizable mock initializers for testing. [1] [2] [3]Spinmodel to include optionalspinGroupIdandairingfields, updated initializers, Codable logic, and mock utilities to support these additions. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Stationmodel with an optionalreleaseDatefield (with flexible date parsing and encoding), and added static mock data and a mock initializer for easier testing. [1] [2] [3] [4] [5]Project Structure and Build Configuration:
PlayolaCoretarget (with resources and test target), updated the Swift tools version to 6.0, added tvOS 18 support, and includedPlayolaCoreas a separate library product.Protocol and Dependency Injection Improvements:
URLSessionProtocolpublic to enable dependency injection across module boundaries.AudioSessionManager.swiftto reference the newPlayolaCoremodule.