From d35d54170a5a125ec7e2ceb1177eb942a006f781 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 9 Jun 2023 00:51:30 -0700 Subject: [PATCH] Preparation for Xcode 15 Apparently, Xcode 15, at the point of the first beta, is not capable of producing nib files that will load on macOS 10.13 or 10.14 without crashing on startup. So this is the prep for now, raise the minimum deploy target to 10.15, where it currently works. This may change later. Signed-off-by: Christopher Snowhill --- Application/PlaybackController.m | 15 +- Application/PlaybackEventController.m | 200 +++++++----------- Audio/CogAudio.xcodeproj/project.pbxproj | 4 +- Cog.xcodeproj/project.pbxproj | 4 +- Equalizer/EqualizerWindowController.m | 7 +- .../libAdPlug.xcodeproj/project.pbxproj | 4 +- .../File_Extractor.xcodeproj/project.pbxproj | 4 +- Frameworks/GME/GME.xcodeproj/project.pbxproj | 6 +- .../HighlyAdvanced.xcodeproj/project.pbxproj | 6 +- .../project.pbxproj | 6 +- .../HighlyQuixotic.xcodeproj/project.pbxproj | 6 +- .../project.pbxproj | 6 +- .../HivelyPlayer.xcodeproj/project.pbxproj | 6 +- .../MPCDec/MPCDec.xcodeproj/project.pbxproj | 6 +- .../libOpenMPT.xcodeproj/project.pbxproj | 4 +- .../SSEQPlayer.xcodeproj/project.pbxproj | 6 +- .../Shorten/Shorten.xcodeproj/project.pbxproj | 6 +- .../TagLib/TagLib.xcodeproj/project.pbxproj | 6 +- .../WavPack/WavPack.xcodeproj/project.pbxproj | 6 +- .../g719/g719.xcodeproj/project.pbxproj | 4 +- .../lazyusf2.xcodeproj/project.pbxproj | 6 +- .../libatrac9.xcodeproj/project.pbxproj | 4 +- .../libcelt_0061.xcodeproj/project.pbxproj | 4 +- .../libcelt_0110.xcodeproj/project.pbxproj | 4 +- .../sidplayfp.xcodeproj/project.pbxproj | 4 +- .../mGBA/mGBA.xcodeproj/project.pbxproj | 6 +- .../midi_processing.xcodeproj/project.pbxproj | 6 +- .../psflib/psflib.xcodeproj/project.pbxproj | 6 +- Frameworks/shpakovski/MASShortcut | 2 +- .../libvgmstream.xcodeproj/project.pbxproj | 6 +- .../vio2sf/vio2sf.xcodeproj/project.pbxproj | 6 +- Plugins/APL/APL.xcodeproj/project.pbxproj | 6 +- .../AdPlug/AdPlug.xcodeproj/project.pbxproj | 4 +- .../ArchiveSource.xcodeproj/project.pbxproj | 6 +- .../CoreAudio.xcodeproj/project.pbxproj | 6 +- .../CueSheet.xcodeproj/project.pbxproj | 6 +- .../FFMPEG/FFMPEG.xcodeproj/project.pbxproj | 6 +- Plugins/FFMPEG/FFMPEGDecoder.m | 15 -- .../FileSource.xcodeproj/project.pbxproj | 6 +- Plugins/Flac/Flac.xcodeproj/project.pbxproj | 6 +- Plugins/GME/GME.xcodeproj/project.pbxproj | 6 +- .../HTTPSource.xcodeproj/project.pbxproj | 6 +- .../HighlyComplete.xcodeproj/project.pbxproj | 6 +- .../Hively/Hively.xcodeproj/project.pbxproj | 6 +- Plugins/M3u/M3u.xcodeproj/project.pbxproj | 6 +- Plugins/MAD/MAD.xcodeproj/project.pbxproj | 4 +- Plugins/MIDI/MIDI.xcodeproj/project.pbxproj | 6 +- .../Musepack.xcodeproj/project.pbxproj | 6 +- .../OpenMPT/OpenMPT.xcodeproj/project.pbxproj | 4 +- .../Opus/OpusPlugin.xcodeproj/project.pbxproj | 6 +- .../Organya/Organya.xcodeproj/project.pbxproj | 4 +- Plugins/Pls/Pls.xcodeproj/project.pbxproj | 6 +- .../Shorten/Shorten.xcodeproj/project.pbxproj | 6 +- .../SilenceDecoder.xcodeproj/project.pbxproj | 6 +- .../TagLib/TagLib.xcodeproj/project.pbxproj | 6 +- .../VorbisPlugin.xcodeproj/project.pbxproj | 6 +- .../WavPack/WavPack.xcodeproj/project.pbxproj | 6 +- .../libvgmPlayer.xcodeproj/project.pbxproj | 6 +- .../sidplay/sidplay.xcodeproj/project.pbxproj | 6 +- .../vgmstream.xcodeproj/project.pbxproj | 6 +- .../Preferences/GeneralPreferencesPlugin.m | 12 +- .../Preferences.xcodeproj/project.pbxproj | 4 +- Visualization/SpectrumViewSK.m | 13 -- Window/TimeField.m | 5 +- 64 files changed, 245 insertions(+), 330 deletions(-) diff --git a/Application/PlaybackController.m b/Application/PlaybackController.m index 02f6457b0..c8d71d5f6 100644 --- a/Application/PlaybackController.m +++ b/Application/PlaybackController.m @@ -785,15 +785,12 @@ NSDictionary *makeRGInfo(PlaylistEntry *pe) { if(entry.album && [entry.album length]) [songInfo setObject:entry.album forKey:MPMediaItemPropertyAlbumTitle]; if(entry.albumArt) { - // can't do && with @available - if(@available(macOS 10.13.2, *)) { - CGSize artworkSize = CGSizeMake(500, 500); - MPMediaItemArtwork *mpArtwork = [[MPMediaItemArtwork alloc] initWithBoundsSize:artworkSize - requestHandler:^NSImage *_Nonnull(CGSize size) { - return entry.albumArt; - }]; - [songInfo setObject:mpArtwork forKey:MPMediaItemPropertyArtwork]; - } + CGSize artworkSize = CGSizeMake(500, 500); + MPMediaItemArtwork *mpArtwork = [[MPMediaItemArtwork alloc] initWithBoundsSize:artworkSize + requestHandler:^NSImage *_Nonnull(CGSize size) { + return entry.albumArt; + }]; + [songInfo setObject:mpArtwork forKey:MPMediaItemPropertyArtwork]; } // I don't know what NPIC does with these since they aren't exposed in UI, but if we have them, use it. // There's a bunch of other metadata, but PlaylistEntry can't represent a lot of it. diff --git a/Application/PlaybackEventController.m b/Application/PlaybackEventController.m index d14cbcd5b..d4bf4b07f 100644 --- a/Application/PlaybackEventController.m +++ b/Application/PlaybackEventController.m @@ -31,7 +31,7 @@ typedef NS_ENUM(NSInteger, TrackStatus) { TrackPlaying, PlaylistEntry *entry; - Boolean didGainUN API_AVAILABLE(macosx(10.14)); + Boolean didGainUN; } - (void)initDefaults { @@ -51,32 +51,30 @@ typedef NS_ENUM(NSInteger, TrackStatus) { TrackPlaying, didGainUN = NO; - if(@available(macOS 10.14, *)) { - UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter]; - [center - requestAuthorizationWithOptions:UNAuthorizationOptionAlert - completionHandler:^(BOOL granted, NSError *_Nullable error) { - self->didGainUN = granted; + UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter]; + [center + requestAuthorizationWithOptions:UNAuthorizationOptionAlert + completionHandler:^(BOOL granted, NSError *_Nullable error) { + self->didGainUN = granted; - if(granted) { - UNNotificationAction *skipAction = [UNNotificationAction - actionWithIdentifier:@"skip" - title:@"Skip" - options:UNNotificationActionOptionNone]; + if(granted) { + UNNotificationAction *skipAction = [UNNotificationAction + actionWithIdentifier:@"skip" + title:@"Skip" + options:UNNotificationActionOptionNone]; - UNNotificationCategory *playCategory = [UNNotificationCategory - categoryWithIdentifier:@"play" - actions:@[skipAction] - intentIdentifiers:@[] - options:UNNotificationCategoryOptionNone]; + UNNotificationCategory *playCategory = [UNNotificationCategory + categoryWithIdentifier:@"play" + actions:@[skipAction] + intentIdentifiers:@[] + options:UNNotificationCategoryOptionNone]; - [center setNotificationCategories: - [NSSet setWithObject:playCategory]]; - } - }]; + [center setNotificationCategories: + [NSSet setWithObject:playCategory]]; + } + }]; - [center setDelegate:self]; - } + [center setDelegate:self]; queue = [[NSOperationQueue alloc] init]; [queue setMaxConcurrentOperationCount:1]; @@ -105,6 +103,7 @@ didReceiveNotificationResponse:(UNNotificationResponse *)response if([[response actionIdentifier] isEqualToString:@"skip"]) { [playbackController next:self]; } + completionHandler(); } #if 0 @@ -160,91 +159,14 @@ didReceiveNotificationResponse:(UNNotificationResponse *)response NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; if([defaults boolForKey:@"notifications.enable"]) { - if(@available(macOS 10.14, *)) { - if(didGainUN) { - UNUserNotificationCenter *center = - [UNUserNotificationCenter currentNotificationCenter]; + if(didGainUN) { + UNUserNotificationCenter *center = + [UNUserNotificationCenter currentNotificationCenter]; - UNMutableNotificationContent *content = - [[UNMutableNotificationContent alloc] init]; + UNMutableNotificationContent *content = + [[UNMutableNotificationContent alloc] init]; - content.title = @"Now Playing"; - - NSString *subtitle; - NSString *artist = (pe.artist && [pe.artist length]) ? pe.artist : nil; - NSString *album = (pe.album && [pe.album length]) ? pe.album : nil; - if(artist && album) { - subtitle = [NSString stringWithFormat:@"%@ - %@", artist, album]; - } else if(artist) { - subtitle = artist; - } else if(album) { - subtitle = album; - } else { - subtitle = @""; - } - - NSString *body = [NSString stringWithFormat:@"%@\n%@", [pe title], subtitle]; - content.body = body; - content.sound = nil; - content.categoryIdentifier = @"play"; - - if([defaults boolForKey:@"notifications.show-album-art"] && - [pe albumArt]) { - NSError *error = nil; - NSFileManager *fileManager = [NSFileManager defaultManager]; - NSURL *tmpSubFolderURL = [[NSURL fileURLWithPath:NSTemporaryDirectory()] - URLByAppendingPathComponent:@"cog-artworks-cache" - isDirectory:true]; - if([fileManager createDirectoryAtPath:[tmpSubFolderURL path] - withIntermediateDirectories:true - attributes:nil - error:&error]) { - NSString *tmpFileName = - [[NSProcessInfo.processInfo globallyUniqueString] - stringByAppendingString:@".jpg"]; - NSURL *fileURL = - [tmpSubFolderURL URLByAppendingPathComponent:tmpFileName]; - NSImage *image = [pe albumArt]; - CGImageRef cgRef = [image CGImageForProposedRect:NULL - context:nil - hints:nil]; - - if(cgRef) { - NSBitmapImageRep *newRep = - [[NSBitmapImageRep alloc] initWithCGImage:cgRef]; - NSData *jpgData = [newRep - representationUsingType:NSBitmapImageFileTypeJPEG - properties:@{ NSImageCompressionFactor: @0.5f }]; - [jpgData writeToURL:fileURL atomically:YES]; - - UNNotificationAttachment *icon = - [UNNotificationAttachment attachmentWithIdentifier:@"art" - URL:fileURL - options:nil - error:&error]; - if(error) { - // We have size limit of 10MB per image attachment. - NSLog(@"%@", error.localizedDescription); - } else { - content.attachments = @[icon]; - } - } - } - } - - UNNotificationRequest *request = - [UNNotificationRequest requestWithIdentifier:@"PlayTrack" - content:content - trigger:nil]; - - [center addNotificationRequest:request - withCompletionHandler:^(NSError *_Nullable error) { - NSLog(@"%@", error.localizedDescription); - }]; - } - } else { - NSUserNotification *notif = [[NSUserNotification alloc] init]; - notif.title = [pe title]; + content.title = @"Now Playing"; NSString *subtitle; NSString *artist = (pe.artist && [pe.artist length]) ? pe.artist : nil; @@ -259,30 +181,64 @@ didReceiveNotificationResponse:(UNNotificationResponse *)response subtitle = @""; } - if([defaults boolForKey:@"notifications.itunes-style"]) { - notif.subtitle = subtitle; - [notif setValue:@YES forKey:@"_showsButtons"]; - } else { - notif.informativeText = subtitle; - } + NSString *body = [NSString stringWithFormat:@"%@\n%@", [pe title], subtitle]; + content.body = body; + content.sound = nil; + content.categoryIdentifier = @"play"; - if([notif respondsToSelector:@selector(setContentImage:)]) { - if([defaults boolForKey:@"notifications.show-album-art"] && - [pe albumArtInternal]) { + if([defaults boolForKey:@"notifications.show-album-art"] && + [pe albumArt]) { + NSError *error = nil; + NSFileManager *fileManager = [NSFileManager defaultManager]; + NSURL *tmpSubFolderURL = [[NSURL fileURLWithPath:NSTemporaryDirectory()] + URLByAppendingPathComponent:@"cog-artworks-cache" + isDirectory:true]; + if([fileManager createDirectoryAtPath:[tmpSubFolderURL path] + withIntermediateDirectories:true + attributes:nil + error:&error]) { + NSString *tmpFileName = + [[NSProcessInfo.processInfo globallyUniqueString] + stringByAppendingString:@".jpg"]; + NSURL *fileURL = + [tmpSubFolderURL URLByAppendingPathComponent:tmpFileName]; NSImage *image = [pe albumArt]; + CGImageRef cgRef = [image CGImageForProposedRect:NULL + context:nil + hints:nil]; - if([defaults boolForKey:@"notifications.itunes-style"]) { - [notif setValue:image forKey:@"_identityImage"]; - } else { - notif.contentImage = image; + if(cgRef) { + NSBitmapImageRep *newRep = + [[NSBitmapImageRep alloc] initWithCGImage:cgRef]; + NSData *jpgData = [newRep + representationUsingType:NSBitmapImageFileTypeJPEG + properties:@{ NSImageCompressionFactor: @0.5f }]; + [jpgData writeToURL:fileURL atomically:YES]; + + UNNotificationAttachment *icon = + [UNNotificationAttachment attachmentWithIdentifier:@"art" + URL:fileURL + options:nil + error:&error]; + if(error) { + // We have size limit of 10MB per image attachment. + NSLog(@"%@", error.localizedDescription); + } else { + content.attachments = @[icon]; + } } } } - notif.actionButtonTitle = NSLocalizedString(@"SkipAction", @""); + UNNotificationRequest *request = + [UNNotificationRequest requestWithIdentifier:@"PlayTrack" + content:content + trigger:nil]; - [[NSUserNotificationCenter defaultUserNotificationCenter] - scheduleNotification:notif]; + [center addNotificationRequest:request + withCompletionHandler:^(NSError *_Nullable error) { + NSLog(@"%@", error.localizedDescription); + }]; } } } diff --git a/Audio/CogAudio.xcodeproj/project.pbxproj b/Audio/CogAudio.xcodeproj/project.pbxproj index 78666f352..21f9a37fa 100644 --- a/Audio/CogAudio.xcodeproj/project.pbxproj +++ b/Audio/CogAudio.xcodeproj/project.pbxproj @@ -746,7 +746,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -791,7 +791,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Cog.xcodeproj/project.pbxproj b/Cog.xcodeproj/project.pbxproj index b2adaca86..88efa97b6 100644 --- a/Cog.xcodeproj/project.pbxproj +++ b/Cog.xcodeproj/project.pbxproj @@ -3148,7 +3148,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; }; @@ -3191,7 +3191,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; SDKROOT = macosx; SWIFT_COMPILATION_MODE = wholemodule; }; diff --git a/Equalizer/EqualizerWindowController.m b/Equalizer/EqualizerWindowController.m index 9026263ea..0e6b07133 100644 --- a/Equalizer/EqualizerWindowController.m +++ b/Equalizer/EqualizerWindowController.m @@ -137,12 +137,7 @@ static void loadPresets(void) { if(fileHandle) { NSError *err; NSData *data; - if(@available(macOS 10.15, *)) { - data = [fileHandle readDataToEndOfFileAndReturnError:&err]; - } else { - data = [fileHandle readDataToEndOfFile]; - err = nil; - } + data = [fileHandle readDataToEndOfFileAndReturnError:&err]; if(!err && data) { equalizer_presets = json_parse(data.bytes, data.length); diff --git a/Frameworks/AdPlug/libAdPlug.xcodeproj/project.pbxproj b/Frameworks/AdPlug/libAdPlug.xcodeproj/project.pbxproj index 27ef01340..27ea6e597 100644 --- a/Frameworks/AdPlug/libAdPlug.xcodeproj/project.pbxproj +++ b/Frameworks/AdPlug/libAdPlug.xcodeproj/project.pbxproj @@ -740,7 +740,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -799,7 +799,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Frameworks/File_Extractor/File_Extractor.xcodeproj/project.pbxproj b/Frameworks/File_Extractor/File_Extractor.xcodeproj/project.pbxproj index f01b03518..47a93232a 100644 --- a/Frameworks/File_Extractor/File_Extractor.xcodeproj/project.pbxproj +++ b/Frameworks/File_Extractor/File_Extractor.xcodeproj/project.pbxproj @@ -810,7 +810,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -862,7 +862,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/GME/GME.xcodeproj/project.pbxproj b/Frameworks/GME/GME.xcodeproj/project.pbxproj index 18ecf6b09..ca1a81539 100644 --- a/Frameworks/GME/GME.xcodeproj/project.pbxproj +++ b/Frameworks/GME/GME.xcodeproj/project.pbxproj @@ -630,7 +630,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8DC2EF4F0486A6940098B216 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -845,7 +845,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OBJROOT = ../../build; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -892,7 +892,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OBJROOT = ../../build; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Frameworks/HighlyAdvanced/HighlyAdvanced.xcodeproj/project.pbxproj b/Frameworks/HighlyAdvanced/HighlyAdvanced.xcodeproj/project.pbxproj index 0941c6083..b69d0c037 100644 --- a/Frameworks/HighlyAdvanced/HighlyAdvanced.xcodeproj/project.pbxproj +++ b/Frameworks/HighlyAdvanced/HighlyAdvanced.xcodeproj/project.pbxproj @@ -252,7 +252,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8343793417F97BDB00584396 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -374,7 +374,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -425,7 +425,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/HighlyExperimental/HighlyExperimental.xcodeproj/project.pbxproj b/Frameworks/HighlyExperimental/HighlyExperimental.xcodeproj/project.pbxproj index d9c307a9a..ad5d663bb 100644 --- a/Frameworks/HighlyExperimental/HighlyExperimental.xcodeproj/project.pbxproj +++ b/Frameworks/HighlyExperimental/HighlyExperimental.xcodeproj/project.pbxproj @@ -191,7 +191,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8360EF0F17F92C91005208A4 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -312,7 +312,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -363,7 +363,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; }; diff --git a/Frameworks/HighlyQuixotic/HighlyQuixotic.xcodeproj/project.pbxproj b/Frameworks/HighlyQuixotic/HighlyQuixotic.xcodeproj/project.pbxproj index c7c86fc67..031e5c4a2 100644 --- a/Frameworks/HighlyQuixotic/HighlyQuixotic.xcodeproj/project.pbxproj +++ b/Frameworks/HighlyQuixotic/HighlyQuixotic.xcodeproj/project.pbxproj @@ -163,7 +163,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 834378DD17F96E2600584396 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -282,7 +282,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -340,7 +340,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/HighlyTheoretical/HighlyTheoretical.xcodeproj/project.pbxproj b/Frameworks/HighlyTheoretical/HighlyTheoretical.xcodeproj/project.pbxproj index c3a3d85dc..b2b9e60ae 100644 --- a/Frameworks/HighlyTheoretical/HighlyTheoretical.xcodeproj/project.pbxproj +++ b/Frameworks/HighlyTheoretical/HighlyTheoretical.xcodeproj/project.pbxproj @@ -205,7 +205,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8343786D17F9658E00584396 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -330,7 +330,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -390,7 +390,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/HivelyPlayer/HivelyPlayer.xcodeproj/project.pbxproj b/Frameworks/HivelyPlayer/HivelyPlayer.xcodeproj/project.pbxproj index 4a107db8a..40df7c953 100644 --- a/Frameworks/HivelyPlayer/HivelyPlayer.xcodeproj/project.pbxproj +++ b/Frameworks/HivelyPlayer/HivelyPlayer.xcodeproj/project.pbxproj @@ -145,7 +145,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 836FB555182053D700B3AD2D = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -259,7 +259,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -312,7 +312,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/MPCDec/MPCDec.xcodeproj/project.pbxproj b/Frameworks/MPCDec/MPCDec.xcodeproj/project.pbxproj index 5be79cec2..2ec037703 100644 --- a/Frameworks/MPCDec/MPCDec.xcodeproj/project.pbxproj +++ b/Frameworks/MPCDec/MPCDec.xcodeproj/project.pbxproj @@ -245,7 +245,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8DC2EF4F0486A6940098B216 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -407,7 +407,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -452,7 +452,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/OpenMPT/libOpenMPT.xcodeproj/project.pbxproj b/Frameworks/OpenMPT/libOpenMPT.xcodeproj/project.pbxproj index ea487342e..fe654fcad 100644 --- a/Frameworks/OpenMPT/libOpenMPT.xcodeproj/project.pbxproj +++ b/Frameworks/OpenMPT/libOpenMPT.xcodeproj/project.pbxproj @@ -2620,7 +2620,7 @@ OpenMPT/src, OpenMPT/build/svn_version, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -2693,7 +2693,7 @@ OpenMPT/src, OpenMPT/build/svn_version, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Frameworks/SSEQPlayer/SSEQPlayer.xcodeproj/project.pbxproj b/Frameworks/SSEQPlayer/SSEQPlayer.xcodeproj/project.pbxproj index 3f6d3219b..59088e93a 100644 --- a/Frameworks/SSEQPlayer/SSEQPlayer.xcodeproj/project.pbxproj +++ b/Frameworks/SSEQPlayer/SSEQPlayer.xcodeproj/project.pbxproj @@ -254,7 +254,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83848FB71807623F00E7332D = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -379,7 +379,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -430,7 +430,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/Shorten/Shorten.xcodeproj/project.pbxproj b/Frameworks/Shorten/Shorten.xcodeproj/project.pbxproj index dd5845e68..a9f67d09c 100644 --- a/Frameworks/Shorten/Shorten.xcodeproj/project.pbxproj +++ b/Frameworks/Shorten/Shorten.xcodeproj/project.pbxproj @@ -189,7 +189,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8DC2EF4F0486A6940098B216 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -357,7 +357,7 @@ ../../include, include, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -409,7 +409,7 @@ ../../include, include, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/TagLib/TagLib.xcodeproj/project.pbxproj b/Frameworks/TagLib/TagLib.xcodeproj/project.pbxproj index f03b6b1d4..c3b47c240 100644 --- a/Frameworks/TagLib/TagLib.xcodeproj/project.pbxproj +++ b/Frameworks/TagLib/TagLib.xcodeproj/project.pbxproj @@ -985,7 +985,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8DC2EF4F0486A6940098B216 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -1218,7 +1218,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( "-DHAVE_CONFIG_H", @@ -1269,7 +1269,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = ( "-DHAVE_CONFIG_H", "-Wframe-larger-than=4000", diff --git a/Frameworks/WavPack/WavPack.xcodeproj/project.pbxproj b/Frameworks/WavPack/WavPack.xcodeproj/project.pbxproj index 5f4e150d6..c36c06c51 100644 --- a/Frameworks/WavPack/WavPack.xcodeproj/project.pbxproj +++ b/Frameworks/WavPack/WavPack.xcodeproj/project.pbxproj @@ -261,7 +261,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8DC2EF4F0486A6940098B216 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -468,7 +468,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -514,7 +514,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/g719/g719.xcodeproj/project.pbxproj b/Frameworks/g719/g719.xcodeproj/project.pbxproj index a43c52f74..d7e460e45 100644 --- a/Frameworks/g719/g719.xcodeproj/project.pbxproj +++ b/Frameworks/g719/g719.xcodeproj/project.pbxproj @@ -351,7 +351,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -405,7 +405,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Frameworks/lazyusf2/lazyusf2.xcodeproj/project.pbxproj b/Frameworks/lazyusf2/lazyusf2.xcodeproj/project.pbxproj index 52cfc464c..35efdb789 100644 --- a/Frameworks/lazyusf2/lazyusf2.xcodeproj/project.pbxproj +++ b/Frameworks/lazyusf2/lazyusf2.xcodeproj/project.pbxproj @@ -962,7 +962,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83C8B62118AF57770071B040 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -1122,7 +1122,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -1174,7 +1174,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/libatrac9/libatrac9.xcodeproj/project.pbxproj b/Frameworks/libatrac9/libatrac9.xcodeproj/project.pbxproj index 8d07d36d6..61ec054fc 100644 --- a/Frameworks/libatrac9/libatrac9.xcodeproj/project.pbxproj +++ b/Frameworks/libatrac9/libatrac9.xcodeproj/project.pbxproj @@ -299,7 +299,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -359,7 +359,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; diff --git a/Frameworks/libcelt_0061/libcelt_0061/libcelt_0061.xcodeproj/project.pbxproj b/Frameworks/libcelt_0061/libcelt_0061/libcelt_0061.xcodeproj/project.pbxproj index b7b153282..33d7efc08 100644 --- a/Frameworks/libcelt_0061/libcelt_0061/libcelt_0061.xcodeproj/project.pbxproj +++ b/Frameworks/libcelt_0061/libcelt_0061/libcelt_0061.xcodeproj/project.pbxproj @@ -434,7 +434,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -536,7 +536,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; diff --git a/Frameworks/libcelt_0110/libcelt_0110/libcelt_0110.xcodeproj/project.pbxproj b/Frameworks/libcelt_0110/libcelt_0110/libcelt_0110.xcodeproj/project.pbxproj index e4cd0cbb0..57bb870f5 100644 --- a/Frameworks/libcelt_0110/libcelt_0110/libcelt_0110.xcodeproj/project.pbxproj +++ b/Frameworks/libcelt_0110/libcelt_0110/libcelt_0110.xcodeproj/project.pbxproj @@ -422,7 +422,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -524,7 +524,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; diff --git a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj index 6dc90061d..f6b2e88ed 100644 --- a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj +++ b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj @@ -1311,7 +1311,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -1371,7 +1371,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; diff --git a/Frameworks/mGBA/mGBA.xcodeproj/project.pbxproj b/Frameworks/mGBA/mGBA.xcodeproj/project.pbxproj index 2bc86b274..8a1f4a5dd 100644 --- a/Frameworks/mGBA/mGBA.xcodeproj/project.pbxproj +++ b/Frameworks/mGBA/mGBA.xcodeproj/project.pbxproj @@ -1108,7 +1108,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83CA24121D7BC47C00F2EA53 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -1264,7 +1264,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -1322,7 +1322,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Frameworks/midi_processing/midi_processing.xcodeproj/project.pbxproj b/Frameworks/midi_processing/midi_processing.xcodeproj/project.pbxproj index c819470d4..0c8a3e883 100644 --- a/Frameworks/midi_processing/midi_processing.xcodeproj/project.pbxproj +++ b/Frameworks/midi_processing/midi_processing.xcodeproj/project.pbxproj @@ -175,7 +175,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83B066AB180D56B9008E3612 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -300,7 +300,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -353,7 +353,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/psflib/psflib.xcodeproj/project.pbxproj b/Frameworks/psflib/psflib.xcodeproj/project.pbxproj index 4f79b311b..32aa47ea4 100644 --- a/Frameworks/psflib/psflib.xcodeproj/project.pbxproj +++ b/Frameworks/psflib/psflib.xcodeproj/project.pbxproj @@ -149,7 +149,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8343781B17F93CB500584396 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -263,7 +263,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -314,7 +314,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/shpakovski/MASShortcut b/Frameworks/shpakovski/MASShortcut index c18b3480f..0320f20c5 160000 --- a/Frameworks/shpakovski/MASShortcut +++ b/Frameworks/shpakovski/MASShortcut @@ -1 +1 @@ -Subproject commit c18b3480f28509a7728f0cf9f1c3679ca297b7cf +Subproject commit 0320f20c59a1825645475abe146253e25e20b43c diff --git a/Frameworks/vgmstream/libvgmstream.xcodeproj/project.pbxproj b/Frameworks/vgmstream/libvgmstream.xcodeproj/project.pbxproj index b4f9d7c0b..60c454a34 100644 --- a/Frameworks/vgmstream/libvgmstream.xcodeproj/project.pbxproj +++ b/Frameworks/vgmstream/libvgmstream.xcodeproj/project.pbxproj @@ -2728,7 +2728,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 836F6B3818BDB8880095E648 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -3503,7 +3503,7 @@ ../../ThirdParty/vorbis/lib, ../../ThirdParty/mpg123/lib, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -3588,7 +3588,7 @@ ../../ThirdParty/vorbis/lib, ../../ThirdParty/mpg123/lib, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Frameworks/vio2sf/vio2sf.xcodeproj/project.pbxproj b/Frameworks/vio2sf/vio2sf.xcodeproj/project.pbxproj index 8c77a5fb1..dace28005 100644 --- a/Frameworks/vio2sf/vio2sf.xcodeproj/project.pbxproj +++ b/Frameworks/vio2sf/vio2sf.xcodeproj/project.pbxproj @@ -298,7 +298,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83DE0C05180A9BD400269051 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -427,7 +427,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -479,7 +479,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/APL/APL.xcodeproj/project.pbxproj b/Plugins/APL/APL.xcodeproj/project.pbxproj index bbe69f76b..58b6fca67 100644 --- a/Plugins/APL/APL.xcodeproj/project.pbxproj +++ b/Plugins/APL/APL.xcodeproj/project.pbxproj @@ -158,7 +158,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 99B989F30CC7E10400C256E9 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -241,7 +241,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -286,7 +286,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/AdPlug/AdPlug.xcodeproj/project.pbxproj b/Plugins/AdPlug/AdPlug.xcodeproj/project.pbxproj index b9f8006fc..1fc668dba 100644 --- a/Plugins/AdPlug/AdPlug.xcodeproj/project.pbxproj +++ b/Plugins/AdPlug/AdPlug.xcodeproj/project.pbxproj @@ -308,7 +308,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -363,7 +363,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Plugins/ArchiveSource/ArchiveSource.xcodeproj/project.pbxproj b/Plugins/ArchiveSource/ArchiveSource.xcodeproj/project.pbxproj index cc32e0bd9..410fede2f 100644 --- a/Plugins/ArchiveSource/ArchiveSource.xcodeproj/project.pbxproj +++ b/Plugins/ArchiveSource/ArchiveSource.xcodeproj/project.pbxproj @@ -180,7 +180,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8359FF1617FEF35C0060F3ED = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -317,7 +317,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -369,7 +369,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/CoreAudio/CoreAudio.xcodeproj/project.pbxproj b/Plugins/CoreAudio/CoreAudio.xcodeproj/project.pbxproj index f56e90efd..f19adda07 100644 --- a/Plugins/CoreAudio/CoreAudio.xcodeproj/project.pbxproj +++ b/Plugins/CoreAudio/CoreAudio.xcodeproj/project.pbxproj @@ -162,7 +162,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Automatic; }; }; @@ -284,7 +284,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -329,7 +329,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/CueSheet/CueSheet.xcodeproj/project.pbxproj b/Plugins/CueSheet/CueSheet.xcodeproj/project.pbxproj index 0773c7d69..37b993f99 100644 --- a/Plugins/CueSheet/CueSheet.xcodeproj/project.pbxproj +++ b/Plugins/CueSheet/CueSheet.xcodeproj/project.pbxproj @@ -186,7 +186,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -332,7 +332,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -377,7 +377,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/FFMPEG/FFMPEG.xcodeproj/project.pbxproj b/Plugins/FFMPEG/FFMPEG.xcodeproj/project.pbxproj index 54b306c73..db1de3ae3 100644 --- a/Plugins/FFMPEG/FFMPEG.xcodeproj/project.pbxproj +++ b/Plugins/FFMPEG/FFMPEG.xcodeproj/project.pbxproj @@ -243,7 +243,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -371,7 +371,7 @@ ../../ThirdParty/ffmpeg/lib, "../../ThirdParty/fdk-aac/lib", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -420,7 +420,7 @@ ../../ThirdParty/ffmpeg/lib, "../../ThirdParty/fdk-aac/lib", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/FFMPEG/FFMPEGDecoder.m b/Plugins/FFMPEG/FFMPEGDecoder.m index 7676e3cd2..218c09975 100644 --- a/Plugins/FFMPEG/FFMPEGDecoder.m +++ b/Plugins/FFMPEG/FFMPEGDecoder.m @@ -244,21 +244,6 @@ static uint8_t reverse_bits[0x100]; if(!codec && !rawDSD) codec = avcodec_find_decoder(codec_id); - if(@available(macOS 10.15, *)) { - } else { - if(codec && codec->name) { - const char *name = codec->name; - size_t name_len = strlen(name); - if(name_len > 3) { - name += name_len - 3; - if(!strcmp(name, "_at")) { - ALog(@"AudioToolbox decoder picked on old macOS, disabling: %s", codec->name); - codec = NULL; // Disable AudioToolbox codecs on Mojave and older - } - } - } - } - if(!codec && !rawDSD) { ALog(@"codec not found"); av_dict_free(&dict); diff --git a/Plugins/FileSource/FileSource.xcodeproj/project.pbxproj b/Plugins/FileSource/FileSource.xcodeproj/project.pbxproj index 7aeb9f2a8..ce48c05fb 100644 --- a/Plugins/FileSource/FileSource.xcodeproj/project.pbxproj +++ b/Plugins/FileSource/FileSource.xcodeproj/project.pbxproj @@ -184,7 +184,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -329,7 +329,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -374,7 +374,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/Flac/Flac.xcodeproj/project.pbxproj b/Plugins/Flac/Flac.xcodeproj/project.pbxproj index 111031023..1266a39f9 100644 --- a/Plugins/Flac/Flac.xcodeproj/project.pbxproj +++ b/Plugins/Flac/Flac.xcodeproj/project.pbxproj @@ -181,7 +181,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -319,7 +319,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -364,7 +364,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/GME/GME.xcodeproj/project.pbxproj b/Plugins/GME/GME.xcodeproj/project.pbxproj index 895a0fc8f..74dca4ee8 100644 --- a/Plugins/GME/GME.xcodeproj/project.pbxproj +++ b/Plugins/GME/GME.xcodeproj/project.pbxproj @@ -222,7 +222,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -391,7 +391,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OBJROOT = ../../build; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -437,7 +437,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OBJROOT = ../../build; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Plugins/HTTPSource/HTTPSource.xcodeproj/project.pbxproj b/Plugins/HTTPSource/HTTPSource.xcodeproj/project.pbxproj index f2db0467d..d0babc480 100644 --- a/Plugins/HTTPSource/HTTPSource.xcodeproj/project.pbxproj +++ b/Plugins/HTTPSource/HTTPSource.xcodeproj/project.pbxproj @@ -179,7 +179,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -307,7 +307,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -352,7 +352,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/HighlyComplete/HighlyComplete.xcodeproj/project.pbxproj b/Plugins/HighlyComplete/HighlyComplete.xcodeproj/project.pbxproj index 54f1ac4f4..9937c3cda 100644 --- a/Plugins/HighlyComplete/HighlyComplete.xcodeproj/project.pbxproj +++ b/Plugins/HighlyComplete/HighlyComplete.xcodeproj/project.pbxproj @@ -425,7 +425,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8360EEE317F92AC8005208A4 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -684,7 +684,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -735,7 +735,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/Hively/Hively.xcodeproj/project.pbxproj b/Plugins/Hively/Hively.xcodeproj/project.pbxproj index 962468a26..6b9b2236d 100644 --- a/Plugins/Hively/Hively.xcodeproj/project.pbxproj +++ b/Plugins/Hively/Hively.xcodeproj/project.pbxproj @@ -198,7 +198,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 836FB52C1820538700B3AD2D = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -337,7 +337,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -390,7 +390,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/M3u/M3u.xcodeproj/project.pbxproj b/Plugins/M3u/M3u.xcodeproj/project.pbxproj index b5e554e30..b0440ec68 100644 --- a/Plugins/M3u/M3u.xcodeproj/project.pbxproj +++ b/Plugins/M3u/M3u.xcodeproj/project.pbxproj @@ -160,7 +160,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -305,7 +305,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -349,7 +349,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/MAD/MAD.xcodeproj/project.pbxproj b/Plugins/MAD/MAD.xcodeproj/project.pbxproj index 1511cc505..4ebd04308 100644 --- a/Plugins/MAD/MAD.xcodeproj/project.pbxproj +++ b/Plugins/MAD/MAD.xcodeproj/project.pbxproj @@ -224,7 +224,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -281,7 +281,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; diff --git a/Plugins/MIDI/MIDI.xcodeproj/project.pbxproj b/Plugins/MIDI/MIDI.xcodeproj/project.pbxproj index de7e4c92e..6fe403af2 100644 --- a/Plugins/MIDI/MIDI.xcodeproj/project.pbxproj +++ b/Plugins/MIDI/MIDI.xcodeproj/project.pbxproj @@ -399,7 +399,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83B06686180D5668008E3612 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -554,7 +554,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -607,7 +607,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/Musepack/Musepack.xcodeproj/project.pbxproj b/Plugins/Musepack/Musepack.xcodeproj/project.pbxproj index 062f2df76..a5300face 100644 --- a/Plugins/Musepack/Musepack.xcodeproj/project.pbxproj +++ b/Plugins/Musepack/Musepack.xcodeproj/project.pbxproj @@ -199,7 +199,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -357,7 +357,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -402,7 +402,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/OpenMPT/OpenMPT.xcodeproj/project.pbxproj b/Plugins/OpenMPT/OpenMPT.xcodeproj/project.pbxproj index 7d9ff7b8a..0da0cd3af 100644 --- a/Plugins/OpenMPT/OpenMPT.xcodeproj/project.pbxproj +++ b/Plugins/OpenMPT/OpenMPT.xcodeproj/project.pbxproj @@ -301,7 +301,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -356,7 +356,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Plugins/Opus/OpusPlugin.xcodeproj/project.pbxproj b/Plugins/Opus/OpusPlugin.xcodeproj/project.pbxproj index ca3f2aaec..20609d105 100644 --- a/Plugins/Opus/OpusPlugin.xcodeproj/project.pbxproj +++ b/Plugins/Opus/OpusPlugin.xcodeproj/project.pbxproj @@ -171,7 +171,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8375B03B17FFEA400092A79F = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -286,7 +286,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -339,7 +339,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/Organya/Organya.xcodeproj/project.pbxproj b/Plugins/Organya/Organya.xcodeproj/project.pbxproj index 63aba7dec..8587fbc66 100644 --- a/Plugins/Organya/Organya.xcodeproj/project.pbxproj +++ b/Plugins/Organya/Organya.xcodeproj/project.pbxproj @@ -240,7 +240,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -292,7 +292,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = macosx; diff --git a/Plugins/Pls/Pls.xcodeproj/project.pbxproj b/Plugins/Pls/Pls.xcodeproj/project.pbxproj index 9fee66330..071224ff1 100644 --- a/Plugins/Pls/Pls.xcodeproj/project.pbxproj +++ b/Plugins/Pls/Pls.xcodeproj/project.pbxproj @@ -160,7 +160,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -302,7 +302,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -346,7 +346,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/Shorten/Shorten.xcodeproj/project.pbxproj b/Plugins/Shorten/Shorten.xcodeproj/project.pbxproj index 47969b875..5ff27688c 100644 --- a/Plugins/Shorten/Shorten.xcodeproj/project.pbxproj +++ b/Plugins/Shorten/Shorten.xcodeproj/project.pbxproj @@ -197,7 +197,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -355,7 +355,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -400,7 +400,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/SilenceDecoder/SilenceDecoder.xcodeproj/project.pbxproj b/Plugins/SilenceDecoder/SilenceDecoder.xcodeproj/project.pbxproj index cfacdd62b..808aceaad 100644 --- a/Plugins/SilenceDecoder/SilenceDecoder.xcodeproj/project.pbxproj +++ b/Plugins/SilenceDecoder/SilenceDecoder.xcodeproj/project.pbxproj @@ -116,7 +116,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 83F9D7E61A884B44007ABEC2 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -211,7 +211,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -263,7 +263,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Plugins/TagLib/TagLib.xcodeproj/project.pbxproj b/Plugins/TagLib/TagLib.xcodeproj/project.pbxproj index 2c37e4936..f83e3b7ec 100644 --- a/Plugins/TagLib/TagLib.xcodeproj/project.pbxproj +++ b/Plugins/TagLib/TagLib.xcodeproj/project.pbxproj @@ -230,7 +230,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -393,7 +393,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -439,7 +439,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/Vorbis/VorbisPlugin.xcodeproj/project.pbxproj b/Plugins/Vorbis/VorbisPlugin.xcodeproj/project.pbxproj index 34bda02fa..b3fca9683 100644 --- a/Plugins/Vorbis/VorbisPlugin.xcodeproj/project.pbxproj +++ b/Plugins/Vorbis/VorbisPlugin.xcodeproj/project.pbxproj @@ -215,7 +215,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -369,7 +369,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -414,7 +414,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/WavPack/WavPack.xcodeproj/project.pbxproj b/Plugins/WavPack/WavPack.xcodeproj/project.pbxproj index e6b8b09ae..0d94fa546 100644 --- a/Plugins/WavPack/WavPack.xcodeproj/project.pbxproj +++ b/Plugins/WavPack/WavPack.xcodeproj/project.pbxproj @@ -199,7 +199,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -359,7 +359,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -404,7 +404,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Plugins/libvgmPlayer/libvgmPlayer.xcodeproj/project.pbxproj b/Plugins/libvgmPlayer/libvgmPlayer.xcodeproj/project.pbxproj index 4ff1132f8..332542fa8 100644 --- a/Plugins/libvgmPlayer/libvgmPlayer.xcodeproj/project.pbxproj +++ b/Plugins/libvgmPlayer/libvgmPlayer.xcodeproj/project.pbxproj @@ -213,7 +213,7 @@ LastUpgradeCheck = 1400; TargetAttributes = { 8D5B49AC048680CD000E48DA = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -362,7 +362,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OBJROOT = ../../build; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -408,7 +408,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OBJROOT = ../../build; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj b/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj index 62ae65d4f..e82d04c9e 100644 --- a/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj +++ b/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj @@ -175,7 +175,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 8314D6301A354DFE00EEE8E6 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -288,7 +288,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; @@ -340,7 +340,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; diff --git a/Plugins/vgmstream/vgmstream.xcodeproj/project.pbxproj b/Plugins/vgmstream/vgmstream.xcodeproj/project.pbxproj index b991669f8..6b7408339 100644 --- a/Plugins/vgmstream/vgmstream.xcodeproj/project.pbxproj +++ b/Plugins/vgmstream/vgmstream.xcodeproj/project.pbxproj @@ -210,7 +210,7 @@ ORGANIZATIONNAME = "Christopher Snowhill"; TargetAttributes = { 836F6B0F18BDB80D0095E648 = { - DevelopmentTeam = ""; + DevelopmentTeam = N6E749HJ2X; ProvisioningStyle = Manual; }; }; @@ -365,7 +365,7 @@ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, ../Vorbis/include, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -433,7 +433,7 @@ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, ../Vorbis/include, ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; SDKROOT = macosx; diff --git a/Preferences/Preferences/GeneralPreferencesPlugin.m b/Preferences/Preferences/GeneralPreferencesPlugin.m index 56ff5ed8b..626e5d53e 100644 --- a/Preferences/Preferences/GeneralPreferencesPlugin.m +++ b/Preferences/Preferences/GeneralPreferencesPlugin.m @@ -74,13 +74,11 @@ } - (GeneralPreferencePane *)notificationsPane { - if(@available(macOS 10.14, *)) { - if(iTunesStyleCheck) { - iTunesStyleCheck.hidden = YES; - NSSize size = notificationsView.frame.size; - size.height -= 18; - [notificationsView setFrameSize:size]; - } + if(iTunesStyleCheck) { + iTunesStyleCheck.hidden = YES; + NSSize size = notificationsView.frame.size; + size.height -= 18; + [notificationsView setFrameSize:size]; } return [GeneralPreferencePane preferencePaneWithView:notificationsView diff --git a/Preferences/Preferences/Preferences.xcodeproj/project.pbxproj b/Preferences/Preferences/Preferences.xcodeproj/project.pbxproj index 4a15d4565..679678e62 100644 --- a/Preferences/Preferences/Preferences.xcodeproj/project.pbxproj +++ b/Preferences/Preferences/Preferences.xcodeproj/project.pbxproj @@ -655,7 +655,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; @@ -704,7 +704,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.15; OTHER_CFLAGS = "-Wframe-larger-than=4000"; OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000"; OTHER_LDFLAGS = ( diff --git a/Visualization/SpectrumViewSK.m b/Visualization/SpectrumViewSK.m index 4b36b3816..348af9e61 100644 --- a/Visualization/SpectrumViewSK.m +++ b/Visualization/SpectrumViewSK.m @@ -54,19 +54,6 @@ extern NSString *CogPlaybackDidStopNotficiation; if (![NSUserDefaults.standardUserDefaults boolForKey:@"spectrumSceneKit"]) return nil; - do { - if(@available(macOS 11.0, *)) { - // macOS 11 and newer seems to be safe - break; - } else if(@available(macOS 10.15, *)) { - // macOS 10.15.7 has a SceneKit bug with PBR noise - return nil; - } else { - // macOS 10.12 through 10.14.x seem to be safe too - break; - } - } while(0); - return [[SpectrumViewSK alloc] initWithFrame:frame]; } diff --git a/Window/TimeField.m b/Window/TimeField.m index e808d844c..fe5ba2a71 100644 --- a/Window/TimeField.m +++ b/Window/TimeField.m @@ -22,10 +22,7 @@ NSString *formatTimer(long minutes, long seconds, unichar prefix, int padding) { } - (void)awakeFromNib { - CGFloat fontSize = 11.0; - if(@available(macOS 10.14, *)) { - fontSize = 13.0; - } + CGFloat fontSize = 13.0; showTimeRemaining = [[NSUserDefaults standardUserDefaults] boolForKey:kTimerModeKey];