Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuslos committed Jun 8, 2024
1 parent 9c47d6d commit a187595
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ extension DownloadManager {
func setTrackFileType(track: OfflineTrack, mimeType: String?) {
switch mimeType {
case "audio/aac":
// Both alac and aac can be in this container
track.container = .aac
case "audio/mp4":
// Both alac and aac can be in this container
track.container = .m4a
case "audio/mpeg":
track.container = .mp3
Expand All @@ -51,8 +51,8 @@ extension DownloadManager {
track.container = .aiff
case "audio/webm":
track.container = .webma
// Use flac if unsure
default:
// Use flac if unsure
track.container = .flac
}
}
Expand Down
2 changes: 1 addition & 1 deletion Configuration/Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

MARKETING_VERSION = 1.4.3
MARKETING_VERSION = 1.4.4
SWIFT_ACTIVE_COMPILATION_CONDITIONS = ENABLE_ALL_FEATURES

0 comments on commit a187595

Please sign in to comment.