Skip to content

Commit

Permalink
#72 - Bug fix, release v3.25.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-venugopal committed Jan 10, 2024
1 parent 32c3424 commit f0b8ca7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Aural.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6749,7 +6749,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.25.1;
CURRENT_PROJECT_VERSION = 3.25.2;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/Frameworks";
Expand All @@ -6768,7 +6768,7 @@
"$(PROJECT_DIR)/Resources/ffmpeg/libopenmpt/src/libopenmpt-0.7.3+release.autotools/.libs",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.25.1;
MARKETING_VERSION = 3.25.2;
PRODUCT_BUNDLE_IDENTIFIER = com.kv.Aural;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = Source/FFmpeg/ffmpeg.h;
Expand All @@ -6787,7 +6787,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.25.1;
CURRENT_PROJECT_VERSION = 3.25.2;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/Frameworks";
Expand All @@ -6806,7 +6806,7 @@
"$(PROJECT_DIR)/Resources/ffmpeg/libopenmpt/src/libopenmpt-0.7.3+release.autotools/.libs",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.25.1;
MARKETING_VERSION = 3.25.2;
PRODUCT_BUNDLE_IDENTIFIER = com.kv.Aural;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = Source/FFmpeg/ffmpeg.h;
Expand Down
Binary file not shown.
14 changes: 6 additions & 8 deletions Documentation/Release Notes.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# What's New in Version 3.25.1
# What's New in Version 3.25.2

## Fixed Last.fm scrobbling bugs
## #72 - Fixed playlist bug

### Measuring playback time
Thanks to @sirlaurie for reporting this bug!

The way Aural measures how long a track was played back for, has been improved.
The Playlist would cause a freeze when dragging in a folder containing a CUE file. This bug has been fixed.

### Character encoding

Previously, track metadata with Unicode characters having symbols such as accents or umlauts was not encoded properly, resulted in failed scrobbling requests.
NOTE - CUE Sheets are not currently supported, but will probably be supported in a future version.

### **For more info**
Visit the [official release page](https://github.com/kartik-venugopal/aural-player/releases/tag/v3.25.1)
Visit the [official release page](https://github.com/kartik-venugopal/aural-player/releases/tag/v3.25.2)
4 changes: 2 additions & 2 deletions Source/Constants/SupportedTypes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ struct SupportedTypes {

static let m3u: String = "m3u"
static let m3u8: String = "m3u8"
static let cue: String = "cue"
static let playlistExtensions: [String] = [m3u, m3u8, cue]
// static let cue: String = "cue"
static let playlistExtensions: [String] = [m3u, m3u8]

// Supported audio file types/formats

Expand Down
6 changes: 3 additions & 3 deletions Source/Playlist/ImportExport/PlaylistIO.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ class PlaylistIO: PlaylistIOProtocol {

if fileExtension.equalsOneOf(SupportedTypes.m3u, SupportedTypes.m3u8) {
return M3UPlaylistIO.loadPlaylist(fromFile: playlistFile)

} else if fileExtension == SupportedTypes.cue {
return CueSheetIO.loadPlaylist(fromFile: playlistFile)
}
// } else if fileExtension == SupportedTypes.cue {
// return CueSheetIO.loadPlaylist(fromFile: playlistFile)
// }

return nil
}
Expand Down

0 comments on commit f0b8ca7

Please sign in to comment.