- Restructure main window a bit more - Remove attempt at SF Symbols icons for now - Add Now Playing popout to Stacks style main window, tooltip instructs to click to select the current track in playlist - Disable libFLAC plugin on macOS 10.13 and newer, letting Core Audio handle it instead. Apparently, libFLAC is not really ready for Apple Silicon yet.
21 lines
483 B
Objective-C
21 lines
483 B
Objective-C
//
|
|
// SUUnarchiver.h
|
|
// Sparkle
|
|
//
|
|
// Created by Andy Matuschak on 3/16/06.
|
|
// Copyright 2006 Andy Matuschak. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol SUUnarchiverProtocol;
|
|
|
|
@interface SUUnarchiver : NSObject
|
|
|
|
+ (nullable id <SUUnarchiverProtocol>)unarchiverForPath:(NSString *)path updatingHostBundlePath:(nullable NSString *)hostPath decryptionPassword:(nullable NSString *)decryptionPassword;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|