Skip to content

Commit

Permalink
Release v3.21.1 - playlist scroll bar visibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-venugopal committed Sep 19, 2023
1 parent b182608 commit f394138
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Aural.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6675,7 +6675,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.21.0;
CURRENT_PROJECT_VERSION = 3.21.1;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/Frameworks";
Expand All @@ -6690,7 +6690,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.21.0;
MARKETING_VERSION = 3.21.1;
PRODUCT_BUNDLE_IDENTIFIER = com.kv.Aural;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = Source/FFmpeg/ffmpeg.h;
Expand All @@ -6709,7 +6709,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.21.0;
CURRENT_PROJECT_VERSION = 3.21.1;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/Frameworks";
Expand All @@ -6724,7 +6724,7 @@
);
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.21.0;
MARKETING_VERSION = 3.21.1;
PRODUCT_BUNDLE_IDENTIFIER = com.kv.Aural;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = Source/FFmpeg/ffmpeg.h;
Expand Down
Binary file not shown.
10 changes: 4 additions & 6 deletions Documentation/Release Notes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# What's New in Version 3.21.0
# What's New in Version 3.21.1

## #62 - Support for tracker module formats
## Bug fix - Playlist scroll bar on Intel Macs

Many thanks to @skillt3ch for requesting this feature!

Aural Player can now play "tracker module" formats: .it, .xm, .mod, and .s3m.
On Intel Macs, the playlist scroll bar would not show up (it would be auto-hidden). This bug has been fixed, so the scroll bar is always visible.

### **For more info**
Visit the [official release page](https://github.com/kartik-venugopal/aural-player/releases/tag/v3.21.0)
Visit the [official release page](https://github.com/kartik-venugopal/aural-player/releases/tag/v3.21.1)
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ class GroupingPlaylistViewController: NSViewController, Destroyable {
if uiState.currentView == self.playlistType, preferences.showNewTrackInPlaylist {
showPlayingTrack()
}

scrollView.scrollerStyle = .legacy
scrollView.hasVerticalScroller = true
scrollView.autohidesScrollers = false
}

private func initSubscriptions() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ class TracksPlaylistViewController: NSViewController, Destroyable {
if uiState.currentView == .tracks, preferences.showNewTrackInPlaylist {
showPlayingTrack()
}

scrollView.scrollerStyle = .legacy
scrollView.hasVerticalScroller = true
scrollView.autohidesScrollers = false
}

private func initSubscriptions() {
Expand Down

0 comments on commit f394138

Please sign in to comment.