-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Universal Binary Support, Full support for Music App
The elapsed time now works properly for the Music app under Catalina and Big Sur. The app now supports Apple Silicon.
- Loading branch information
千代田桃
committed
Feb 5, 2021
1 parent
db4a91d
commit c32f2c7
Showing
73 changed files
with
2,226 additions
and
615 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Binary file added
BIN
+22.8 KB
...roj/project.xcworkspace/xcuserdata/chiyodamomo.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
14 changes: 14 additions & 0 deletions
14
...anDiscord.xcodeproj/xcuserdata/chiyodamomo.xcuserdatad/xcschemes/xcschememanagement.plist
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>SchemeUserState</key> | ||
<dict> | ||
<key>SwinsianDiscord.xcscheme_^#shared#^_</key> | ||
<dict> | ||
<key>orderHint</key> | ||
<integer>0</integer> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</plist> |
This file contains 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
Binary file not shown.
20 changes: 10 additions & 10 deletions
20
SwinsianDiscord/DiscordRPC.framework/Versions/A/Headers/discord_register.h
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Headers |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Modules |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/PrivateHeaders |
43 changes: 43 additions & 0 deletions
43
SwinsianDiscord/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// | ||
// SPUDownloadData.h | ||
// Sparkle | ||
// | ||
// Created by Mayur Pawashe on 8/10/16. | ||
// Copyright © 2016 Sparkle Project. All rights reserved. | ||
// | ||
|
||
#if __has_feature(modules) | ||
@import Foundation; | ||
#else | ||
#import <Foundation/Foundation.h> | ||
#endif | ||
|
||
#import "SUExport.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/*! | ||
* A class for containing downloaded data along with some information about it. | ||
*/ | ||
SU_EXPORT @interface SPUDownloadData : NSObject <NSSecureCoding> | ||
|
||
- (instancetype)initWithData:(NSData *)data textEncodingName:(NSString * _Nullable)textEncodingName MIMEType:(NSString * _Nullable)MIMEType; | ||
|
||
/*! | ||
* The raw data that was downloaded. | ||
*/ | ||
@property (nonatomic, readonly) NSData *data; | ||
|
||
/*! | ||
* The IANA charset encoding name if available. Eg: "utf-8" | ||
*/ | ||
@property (nonatomic, readonly, nullable, copy) NSString *textEncodingName; | ||
|
||
/*! | ||
* The MIME type if available. Eg: "text/plain" | ||
*/ | ||
@property (nonatomic, readonly, nullable, copy) NSString *MIMEType; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
25 changes: 25 additions & 0 deletions
25
SwinsianDiscord/Sparkle.framework/Versions/A/Headers/SPUDownloader.h
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// SPUDownloader.h | ||
// Downloader | ||
// | ||
// Created by Mayur Pawashe on 4/1/16. | ||
// Copyright © 2016 Sparkle Project. All rights reserved. | ||
// | ||
|
||
#if __has_feature(modules) | ||
@import Foundation; | ||
#else | ||
#import <Foundation/Foundation.h> | ||
#endif | ||
#import "SPUDownloaderProtocol.h" | ||
|
||
@protocol SPUDownloaderDelegate; | ||
|
||
// This object implements the protocol which we have defined. It provides the actual behavior for the service. It is 'exported' by the service to make it available to the process hosting the service over an NSXPCConnection. | ||
@interface SPUDownloader : NSObject <SPUDownloaderProtocol> | ||
|
||
// Due to XPC remote object reasons, this delegate is strongly referenced | ||
// Invoke cleanup when done with this instance | ||
- (instancetype)initWithDelegate:(id <SPUDownloaderDelegate>)delegate; | ||
|
||
@end |
38 changes: 38 additions & 0 deletions
38
SwinsianDiscord/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// SPUDownloaderDelegate.h | ||
// Sparkle | ||
// | ||
// Created by Mayur Pawashe on 4/1/16. | ||
// Copyright © 2016 Sparkle Project. All rights reserved. | ||
// | ||
|
||
#if __has_feature(modules) | ||
@import Foundation; | ||
#else | ||
#import <Foundation/Foundation.h> | ||
#endif | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@class SPUDownloadData; | ||
|
||
@protocol SPUDownloaderDelegate <NSObject> | ||
|
||
// This is only invoked for persistent downloads | ||
- (void)downloaderDidSetDestinationName:(NSString *)destinationName temporaryDirectory:(NSString *)temporaryDirectory; | ||
|
||
// Under rare cases, this may be called more than once, in which case the current progress should be reset back to 0 | ||
// This is only invoked for persistent downloads | ||
- (void)downloaderDidReceiveExpectedContentLength:(int64_t)expectedContentLength; | ||
|
||
// This is only invoked for persistent downloads | ||
- (void)downloaderDidReceiveDataOfLength:(uint64_t)length; | ||
|
||
// downloadData is nil if this is a persisent download, otherwise it's non-nil if it's a temporary download | ||
- (void)downloaderDidFinishWithTemporaryDownloadData:(SPUDownloadData * _Nullable)downloadData; | ||
|
||
- (void)downloaderDidFailWithError:(NSError *)error; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
13 changes: 13 additions & 0 deletions
13
SwinsianDiscord/Sparkle.framework/Versions/A/Headers/SPUDownloaderDeprecated.h
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// SPUDownloaderDeprecated.h | ||
// Sparkle | ||
// | ||
// Created by Deadpikle on 12/20/17. | ||
// Copyright © 2017 Sparkle Project. All rights reserved. | ||
// | ||
|
||
#import "SPUDownloader.h" | ||
|
||
@interface SPUDownloaderDeprecated : SPUDownloader <SPUDownloaderProtocol> | ||
|
||
@end |
Oops, something went wrong.