Compare commits
8 commits
734f1a7ed4
...
ada71590bf
Author | SHA1 | Date | |
---|---|---|---|
|
ada71590bf | ||
|
e5c525348b | ||
|
3b7ea7c018 | ||
|
df0e8b0678 | ||
|
42977ce5bb | ||
|
6d2b7c0ae6 | ||
|
4bb24c3324 | ||
|
54264f721c |
|
@ -28,6 +28,8 @@
|
||||||
|
|
||||||
NSImageView *imageView;
|
NSImageView *imageView;
|
||||||
NSProgressIndicator *progressIndicator;
|
NSProgressIndicator *progressIndicator;
|
||||||
|
|
||||||
|
NSGlassEffectContainerView *glassView API_AVAILABLE(macosx(26.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -43,11 +43,19 @@ static NSString *CogCustomDockIconsReloadNotification = @"CogCustomDockIconsRelo
|
||||||
}
|
}
|
||||||
|
|
||||||
static NSString *getBadgeName(NSString *baseName, BOOL colorfulIcons) {
|
static NSString *getBadgeName(NSString *baseName, BOOL colorfulIcons) {
|
||||||
|
if(@available(macOS 26.0, *)) {
|
||||||
|
if(colorfulIcons) {
|
||||||
|
return [@"Cog26" stringByAppendingString:[baseName stringByAppendingString:@"Colorful"]];
|
||||||
|
} else {
|
||||||
|
return [@"Cog26" stringByAppendingString:baseName];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
if(colorfulIcons) {
|
if(colorfulIcons) {
|
||||||
return [baseName stringByAppendingString:@"Colorful"];
|
return [baseName stringByAppendingString:@"Colorful"];
|
||||||
} else {
|
} else {
|
||||||
return [baseName stringByAppendingString:@"Normal"];
|
return [baseName stringByAppendingString:@"Normal"];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static NSString *getCustomIconName(NSString *baseName) {
|
static NSString *getCustomIconName(NSString *baseName) {
|
||||||
|
@ -137,6 +145,11 @@ static NSString *getCustomIconName(NSString *baseName) {
|
||||||
drawIcon = YES;
|
drawIcon = YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL glassIcons = NO;
|
||||||
|
if(@available(macOS 26.0, *)) {
|
||||||
|
glassIcons = YES;
|
||||||
|
}
|
||||||
|
|
||||||
NSDockTile *dockTile = [NSApp dockTile];
|
NSDockTile *dockTile = [NSApp dockTile];
|
||||||
|
|
||||||
if(drawIcon) {
|
if(drawIcon) {
|
||||||
|
@ -155,10 +168,11 @@ static NSString *getCustomIconName(NSString *baseName) {
|
||||||
|
|
||||||
NSSize badgeSize = [badgeImage size];
|
NSSize badgeSize = [badgeImage size];
|
||||||
|
|
||||||
NSImage *newDockImage = (useCustomDockIcons && !useCustomDockIconsPlaque) ? [[NSImage alloc] initWithSize:NSMakeSize(1024, 1024)] : [dockImage copy];
|
if(!glassIcons || useCustomDockIcons) {
|
||||||
|
NSImage *newDockImage = (useCustomDockIcons && !useCustomDockIconsPlaque) ? [[NSImage alloc] initWithSize:NSMakeSize(2048, 2048)] : [dockImage copy];
|
||||||
[newDockImage lockFocus];
|
[newDockImage lockFocus];
|
||||||
|
|
||||||
[badgeImage drawInRect:NSMakeRect(0, 0, 1024, 1024)
|
[badgeImage drawInRect:NSMakeRect(0, 0, 2048, 2048)
|
||||||
fromRect:NSMakeRect(0, 0, badgeSize.width, badgeSize.height)
|
fromRect:NSMakeRect(0, 0, badgeSize.width, badgeSize.height)
|
||||||
operation:NSCompositingOperationSourceOver
|
operation:NSCompositingOperationSourceOver
|
||||||
fraction:1.0];
|
fraction:1.0];
|
||||||
|
@ -168,6 +182,15 @@ static NSString *getCustomIconName(NSString *baseName) {
|
||||||
imageView = [[NSImageView alloc] init];
|
imageView = [[NSImageView alloc] init];
|
||||||
[imageView setImage:newDockImage];
|
[imageView setImage:newDockImage];
|
||||||
[dockTile setContentView:imageView];
|
[dockTile setContentView:imageView];
|
||||||
|
} else {
|
||||||
|
if (@available(macOS 26.0, *)) {
|
||||||
|
glassView = [[NSGlassEffectContainerView alloc] initWithFrame:NSMakeRect(0, 0, badgeSize.width, badgeSize.height)];
|
||||||
|
}
|
||||||
|
imageView = [[NSImageView alloc] init];
|
||||||
|
[imageView setImage:badgeImage];
|
||||||
|
[glassView setContentView:imageView];
|
||||||
|
[dockTile setContentView:glassView];
|
||||||
|
}
|
||||||
|
|
||||||
progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0, 0.0, dockTile.size.width, 10.0)];
|
progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0, 0.0, dockTile.size.width, 10.0)];
|
||||||
[progressIndicator setStyle:NSProgressIndicatorStyleBar];
|
[progressIndicator setStyle:NSProgressIndicatorStyleBar];
|
||||||
|
@ -184,10 +207,20 @@ static NSString *getCustomIconName(NSString *baseName) {
|
||||||
|
|
||||||
if(displayProgress) {
|
if(displayProgress) {
|
||||||
if(!imageView) {
|
if(!imageView) {
|
||||||
|
NSImage *dockImage = [NSApp applicationIconImage];
|
||||||
|
NSSize size = [dockImage size];
|
||||||
|
if(@available(macOS 26.0, *)) {
|
||||||
|
glassView = [[NSGlassEffectContainerView alloc] initWithFrame:NSMakeRect(0, 0, size.width, size.height)];
|
||||||
|
}
|
||||||
imageView = [[NSImageView alloc] init];
|
imageView = [[NSImageView alloc] init];
|
||||||
[imageView setImage:[NSApp applicationIconImage]];
|
[imageView setImage:dockImage];
|
||||||
|
if(@available(macOS 26.0, *)) {
|
||||||
|
[glassView setContentView:imageView];
|
||||||
|
[dockTile setContentView:glassView];
|
||||||
|
} else {
|
||||||
[dockTile setContentView:imageView];
|
[dockTile setContentView:imageView];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(!progressIndicator) {
|
if(!progressIndicator) {
|
||||||
progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0, 0.0, dockTile.size.width, 10.0)];
|
progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0, 0.0, dockTile.size.width, 10.0)];
|
||||||
|
|
|
@ -693,7 +693,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "CogAudio" */;
|
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "CogAudio" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -905,6 +905,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
PRODUCT_MODULE_NAME = CogAudio;
|
PRODUCT_MODULE_NAME = CogAudio;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "CogAudio-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "CogAudio-Bridging-Header.h";
|
||||||
SYMROOT = ../build;
|
SYMROOT = ../build;
|
||||||
};
|
};
|
||||||
|
@ -952,6 +953,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
PRODUCT_MODULE_NAME = CogAudio;
|
PRODUCT_MODULE_NAME = CogAudio;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SWIFT_COMPILATION_MODE = wholemodule;
|
SWIFT_COMPILATION_MODE = wholemodule;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "CogAudio-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "CogAudio-Bridging-Header.h";
|
||||||
SYMROOT = ../build;
|
SYMROOT = ../build;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
int visAudioCursor, visAudioSize;
|
int visAudioCursor, visAudioSize;
|
||||||
uint64_t visSamplesPosted;
|
uint64_t visSamplesPosted;
|
||||||
BOOL ignoreLatency;
|
BOOL ignoreLatency;
|
||||||
|
double sinePhase;
|
||||||
}
|
}
|
||||||
|
|
||||||
static VisualizationController *_sharedController = nil;
|
static VisualizationController *_sharedController = nil;
|
||||||
|
@ -37,6 +38,7 @@ static VisualizationController *_sharedController = nil;
|
||||||
visAudioSize = 0;
|
visAudioSize = 0;
|
||||||
latency = 0;
|
latency = 0;
|
||||||
ignoreLatency = YES;
|
ignoreLatency = YES;
|
||||||
|
sinePhase = 0.0;
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
@ -51,6 +53,7 @@ static VisualizationController *_sharedController = nil;
|
||||||
visAudioCursor = 0;
|
visAudioCursor = 0;
|
||||||
visSamplesPosted = 0;
|
visSamplesPosted = 0;
|
||||||
ignoreLatency = YES;
|
ignoreLatency = YES;
|
||||||
|
sinePhase = 0.0;
|
||||||
if(visAudio && visAudioSize) {
|
if(visAudio && visAudioSize) {
|
||||||
bzero(visAudio, sizeof(float) * visAudioSize);
|
bzero(visAudio, sizeof(float) * visAudioSize);
|
||||||
}
|
}
|
||||||
|
@ -101,8 +104,13 @@ static VisualizationController *_sharedController = nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)postLatency:(double)latency {
|
- (void)postLatency:(double)latency {
|
||||||
ignoreLatency = (latency >= 45.0) || (latency < 0.0);
|
if((latency >= 45.0) || (latency < 0.0)) [[clang::unlikely]] {
|
||||||
|
ignoreLatency = YES;
|
||||||
self->latency = latency;
|
self->latency = latency;
|
||||||
|
} else {
|
||||||
|
self->latency = latency;
|
||||||
|
ignoreLatency = NO;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (double)readSampleRate {
|
- (double)readSampleRate {
|
||||||
|
@ -115,27 +123,44 @@ static VisualizationController *_sharedController = nil;
|
||||||
return visSamplesPosted;
|
return visSamplesPosted;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)generateSineWave:(float *_Nullable)outPCM visFFT:(float *_Nullable)outFFT {
|
||||||
|
double sinePhase = self->sinePhase;
|
||||||
|
self->sinePhase = fmod(sinePhase + (M_PI / 90.0), M_PI * 2.0);
|
||||||
|
if(outPCM || outFFT) {
|
||||||
|
const double stepSize = M_PI * 2.0 * 5.0 / 4096.0;
|
||||||
|
double sineStep = sinePhase;
|
||||||
|
for(int i = 0; i < 2048; ++i) {
|
||||||
|
double sinePoint = sin(sineStep);
|
||||||
|
if(outPCM) {
|
||||||
|
outPCM[i * 2] = sinePoint;
|
||||||
|
outPCM[i * 2 + 1] = sin(sineStep + stepSize);
|
||||||
|
}
|
||||||
|
if(outFFT) {
|
||||||
|
outFFT[i] = sinePoint * -40.0 - 40.0;
|
||||||
|
}
|
||||||
|
sineStep = fmod(sineStep + stepSize * 2, M_PI * 2.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
- (void)copyVisPCM:(float *_Nullable)outPCM visFFT:(float *_Nullable)outFFT latencyOffset:(double)latency {
|
- (void)copyVisPCM:(float *_Nullable)outPCM visFFT:(float *_Nullable)outFFT latencyOffset:(double)latency {
|
||||||
if(!outPCM && !outFFT) return;
|
if(!outPCM && !outFFT) return;
|
||||||
|
|
||||||
if(ignoreLatency || !visAudio || !visAudioSize) {
|
if(ignoreLatency || !visAudio || !visAudioSize) {
|
||||||
if(outPCM) bzero(outPCM, sizeof(float) * 4096);
|
[self generateSineWave:outPCM visFFT:outFFT];
|
||||||
if(outFFT) bzero(outFFT, sizeof(float) * 2048);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *visAudioTemp = calloc(sizeof(float), 4096);
|
void *visAudioTemp = calloc(sizeof(float), 4096);
|
||||||
if(!visAudioTemp) {
|
if(!visAudioTemp) {
|
||||||
if(outPCM) bzero(outPCM, sizeof(float) * 4096);
|
[self generateSineWave:outPCM visFFT:outFFT];
|
||||||
if(outFFT) bzero(outFFT, sizeof(float) * 2048);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@synchronized(self) {
|
@synchronized(self) {
|
||||||
if(!sampleRate) {
|
if(!sampleRate) {
|
||||||
free(visAudioTemp);
|
free(visAudioTemp);
|
||||||
if(outPCM) bzero(outPCM, 4096 * sizeof(float));
|
[self generateSineWave:outPCM visFFT:outFFT];
|
||||||
if(outFFT) bzero(outFFT, 2048 * sizeof(float));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int latencySamples = (int)(sampleRate * (self->latency + latency)) + 2048;
|
int latencySamples = (int)(sampleRate * (self->latency + latency)) + 2048;
|
||||||
|
|
|
@ -7,15 +7,5 @@
|
||||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)-spks</string>
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)-spks</string>
|
||||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)-spki</string>
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)-spki</string>
|
||||||
</array>
|
</array>
|
||||||
<key>com.apple.security.app-sandbox</key>
|
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.cs.disable-library-validation</key>
|
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.cs.allow-jit</key>
|
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.files.user-selected.read-write</key>
|
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.network.client</key>
|
|
||||||
<true/>
|
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -103,6 +103,12 @@
|
||||||
8327DBA9293CAD2400CD0580 /* Organya.bundle in CopyFiles */ = {isa = PBXBuildFile; fileRef = 8327DB94293C923500CD0580 /* Organya.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
8327DBA9293CAD2400CD0580 /* Organya.bundle in CopyFiles */ = {isa = PBXBuildFile; fileRef = 8327DB94293C923500CD0580 /* Organya.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
||||||
832923AF279FAC400048201E /* Cog.q1.json in Resources */ = {isa = PBXBuildFile; fileRef = 832923AE279FAC400048201E /* Cog.q1.json */; };
|
832923AF279FAC400048201E /* Cog.q1.json in Resources */ = {isa = PBXBuildFile; fileRef = 832923AE279FAC400048201E /* Cog.q1.json */; };
|
||||||
832CFC4F2851AA1A002AC26F /* NSView+Visibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 832CFC4E2851AA1A002AC26F /* NSView+Visibility.m */; };
|
832CFC4F2851AA1A002AC26F /* NSView+Visibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 832CFC4E2851AA1A002AC26F /* NSView+Visibility.m */; };
|
||||||
|
833985602DF97F7700828A3B /* Cog26Play.icon in Resources */ = {isa = PBXBuildFile; fileRef = 8339855F2DF97F7700828A3B /* Cog26Play.icon */; };
|
||||||
|
833985652DF97F8100828A3B /* Cog26PlayColorful.icon in Resources */ = {isa = PBXBuildFile; fileRef = 833985642DF97F8000828A3B /* Cog26PlayColorful.icon */; };
|
||||||
|
833985672DF97F8C00828A3B /* Cog26Pause.icon in Resources */ = {isa = PBXBuildFile; fileRef = 833985662DF97F8C00828A3B /* Cog26Pause.icon */; };
|
||||||
|
833985692DF97F9300828A3B /* Cog26PauseColorful.icon in Resources */ = {isa = PBXBuildFile; fileRef = 833985682DF97F9300828A3B /* Cog26PauseColorful.icon */; };
|
||||||
|
8339856B2DF97F9C00828A3B /* Cog26Stop.icon in Resources */ = {isa = PBXBuildFile; fileRef = 8339856A2DF97F9C00828A3B /* Cog26Stop.icon */; };
|
||||||
|
8339856D2DF97FA300828A3B /* Cog26StopColorful.icon in Resources */ = {isa = PBXBuildFile; fileRef = 8339856C2DF97FA300828A3B /* Cog26StopColorful.icon */; };
|
||||||
833D0C2527C4ABB80060E16A /* ScriptAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 833D0C2427C4ABB80060E16A /* ScriptAdditions.m */; };
|
833D0C2527C4ABB80060E16A /* ScriptAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 833D0C2427C4ABB80060E16A /* ScriptAdditions.m */; };
|
||||||
83489C6B2782F78700BDCEA2 /* libvgmPlayer.bundle in CopyFiles */ = {isa = PBXBuildFile; fileRef = 83489C542782F2DF00BDCEA2 /* libvgmPlayer.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
83489C6B2782F78700BDCEA2 /* libvgmPlayer.bundle in CopyFiles */ = {isa = PBXBuildFile; fileRef = 83489C542782F2DF00BDCEA2 /* libvgmPlayer.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
||||||
834B05EA2859C006000B7DC0 /* TotalTimeTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 834B05E92859C006000B7DC0 /* TotalTimeTransformer.m */; };
|
834B05EA2859C006000B7DC0 /* TotalTimeTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 834B05E92859C006000B7DC0 /* TotalTimeTransformer.m */; };
|
||||||
|
@ -158,6 +164,7 @@
|
||||||
83988F0E27BE0A5900A0E89A /* RedundantPlaylistDataStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 83988F0D27BE0A5900A0E89A /* RedundantPlaylistDataStore.m */; };
|
83988F0E27BE0A5900A0E89A /* RedundantPlaylistDataStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 83988F0D27BE0A5900A0E89A /* RedundantPlaylistDataStore.m */; };
|
||||||
8399D4E21805A55000B503B1 /* XmlContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8399D4E01805A55000B503B1 /* XmlContainer.m */; };
|
8399D4E21805A55000B503B1 /* XmlContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8399D4E01805A55000B503B1 /* XmlContainer.m */; };
|
||||||
839B837F286D7F8D00F529EE /* NumberHertzToStringTransformer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 839B837E286D7F8D00F529EE /* NumberHertzToStringTransformer.swift */; };
|
839B837F286D7F8D00F529EE /* NumberHertzToStringTransformer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 839B837E286D7F8D00F529EE /* NumberHertzToStringTransformer.swift */; };
|
||||||
|
839C957A2DF8E70900D007EB /* Cog26.icon in Resources */ = {isa = PBXBuildFile; fileRef = 839C95792DF8E70900D007EB /* Cog26.icon */; };
|
||||||
839DA7CF274A2D4C001B18E5 /* NSDictionary+Merge.m in Sources */ = {isa = PBXBuildFile; fileRef = 839DA7CE274A2D4C001B18E5 /* NSDictionary+Merge.m */; };
|
839DA7CF274A2D4C001B18E5 /* NSDictionary+Merge.m in Sources */ = {isa = PBXBuildFile; fileRef = 839DA7CE274A2D4C001B18E5 /* NSDictionary+Merge.m */; };
|
||||||
839E56F52879625100DFB5F4 /* SADIE_D02-96000.mhr in Resources */ = {isa = PBXBuildFile; fileRef = 839E56F12879625100DFB5F4 /* SADIE_D02-96000.mhr */; };
|
839E56F52879625100DFB5F4 /* SADIE_D02-96000.mhr in Resources */ = {isa = PBXBuildFile; fileRef = 839E56F12879625100DFB5F4 /* SADIE_D02-96000.mhr */; };
|
||||||
839E876E2D5DA0AC00A13526 /* RubberbandEngineTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 839E876D2D5DA0AC00A13526 /* RubberbandEngineTransformer.m */; };
|
839E876E2D5DA0AC00A13526 /* RubberbandEngineTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 839E876D2D5DA0AC00A13526 /* RubberbandEngineTransformer.m */; };
|
||||||
|
@ -908,6 +915,12 @@
|
||||||
832923AE279FAC400048201E /* Cog.q1.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Cog.q1.json; sourceTree = "<group>"; };
|
832923AE279FAC400048201E /* Cog.q1.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Cog.q1.json; sourceTree = "<group>"; };
|
||||||
832CFC4E2851AA1A002AC26F /* NSView+Visibility.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSView+Visibility.m"; sourceTree = "<group>"; };
|
832CFC4E2851AA1A002AC26F /* NSView+Visibility.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSView+Visibility.m"; sourceTree = "<group>"; };
|
||||||
832CFC532851AA37002AC26F /* NSView+Visibility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSView+Visibility.h"; sourceTree = "<group>"; };
|
832CFC532851AA37002AC26F /* NSView+Visibility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSView+Visibility.h"; sourceTree = "<group>"; };
|
||||||
|
8339855F2DF97F7700828A3B /* Cog26Play.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26Play.icon; sourceTree = "<group>"; };
|
||||||
|
833985642DF97F8000828A3B /* Cog26PlayColorful.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26PlayColorful.icon; sourceTree = "<group>"; };
|
||||||
|
833985662DF97F8C00828A3B /* Cog26Pause.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26Pause.icon; sourceTree = "<group>"; };
|
||||||
|
833985682DF97F9300828A3B /* Cog26PauseColorful.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26PauseColorful.icon; sourceTree = "<group>"; };
|
||||||
|
8339856A2DF97F9C00828A3B /* Cog26Stop.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26Stop.icon; sourceTree = "<group>"; };
|
||||||
|
8339856C2DF97FA300828A3B /* Cog26StopColorful.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26StopColorful.icon; sourceTree = "<group>"; };
|
||||||
833D0C2027C4ABA00060E16A /* ScriptAdditions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScriptAdditions.h; sourceTree = "<group>"; };
|
833D0C2027C4ABA00060E16A /* ScriptAdditions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScriptAdditions.h; sourceTree = "<group>"; };
|
||||||
833D0C2427C4ABB80060E16A /* ScriptAdditions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScriptAdditions.m; sourceTree = "<group>"; };
|
833D0C2427C4ABB80060E16A /* ScriptAdditions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScriptAdditions.m; sourceTree = "<group>"; };
|
||||||
833F681E1CDBCAA700AFB9F0 /* es */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
833F681E1CDBCAA700AFB9F0 /* es */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||||
|
@ -1004,6 +1017,7 @@
|
||||||
8399D4E01805A55000B503B1 /* XmlContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XmlContainer.m; sourceTree = "<group>"; };
|
8399D4E01805A55000B503B1 /* XmlContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XmlContainer.m; sourceTree = "<group>"; };
|
||||||
8399D4E11805A55000B503B1 /* XmlContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlContainer.h; sourceTree = "<group>"; };
|
8399D4E11805A55000B503B1 /* XmlContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XmlContainer.h; sourceTree = "<group>"; };
|
||||||
839B837E286D7F8D00F529EE /* NumberHertzToStringTransformer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = NumberHertzToStringTransformer.swift; path = Transformers/NumberHertzToStringTransformer.swift; sourceTree = "<group>"; };
|
839B837E286D7F8D00F529EE /* NumberHertzToStringTransformer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = NumberHertzToStringTransformer.swift; path = Transformers/NumberHertzToStringTransformer.swift; sourceTree = "<group>"; };
|
||||||
|
839C95792DF8E70900D007EB /* Cog26.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = Cog26.icon; sourceTree = "<group>"; };
|
||||||
839DA7CB274A2D4C001B18E5 /* NSDictionary+Merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Merge.h"; sourceTree = "<group>"; };
|
839DA7CB274A2D4C001B18E5 /* NSDictionary+Merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Merge.h"; sourceTree = "<group>"; };
|
||||||
839DA7CE274A2D4C001B18E5 /* NSDictionary+Merge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Merge.m"; sourceTree = "<group>"; };
|
839DA7CE274A2D4C001B18E5 /* NSDictionary+Merge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Merge.m"; sourceTree = "<group>"; };
|
||||||
839E3B53286595D700880EA2 /* GeneralPane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GeneralPane.h; path = Preferences/Preferences/GeneralPane.h; sourceTree = "<group>"; };
|
839E3B53286595D700880EA2 /* GeneralPane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GeneralPane.h; path = Preferences/Preferences/GeneralPane.h; sourceTree = "<group>"; };
|
||||||
|
@ -1473,6 +1487,13 @@
|
||||||
29B97314FDCFA39411CA2CEA /* Cog */ = {
|
29B97314FDCFA39411CA2CEA /* Cog */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
839C95792DF8E70900D007EB /* Cog26.icon */,
|
||||||
|
8339855F2DF97F7700828A3B /* Cog26Play.icon */,
|
||||||
|
833985642DF97F8000828A3B /* Cog26PlayColorful.icon */,
|
||||||
|
833985662DF97F8C00828A3B /* Cog26Pause.icon */,
|
||||||
|
833985682DF97F9300828A3B /* Cog26PauseColorful.icon */,
|
||||||
|
8339856A2DF97F9C00828A3B /* Cog26Stop.icon */,
|
||||||
|
8339856C2DF97FA300828A3B /* Cog26StopColorful.icon */,
|
||||||
0A1B412E286F6301008A6A44 /* Localizable.stringsdict */,
|
0A1B412E286F6301008A6A44 /* Localizable.stringsdict */,
|
||||||
83D0380E24A40DF2004CF90F /* CogAssets.xcassets */,
|
83D0380E24A40DF2004CF90F /* CogAssets.xcassets */,
|
||||||
83859520234FEB35004E9946 /* Cog.entitlements */,
|
83859520234FEB35004E9946 /* Cog.entitlements */,
|
||||||
|
@ -2043,7 +2064,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1500;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Cog" */;
|
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Cog" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -2452,6 +2473,7 @@
|
||||||
isa = PBXResourcesBuildPhase;
|
isa = PBXResourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
8339856B2DF97F9C00828A3B /* Cog26Stop.icon in Resources */,
|
||||||
83BC5AC420E4CE9000631CD4 /* Feedback.xib in Resources */,
|
83BC5AC420E4CE9000631CD4 /* Feedback.xib in Resources */,
|
||||||
83BC5AC320E4CE8D00631CD4 /* SpotlightPanel.xib in Resources */,
|
83BC5AC320E4CE8D00631CD4 /* SpotlightPanel.xib in Resources */,
|
||||||
83BC5AC220E4CE8A00631CD4 /* FileTree.xib in Resources */,
|
83BC5AC220E4CE8A00631CD4 /* FileTree.xib in Resources */,
|
||||||
|
@ -2467,15 +2489,21 @@
|
||||||
839614AD286EDA5C00D3EEDB /* SpectrumWindow.xib in Resources */,
|
839614AD286EDA5C00D3EEDB /* SpectrumWindow.xib in Resources */,
|
||||||
171B57DD0C091F2B00F6AFAF /* flac.icns in Resources */,
|
171B57DD0C091F2B00F6AFAF /* flac.icns in Resources */,
|
||||||
171B57DE0C091F2B00F6AFAF /* m4a.icns in Resources */,
|
171B57DE0C091F2B00F6AFAF /* m4a.icns in Resources */,
|
||||||
|
833985692DF97F9300828A3B /* Cog26PauseColorful.icon in Resources */,
|
||||||
|
839C957A2DF8E70900D007EB /* Cog26.icon in Resources */,
|
||||||
839E56F52879625100DFB5F4 /* SADIE_D02-96000.mhr in Resources */,
|
839E56F52879625100DFB5F4 /* SADIE_D02-96000.mhr in Resources */,
|
||||||
830C37A127B95E3000E02BB0 /* Equalizer.xib in Resources */,
|
830C37A127B95E3000E02BB0 /* Equalizer.xib in Resources */,
|
||||||
171B57DF0C091F2B00F6AFAF /* mp3.icns in Resources */,
|
171B57DF0C091F2B00F6AFAF /* mp3.icns in Resources */,
|
||||||
171B57E00C091F2B00F6AFAF /* ogg.icns in Resources */,
|
171B57E00C091F2B00F6AFAF /* ogg.icns in Resources */,
|
||||||
|
833985652DF97F8100828A3B /* Cog26PlayColorful.icon in Resources */,
|
||||||
|
833985602DF97F7700828A3B /* Cog26Play.icon in Resources */,
|
||||||
17818A950C0B27AC001C4916 /* aiff.icns in Resources */,
|
17818A950C0B27AC001C4916 /* aiff.icns in Resources */,
|
||||||
17818A960C0B27AC001C4916 /* ape.icns in Resources */,
|
17818A960C0B27AC001C4916 /* ape.icns in Resources */,
|
||||||
17818A970C0B27AC001C4916 /* m3u.icns in Resources */,
|
17818A970C0B27AC001C4916 /* m3u.icns in Resources */,
|
||||||
17818A980C0B27AC001C4916 /* mpc.icns in Resources */,
|
17818A980C0B27AC001C4916 /* mpc.icns in Resources */,
|
||||||
17818A990C0B27AC001C4916 /* shn.icns in Resources */,
|
17818A990C0B27AC001C4916 /* shn.icns in Resources */,
|
||||||
|
8339856D2DF97FA300828A3B /* Cog26StopColorful.icon in Resources */,
|
||||||
|
833985672DF97F8C00828A3B /* Cog26Pause.icon in Resources */,
|
||||||
17818A9A0C0B27AC001C4916 /* wav.icns in Resources */,
|
17818A9A0C0B27AC001C4916 /* wav.icns in Resources */,
|
||||||
17818A9B0C0B27AC001C4916 /* wv.icns in Resources */,
|
17818A9B0C0B27AC001C4916 /* wv.icns in Resources */,
|
||||||
17D1B27D0CF8B2830028F5B5 /* cue.icns in Resources */,
|
17D1B27D0CF8B2830028F5B5 /* cue.icns in Resources */,
|
||||||
|
@ -2943,10 +2971,16 @@
|
||||||
C01FCF4B08A954540054247B /* Debug */ = {
|
C01FCF4B08A954540054247B /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = Cog26;
|
||||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = "Cog color";
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = "Cog color";
|
||||||
|
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
||||||
COMBINE_HIDPI_IMAGES = YES;
|
COMBINE_HIDPI_IMAGES = YES;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
|
DEAD_CODE_STRIPPING = YES;
|
||||||
|
ENABLE_APP_SANDBOX = YES;
|
||||||
|
ENABLE_HARDENED_RUNTIME = YES;
|
||||||
|
ENABLE_OUTGOING_NETWORK_CONNECTIONS = YES;
|
||||||
|
ENABLE_USER_SELECTED_FILES = readwrite;
|
||||||
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/ThirdParty/Frameworks";
|
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/ThirdParty/Frameworks";
|
||||||
GCC_DYNAMIC_NO_PIC = NO;
|
GCC_DYNAMIC_NO_PIC = NO;
|
||||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||||
|
@ -2971,6 +3005,7 @@
|
||||||
"$(PROJECT_DIR)",
|
"$(PROJECT_DIR)",
|
||||||
"$(PROJECT_DIR)/ThirdParty/rubberband/lib",
|
"$(PROJECT_DIR)/ThirdParty/rubberband/lib",
|
||||||
);
|
);
|
||||||
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
OTHER_CFLAGS = (
|
OTHER_CFLAGS = (
|
||||||
"-D__MACOSX__",
|
"-D__MACOSX__",
|
||||||
"-DHAVE_CONFIG_H",
|
"-DHAVE_CONFIG_H",
|
||||||
|
@ -2989,6 +3024,9 @@
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = org.cogx.cog;
|
PRODUCT_BUNDLE_IDENTIFIER = org.cogx.cog;
|
||||||
PRODUCT_NAME = Cog;
|
PRODUCT_NAME = Cog;
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
|
RUNTIME_EXCEPTION_ALLOW_JIT = YES;
|
||||||
|
RUNTIME_EXCEPTION_DISABLE_LIBRARY_VALIDATION = YES;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Cog-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Cog-Bridging-Header.h";
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
|
@ -3000,9 +3038,15 @@
|
||||||
C01FCF4C08A954540054247B /* Release */ = {
|
C01FCF4C08A954540054247B /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = Cog26;
|
||||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = "Cog color";
|
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = "Cog color";
|
||||||
|
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
||||||
COMBINE_HIDPI_IMAGES = YES;
|
COMBINE_HIDPI_IMAGES = YES;
|
||||||
|
DEAD_CODE_STRIPPING = YES;
|
||||||
|
ENABLE_APP_SANDBOX = YES;
|
||||||
|
ENABLE_HARDENED_RUNTIME = YES;
|
||||||
|
ENABLE_OUTGOING_NETWORK_CONNECTIONS = YES;
|
||||||
|
ENABLE_USER_SELECTED_FILES = readwrite;
|
||||||
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/ThirdParty/Frameworks";
|
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/ThirdParty/Frameworks";
|
||||||
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
||||||
HEADER_SEARCH_PATHS = ThirdParty/avif/include;
|
HEADER_SEARCH_PATHS = ThirdParty/avif/include;
|
||||||
|
@ -3025,6 +3069,7 @@
|
||||||
"$(PROJECT_DIR)",
|
"$(PROJECT_DIR)",
|
||||||
"$(PROJECT_DIR)/ThirdParty/rubberband/lib",
|
"$(PROJECT_DIR)/ThirdParty/rubberband/lib",
|
||||||
);
|
);
|
||||||
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
OTHER_CFLAGS = (
|
OTHER_CFLAGS = (
|
||||||
"-D__MACOSX__",
|
"-D__MACOSX__",
|
||||||
"-DHAVE_CONFIG_H",
|
"-DHAVE_CONFIG_H",
|
||||||
|
@ -3043,6 +3088,9 @@
|
||||||
);
|
);
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = org.cogx.cog;
|
PRODUCT_BUNDLE_IDENTIFIER = org.cogx.cog;
|
||||||
PRODUCT_NAME = Cog;
|
PRODUCT_NAME = Cog;
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
|
RUNTIME_EXCEPTION_ALLOW_JIT = YES;
|
||||||
|
RUNTIME_EXCEPTION_DISABLE_LIBRARY_VALIDATION = YES;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Cog-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Cog-Bridging-Header.h";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
|
@ -3079,7 +3127,7 @@
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = Cog.entitlements;
|
CODE_SIGN_ENTITLEMENTS = Cog.entitlements;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
ENABLE_HARDENED_RUNTIME = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
|
@ -3093,6 +3141,7 @@
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -3124,8 +3173,8 @@
|
||||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
CODE_SIGN_ENTITLEMENTS = Cog.entitlements;
|
CODE_SIGN_ENTITLEMENTS = Cog.entitlements;
|
||||||
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
ENABLE_HARDENED_RUNTIME = YES;
|
|
||||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
GCC_NO_COMMON_BLOCKS = YES;
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
|
@ -3136,6 +3185,7 @@
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SWIFT_COMPILATION_MODE = wholemodule;
|
SWIFT_COMPILATION_MODE = wholemodule;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.7">
|
version = "1.7">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
9
Cog26.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
9
Cog26.icon/Assets/play.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 207 234" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-421.248,-394.96)">
|
||||||
|
<g transform="matrix(11.2166,0,0,11.2166,395.945,394.96)">
|
||||||
|
<path d="M2.256,19.17C2.256,20.322 2.93,20.859 3.721,20.859C4.063,20.859 4.424,20.752 4.766,20.557L19.453,11.924C20.361,11.397 20.693,11.025 20.693,10.43C20.693,9.824 20.361,9.453 19.453,8.926L4.766,0.293C4.424,0.098 4.063,0 3.721,0C2.93,0 2.256,0.527 2.256,1.68L2.256,19.17Z" style="fill:rgb(226,255,0);fill-opacity:0.85;fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 950 B |
170
Cog26.icon/icon.json
Normal file
|
@ -0,0 +1,170 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : "plus-darker"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"solid" : "srgb:0.74968,0.74968,0.74968,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"image-name" : "play.svg",
|
||||||
|
"name" : "play",
|
||||||
|
"opacity" : 0.51,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.06,
|
||||||
|
"translation-in-points" : [
|
||||||
|
21,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "srgb:1.00000,0.45770,0.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
Cog26Pause.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26Pause.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
11
Cog26Pause.icon/Assets/pause.svg
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 176 211" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-277.791,-251.506)">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g id="Black-L" transform="matrix(1.74724,-0.391592,0.468171,1.46144,580.032,524.991)">
|
||||||
|
<path d="M27.344,20.752L43.603,20.752C51.074,20.752 54.883,16.943 54.883,9.473L54.883,-79.932C54.883,-87.256 51.074,-90.967 43.603,-91.211L27.344,-91.211C19.873,-91.211 16.064,-87.402 16.064,-79.932L16.064,9.473C15.918,16.943 19.678,20.752 27.344,20.752ZM81.787,20.752L98.047,20.752C105.518,20.752 109.326,16.943 109.326,9.473L109.326,-79.932C109.326,-87.256 105.518,-91.211 98.047,-91.211L81.787,-91.211C74.316,-91.211 70.508,-87.402 70.508,-79.932L70.508,9.473C70.508,16.943 74.17,20.752 81.787,20.752Z" style="fill:rgb(230,247,0);fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
145
Cog26Pause.icon/icon.json
Normal file
|
@ -0,0 +1,145 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"fill" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
},
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "pause.svg",
|
||||||
|
"name" : "pause",
|
||||||
|
"opacity" : 0.51
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "srgb:1.00000,0.45770,0.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
Cog26PauseColorful.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26PauseColorful.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
11
Cog26PauseColorful.icon/Assets/pause.svg
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 176 211" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-277.791,-251.506)">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g id="Black-L" transform="matrix(1.74724,-0.391592,0.468171,1.46144,580.032,524.991)">
|
||||||
|
<path d="M27.344,20.752L43.603,20.752C51.074,20.752 54.883,16.943 54.883,9.473L54.883,-79.932C54.883,-87.256 51.074,-90.967 43.603,-91.211L27.344,-91.211C19.873,-91.211 16.064,-87.402 16.064,-79.932L16.064,9.473C15.918,16.943 19.678,20.752 27.344,20.752ZM81.787,20.752L98.047,20.752C105.518,20.752 109.326,16.943 109.326,9.473L109.326,-79.932C109.326,-87.256 105.518,-91.211 98.047,-91.211L81.787,-91.211C74.316,-91.211 70.508,-87.402 70.508,-79.932L70.508,9.473C70.508,16.943 74.17,20.752 81.787,20.752Z" style="fill:rgb(230,247,0);fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
145
Cog26PauseColorful.icon/icon.json
Normal file
|
@ -0,0 +1,145 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"fill" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
},
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "pause.svg",
|
||||||
|
"name" : "pause",
|
||||||
|
"opacity" : 0.51
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-srgb:1.00000,0.80000,0.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
Cog26Play.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26Play.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
9
Cog26Play.icon/Assets/play.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 207 234" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-421.248,-394.96)">
|
||||||
|
<g transform="matrix(11.2166,0,0,11.2166,395.945,394.96)">
|
||||||
|
<path d="M2.256,19.17C2.256,20.322 2.93,20.859 3.721,20.859C4.063,20.859 4.424,20.752 4.766,20.557L19.453,11.924C20.361,11.397 20.693,11.025 20.693,10.43C20.693,9.824 20.361,9.453 19.453,8.926L4.766,0.293C4.424,0.098 4.063,0 3.721,0C2.93,0 2.256,0.527 2.256,1.68L2.256,19.17Z" style="fill:rgb(226,255,0);fill-opacity:0.85;fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 950 B |
171
Cog26Play.icon/icon.json
Normal file
|
@ -0,0 +1,171 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : "plus-darker"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"solid" : "srgb:0.74968,0.74968,0.74968,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "play.svg",
|
||||||
|
"name" : "play",
|
||||||
|
"opacity" : 0.51,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.06,
|
||||||
|
"translation-in-points" : [
|
||||||
|
21,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "srgb:1.00000,0.45770,0.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
Cog26PlayColorful.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26PlayColorful.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
9
Cog26PlayColorful.icon/Assets/play.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 207 234" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-421.248,-394.96)">
|
||||||
|
<g transform="matrix(11.2166,0,0,11.2166,395.945,394.96)">
|
||||||
|
<path d="M2.256,19.17C2.256,20.322 2.93,20.859 3.721,20.859C4.063,20.859 4.424,20.752 4.766,20.557L19.453,11.924C20.361,11.397 20.693,11.025 20.693,10.43C20.693,9.824 20.361,9.453 19.453,8.926L4.766,0.293C4.424,0.098 4.063,0 3.721,0C2.93,0 2.256,0.527 2.256,1.68L2.256,19.17Z" style="fill:rgb(226,255,0);fill-opacity:0.85;fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 950 B |
171
Cog26PlayColorful.icon/icon.json
Normal file
|
@ -0,0 +1,171 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : "plus-darker"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"solid" : "srgb:0.74968,0.74968,0.74968,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "play.svg",
|
||||||
|
"name" : "play",
|
||||||
|
"opacity" : 0.51,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.06,
|
||||||
|
"translation-in-points" : [
|
||||||
|
21,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-srgb:0.15686,0.80392,0.25490,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
Cog26Stop.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26Stop.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
11
Cog26Stop.icon/Assets/stop.svg
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 213 213" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-256.89,-250.352)">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g id="Black-L" transform="matrix(1.76059,-0.394586,0.47175,1.47261,560.471,529.507)">
|
||||||
|
<path d="M16.064,4.004C16.064,14.16 23.145,20.752 34.082,20.752L110.01,20.752C120.947,20.752 128.027,14.16 128.027,4.004L128.027,-74.512C128.027,-84.668 120.947,-91.211 110.01,-91.211L34.082,-91.211C23.145,-91.211 16.064,-84.668 16.064,-74.512L16.064,4.004Z" style="fill:rgb(230,247,0);fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1 KiB |
166
Cog26Stop.icon/icon.json
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"extended-gray:0.50000,1.00000",
|
||||||
|
"extended-gray:1.00000,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "stop.svg",
|
||||||
|
"name" : "stop",
|
||||||
|
"opacity" : 0.51
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "srgb:1.00000,0.45770,0.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
9
Cog26StopColorful.icon/Assets/cog.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 720 720" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g>
|
||||||
|
<path d="M688.647,164.035C696.109,164.437 702.246,169.104 703.433,175.279C705.212,184.454 707.761,197.712 709.467,206.587C710.54,212.171 715.688,216.592 722.334,217.638C735.557,219.762 748.579,222.681 761.306,226.357C767.68,228.229 774.772,226.554 779.036,222.172C785.832,215.21 795.964,204.793 802.977,197.584C807.701,192.727 815.814,191.25 822.524,194.026C834.796,199.178 846.699,204.926 858.161,211.252C864.383,214.721 866.908,221.329 864.244,227.173C860.301,235.863 854.582,248.41 850.754,256.809C848.346,262.095 850.161,268.076 855.292,271.761C865.473,279.131 875.006,287.104 883.831,295.61C888.231,299.897 895.374,301.413 901.686,299.401C911.734,296.214 926.736,291.43 937.119,288.12C944.113,285.889 952.022,288.003 956.173,293.213C963.722,302.807 970.594,312.763 976.739,323.035C980.053,328.641 978.29,335.42 972.49,339.367C963.88,345.243 951.427,353.719 943.091,359.391C937.846,362.961 935.842,368.901 938.083,374.238C942.494,384.878 945.984,395.771 948.542,406.828C949.79,412.381 955.07,416.681 961.74,417.578C972.346,419.02 988.197,421.151 999.17,422.626C1006.56,423.62 1012.15,428.76 1012.63,435.009C1013.43,446.473 1013.43,457.967 1012.61,469.43C1012.13,475.673 1006.55,480.808 999.167,481.801C988.198,483.289 972.346,485.421 961.736,486.847C955.059,487.745 949.774,492.051 948.524,497.61C945.984,508.67 942.495,519.562 938.1,530.207C935.862,535.538 937.864,541.471 943.103,545.037C951.427,550.721 963.88,559.197 972.5,565.063C978.306,569.014 980.071,575.799 976.754,581.411C970.594,591.677 963.722,601.633 956.16,611.219C952.012,616.424 944.112,618.536 937.125,616.308C926.736,613.01 911.734,608.226 901.693,605.025C895.374,603.01 888.223,604.528 883.817,608.82C875.006,617.336 865.473,625.31 855.303,632.691C850.178,636.372 848.366,642.347 850.772,647.626C854.582,656.03 860.301,668.578 864.259,677.263C866.926,683.113 864.398,689.728 858.17,693.201C846.699,699.515 834.796,705.262 822.516,710.402C815.813,713.175 807.709,711.7 802.989,706.848C795.964,699.647 785.832,689.23 779.05,682.258C774.782,677.871 767.681,676.195 761.3,678.069C748.579,681.759 735.557,684.678 722.337,686.817C715.699,687.862 710.557,692.278 709.485,697.856C707.761,706.728 705.212,719.986 703.448,729.163C702.261,735.345 696.118,740.016 688.648,740.419C674.94,741.09 661.196,741.09 647.488,740.405C640.026,740.003 633.889,735.336 632.702,729.161C630.923,719.986 628.375,706.728 626.669,697.854C625.596,692.269 620.448,687.848 613.802,686.802C600.579,684.678 587.557,681.759 574.83,678.083C568.456,676.211 561.364,677.886 557.1,682.268C550.304,689.23 540.172,699.647 533.159,706.856C528.435,711.713 520.322,713.19 513.612,710.414C501.339,705.263 489.437,699.515 477.975,693.189C471.753,689.72 469.228,683.112 471.892,677.268C475.835,668.578 481.554,656.03 485.382,647.632C487.79,642.346 485.975,636.365 480.845,632.68C470.663,625.31 461.13,617.336 452.305,608.83C447.905,604.543 440.762,603.027 434.45,605.039C424.402,608.226 409.4,613.01 399.017,616.32C392.023,618.551 384.114,616.437 379.963,611.227C372.414,601.633 365.542,591.677 359.397,581.405C356.083,575.799 357.846,569.02 363.646,565.073C372.256,559.197 384.709,550.721 393.044,545.049C398.29,541.479 400.294,535.539 398.053,530.202C393.641,519.562 390.152,508.67 387.594,497.613C386.346,492.06 381.066,487.76 374.397,486.863C363.79,485.42 347.939,483.289 336.967,481.813C329.577,480.82 323.992,475.682 323.511,469.434C322.709,457.968 322.709,446.472 323.527,435.007C324.008,428.766 329.587,423.633 336.97,422.64C347.939,421.152 363.79,419.02 374.399,417.594C381.076,416.696 386.362,412.39 387.612,406.831C390.152,395.771 393.642,384.878 398.036,374.232C400.274,368.902 398.272,362.969 393.033,359.403C384.709,353.719 372.256,345.243 363.636,339.377C357.83,335.426 356.065,328.641 359.382,323.029C365.542,312.763 372.414,302.807 379.976,293.221C384.124,288.016 392.024,285.904 399.011,288.132C409.4,291.43 424.402,296.214 434.443,299.415C440.762,301.43 447.913,299.912 452.319,295.62C461.13,287.104 470.663,279.131 480.832,271.75C485.957,268.069 487.77,262.094 485.364,256.815C481.554,248.41 475.835,235.863 471.877,227.178C469.21,221.328 471.738,214.713 477.966,211.24C489.437,204.926 501.339,199.178 513.62,194.038C520.323,191.265 528.427,192.74 533.147,197.592C540.172,204.793 550.304,215.21 557.086,222.182C561.354,226.569 568.455,228.245 574.836,226.371C587.557,222.681 600.579,219.762 613.798,217.623C620.437,216.578 625.579,212.162 626.651,206.584C628.375,197.712 630.923,184.454 632.687,175.278C633.874,169.096 640.018,164.424 647.488,164.022C661.196,163.351 674.94,163.351 688.647,164.035Z" style="fill:rgb(170,170,170);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5 KiB |
9
Cog26StopColorful.icon/Assets/orb.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 444 444" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-290.495,-290.495)">
|
||||||
|
<g transform="matrix(1.64928,0,0,2.40966,-344.908,-858.521)">
|
||||||
|
<ellipse cx="519.565" cy="568.761" rx="134.304" ry="91.924" style="fill:rgb(255,200,0);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 701 B |
11
Cog26StopColorful.icon/Assets/stop.svg
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 213 213" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g transform="matrix(1,0,0,1,-256.89,-250.352)">
|
||||||
|
<g transform="matrix(1.00628,0.269633,-0.322362,1.20307,-166.912,-364.608)">
|
||||||
|
<g id="Black-L" transform="matrix(1.76059,-0.394586,0.47175,1.47261,560.471,529.507)">
|
||||||
|
<path d="M16.064,4.004C16.064,14.16 23.145,20.752 34.082,20.752L110.01,20.752C120.947,20.752 128.027,14.16 128.027,4.004L128.027,-74.512C128.027,-84.668 120.947,-91.211 110.01,-91.211L34.082,-91.211C23.145,-91.211 16.064,-84.668 16.064,-74.512L16.064,4.004Z" style="fill:rgb(230,247,0);fill-rule:nonzero;"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1 KiB |
166
Cog26StopColorful.icon/icon.json
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
{
|
||||||
|
"fill" : "automatic",
|
||||||
|
"groups" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "plus-lighter",
|
||||||
|
"blur-material" : 1,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : "plus-lighter"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:1.00000,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"extended-gray:0.50000,1.00000",
|
||||||
|
"extended-gray:1.00000,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "stop.svg",
|
||||||
|
"name" : "stop",
|
||||||
|
"opacity" : 0.51
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : 0.53,
|
||||||
|
"hidden" : false,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-srgb:1.00000,0.23137,0.18824,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "tinted",
|
||||||
|
"value" : {
|
||||||
|
"linear-gradient" : [
|
||||||
|
"gray:0.69290,1.00000",
|
||||||
|
"srgb:0.30390,0.30390,0.30390,1.00000"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"glass" : true,
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "orb.svg",
|
||||||
|
"name" : "orb",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"name" : "Group",
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : true,
|
||||||
|
"value" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"blur-material" : null,
|
||||||
|
"layers" : [
|
||||||
|
{
|
||||||
|
"blend-mode" : "normal",
|
||||||
|
"fill-specializations" : [
|
||||||
|
{
|
||||||
|
"value" : "automatic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "light",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.45594,1.00000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"appearance" : "dark",
|
||||||
|
"value" : {
|
||||||
|
"automatic-gradient" : "extended-gray:0.57231,1.00000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"hidden" : false,
|
||||||
|
"image-name" : "cog.svg",
|
||||||
|
"name" : "cog",
|
||||||
|
"opacity" : 1,
|
||||||
|
"position" : {
|
||||||
|
"scale" : 1.15,
|
||||||
|
"translation-in-points" : [
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"lighting" : "combined",
|
||||||
|
"shadow" : {
|
||||||
|
"kind" : "layer-color",
|
||||||
|
"opacity" : 1
|
||||||
|
},
|
||||||
|
"specular" : true,
|
||||||
|
"translucency" : {
|
||||||
|
"enabled" : false,
|
||||||
|
"value" : 0.72
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"supported-platforms" : {
|
||||||
|
"squares" : [
|
||||||
|
"macOS"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -558,7 +558,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83D3C4CE201C654F005564CB /* Build configuration list for PBXProject "libAdPlug" */;
|
buildConfigurationList = 83D3C4CE201C654F005564CB /* Build configuration list for PBXProject "libAdPlug" */;
|
||||||
|
@ -743,6 +743,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -802,6 +803,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -632,7 +632,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1640;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 8359FF3617FEF39F0060F3ED /* Build configuration list for PBXProject "File_Extractor" */;
|
buildConfigurationList = 8359FF3617FEF39F0060F3ED /* Build configuration list for PBXProject "File_Extractor" */;
|
||||||
|
@ -811,6 +811,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -863,6 +864,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -628,7 +628,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "GME" */;
|
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "GME" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -849,6 +849,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -896,6 +897,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -249,7 +249,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 8343792F17F97BDB00584396 /* Build configuration list for PBXProject "HighlyAdvanced" */;
|
buildConfigurationList = 8343792F17F97BDB00584396 /* Build configuration list for PBXProject "HighlyAdvanced" */;
|
||||||
|
@ -375,6 +375,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -426,6 +427,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -188,7 +188,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 8360EF0A17F92C91005208A4 /* Build configuration list for PBXProject "HighlyExperimental" */;
|
buildConfigurationList = 8360EF0A17F92C91005208A4 /* Build configuration list for PBXProject "HighlyExperimental" */;
|
||||||
|
@ -312,6 +312,7 @@
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -363,6 +364,7 @@
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -160,7 +160,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 834378D817F96E2600584396 /* Build configuration list for PBXProject "HighlyQuixotic" */;
|
buildConfigurationList = 834378D817F96E2600584396 /* Build configuration list for PBXProject "HighlyQuixotic" */;
|
||||||
|
@ -284,6 +284,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -342,6 +343,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -202,7 +202,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 8343786817F9658E00584396 /* Build configuration list for PBXProject "HighlyTheoretical" */;
|
buildConfigurationList = 8343786817F9658E00584396 /* Build configuration list for PBXProject "HighlyTheoretical" */;
|
||||||
|
@ -331,6 +331,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -391,6 +392,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -142,7 +142,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 836FB550182053D700B3AD2D /* Build configuration list for PBXProject "HivelyPlayer" */;
|
buildConfigurationList = 836FB550182053D700B3AD2D /* Build configuration list for PBXProject "HivelyPlayer" */;
|
||||||
|
@ -261,6 +261,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -314,6 +315,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -243,7 +243,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "MPCDec" */;
|
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "MPCDec" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -410,6 +410,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -455,6 +456,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -2347,7 +2347,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83E5EFB71FFEF7CC00659F0F /* Build configuration list for PBXProject "libOpenMPT" */;
|
buildConfigurationList = 83E5EFB71FFEF7CC00659F0F /* Build configuration list for PBXProject "libOpenMPT" */;
|
||||||
|
@ -2611,6 +2611,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
USE_HEADERMAP = YES;
|
USE_HEADERMAP = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
|
@ -2684,6 +2685,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
USE_HEADERMAP = YES;
|
USE_HEADERMAP = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
|
|
|
@ -251,7 +251,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83848FB21807623F00E7332D /* Build configuration list for PBXProject "SSEQPlayer" */;
|
buildConfigurationList = 83848FB21807623F00E7332D /* Build configuration list for PBXProject "SSEQPlayer" */;
|
||||||
|
@ -380,6 +380,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -431,6 +432,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -187,7 +187,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "Shorten" */;
|
buildConfigurationList = 1DEB91B108733DA50010E9CD /* Build configuration list for PBXProject "Shorten" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -362,6 +362,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -414,6 +415,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -230,7 +230,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83D731161A74968900CA1366 /* Build configuration list for PBXProject "g719" */;
|
buildConfigurationList = 83D731161A74968900CA1366 /* Build configuration list for PBXProject "g719" */;
|
||||||
|
@ -353,6 +353,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -407,6 +408,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -959,7 +959,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83C8B61C18AF57770071B040 /* Build configuration list for PBXProject "lazyusf2" */;
|
buildConfigurationList = 83C8B61C18AF57770071B040 /* Build configuration list for PBXProject "lazyusf2" */;
|
||||||
|
@ -1123,6 +1123,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -1175,6 +1176,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -186,7 +186,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
835FC6AF23F61BF0006960FA = {
|
835FC6AF23F61BF0006960FA = {
|
||||||
|
@ -308,6 +308,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -368,6 +369,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -126,7 +126,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83D3C675201D37D8005564CB /* Build configuration list for PBXProject "libbinio" */;
|
buildConfigurationList = 83D3C675201D37D8005564CB /* Build configuration list for PBXProject "libbinio" */;
|
||||||
|
@ -233,6 +233,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -292,6 +293,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -274,7 +274,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
83D6761F26539A7100252130 = {
|
83D6761F26539A7100252130 = {
|
||||||
CreatedOnToolsVersion = 12.5;
|
CreatedOnToolsVersion = 12.5;
|
||||||
|
@ -441,6 +441,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -542,6 +543,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -263,7 +263,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
83D676AD26539F4E00252130 = {
|
83D676AD26539F4E00252130 = {
|
||||||
CreatedOnToolsVersion = 12.5;
|
CreatedOnToolsVersion = 12.5;
|
||||||
|
@ -429,6 +429,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -530,6 +531,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1147,7 +1147,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
EDBE8EF825E7E641001EB4A4 = {
|
EDBE8EF825E7E641001EB4A4 = {
|
||||||
CreatedOnToolsVersion = 12.5;
|
CreatedOnToolsVersion = 12.5;
|
||||||
|
@ -1320,6 +1320,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -1380,6 +1381,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1105,7 +1105,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83CA240D1D7BC47C00F2EA53 /* Build configuration list for PBXProject "mGBA" */;
|
buildConfigurationList = 83CA240D1D7BC47C00F2EA53 /* Build configuration list for PBXProject "mGBA" */;
|
||||||
|
@ -1266,6 +1266,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
@ -1324,6 +1325,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
VERSION_INFO_PREFIX = "";
|
VERSION_INFO_PREFIX = "";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -172,7 +172,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83B066A6180D56B9008E3612 /* Build configuration list for PBXProject "midi_processing" */;
|
buildConfigurationList = 83B066A6180D56B9008E3612 /* Build configuration list for PBXProject "midi_processing" */;
|
||||||
|
@ -301,6 +301,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -354,6 +355,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -146,7 +146,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 8343781617F93CB500584396 /* Build configuration list for PBXProject "psflib" */;
|
buildConfigurationList = 8343781617F93CB500584396 /* Build configuration list for PBXProject "psflib" */;
|
||||||
|
@ -264,6 +264,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -315,6 +316,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -658,7 +658,6 @@
|
||||||
837CEAFC23487F2C00E62A4A /* raw_wavm.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAE723487F2B00E62A4A /* raw_wavm.c */; };
|
837CEAFC23487F2C00E62A4A /* raw_wavm.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAE723487F2B00E62A4A /* raw_wavm.c */; };
|
||||||
837CEAFD23487F2C00E62A4A /* psf.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAE823487F2B00E62A4A /* psf.c */; };
|
837CEAFD23487F2C00E62A4A /* psf.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAE823487F2B00E62A4A /* psf.c */; };
|
||||||
837CEAFE23487F2C00E62A4A /* jstm_streamfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 837CEAE923487F2B00E62A4A /* jstm_streamfile.h */; };
|
837CEAFE23487F2C00E62A4A /* jstm_streamfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 837CEAE923487F2B00E62A4A /* jstm_streamfile.h */; };
|
||||||
837CEAFF23487F2C00E62A4A /* raw_snds.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAEA23487F2B00E62A4A /* raw_snds.c */; };
|
|
||||||
837CEB0023487F2C00E62A4A /* smk.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAEB23487F2B00E62A4A /* smk.c */; };
|
837CEB0023487F2C00E62A4A /* smk.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAEB23487F2B00E62A4A /* smk.c */; };
|
||||||
837CEB0123487F2C00E62A4A /* xmu.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAEC23487F2C00E62A4A /* xmu.c */; };
|
837CEB0123487F2C00E62A4A /* xmu.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAEC23487F2C00E62A4A /* xmu.c */; };
|
||||||
837CEB0223487F2C00E62A4A /* raw_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAED23487F2C00E62A4A /* raw_int.c */; };
|
837CEB0223487F2C00E62A4A /* raw_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 837CEAED23487F2C00E62A4A /* raw_int.c */; };
|
||||||
|
@ -1618,7 +1617,6 @@
|
||||||
837CEAE723487F2B00E62A4A /* raw_wavm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw_wavm.c; sourceTree = "<group>"; };
|
837CEAE723487F2B00E62A4A /* raw_wavm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw_wavm.c; sourceTree = "<group>"; };
|
||||||
837CEAE823487F2B00E62A4A /* psf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = psf.c; sourceTree = "<group>"; };
|
837CEAE823487F2B00E62A4A /* psf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = psf.c; sourceTree = "<group>"; };
|
||||||
837CEAE923487F2B00E62A4A /* jstm_streamfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstm_streamfile.h; sourceTree = "<group>"; };
|
837CEAE923487F2B00E62A4A /* jstm_streamfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jstm_streamfile.h; sourceTree = "<group>"; };
|
||||||
837CEAEA23487F2B00E62A4A /* raw_snds.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw_snds.c; sourceTree = "<group>"; };
|
|
||||||
837CEAEB23487F2B00E62A4A /* smk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smk.c; sourceTree = "<group>"; };
|
837CEAEB23487F2B00E62A4A /* smk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = smk.c; sourceTree = "<group>"; };
|
||||||
837CEAEC23487F2C00E62A4A /* xmu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmu.c; sourceTree = "<group>"; };
|
837CEAEC23487F2C00E62A4A /* xmu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmu.c; sourceTree = "<group>"; };
|
||||||
837CEAED23487F2C00E62A4A /* raw_int.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw_int.c; sourceTree = "<group>"; };
|
837CEAED23487F2C00E62A4A /* raw_int.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw_int.c; sourceTree = "<group>"; };
|
||||||
|
@ -2617,7 +2615,6 @@
|
||||||
837CEADD23487F2A00E62A4A /* raw_pcm.c */,
|
837CEADD23487F2A00E62A4A /* raw_pcm.c */,
|
||||||
836F6EE718BDC2190095E648 /* raw_rsf.c */,
|
836F6EE718BDC2190095E648 /* raw_rsf.c */,
|
||||||
836F6EEA18BDC2190095E648 /* raw_s14_sss.c */,
|
836F6EEA18BDC2190095E648 /* raw_s14_sss.c */,
|
||||||
837CEAEA23487F2B00E62A4A /* raw_snds.c */,
|
|
||||||
837CEAE723487F2B00E62A4A /* raw_wavm.c */,
|
837CEAE723487F2B00E62A4A /* raw_wavm.c */,
|
||||||
836F6EE218BDC2190095E648 /* redspark.c */,
|
836F6EE218BDC2190095E648 /* redspark.c */,
|
||||||
834FE0D9215C79EA000A5D3D /* rfrm.c */,
|
834FE0D9215C79EA000A5D3D /* rfrm.c */,
|
||||||
|
@ -3130,7 +3127,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 836F6B3318BDB8880095E648 /* Build configuration list for PBXProject "libvgmstream" */;
|
buildConfigurationList = 836F6B3318BDB8880095E648 /* Build configuration list for PBXProject "libvgmstream" */;
|
||||||
|
@ -3609,7 +3606,6 @@
|
||||||
834F7E842C709F5B003AC386 /* apa3.c in Sources */,
|
834F7E842C709F5B003AC386 /* apa3.c in Sources */,
|
||||||
834FE106215C79ED000A5D3D /* utk.c in Sources */,
|
834FE106215C79ED000A5D3D /* utk.c in Sources */,
|
||||||
8373342B23F60CDC00DE14DC /* fwse.c in Sources */,
|
8373342B23F60CDC00DE14DC /* fwse.c in Sources */,
|
||||||
837CEAFF23487F2C00E62A4A /* raw_snds.c in Sources */,
|
|
||||||
83031EDC243C510500C3F3E0 /* vid1.c in Sources */,
|
83031EDC243C510500C3F3E0 /* vid1.c in Sources */,
|
||||||
834F7DD02C7093EA003AC386 /* icelib.c in Sources */,
|
834F7DD02C7093EA003AC386 /* icelib.c in Sources */,
|
||||||
83AA5D271F6E2F9C0020821C /* stma.c in Sources */,
|
83AA5D271F6E2F9C0020821C /* stma.c in Sources */,
|
||||||
|
@ -3985,6 +3981,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -4070,6 +4067,7 @@
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.7">
|
version = "1.7">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -474,6 +474,7 @@ int decode_get_frame_size(VGMSTREAM* vgmstream) {
|
||||||
case coding_OKI16:
|
case coding_OKI16:
|
||||||
case coding_OKI4S:
|
case coding_OKI4S:
|
||||||
case coding_MTF_IMA:
|
case coding_MTF_IMA:
|
||||||
|
case coding_SNDS_IMA:
|
||||||
return 0x01;
|
return 0x01;
|
||||||
case coding_RAD_IMA:
|
case coding_RAD_IMA:
|
||||||
case coding_NDS_IMA:
|
case coding_NDS_IMA:
|
||||||
|
@ -487,7 +488,6 @@ int decode_get_frame_size(VGMSTREAM* vgmstream) {
|
||||||
return 0x800;
|
return 0x800;
|
||||||
case coding_RAD_IMA_mono:
|
case coding_RAD_IMA_mono:
|
||||||
return 0x14;
|
return 0x14;
|
||||||
case coding_SNDS_IMA:
|
|
||||||
case coding_QD_IMA:
|
case coding_QD_IMA:
|
||||||
return 0; //todo: 0x01?
|
return 0; //todo: 0x01?
|
||||||
case coding_UBI_IMA: /* variable (PCM then IMA) */
|
case coding_UBI_IMA: /* variable (PCM then IMA) */
|
||||||
|
|
|
@ -145,24 +145,27 @@ static void camelot_ima_expand_nibble(VGMSTREAMCHANNEL * stream, off_t byte_offs
|
||||||
if (*step_index > 88) *step_index=88;
|
if (*step_index > 88) *step_index=88;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The Incredibles PC, updates step_index before doing current sample */
|
/* The Incredibles PC, updates step_index before doing current sample, reverse engineered from the .exe
|
||||||
static void snds_ima_expand_nibble(VGMSTREAMCHANNEL * stream, off_t byte_offset, int nibble_shift, int32_t * hist1, int32_t * step_index) {
|
* (has no apparent name, files are raw data with .WAV extension but are inside a 'SNDS' folder).
|
||||||
int sample_nibble, sample_decoded, step, delta;
|
* A few voices show slight drifting but tables and algo look fine, encoder issue? */
|
||||||
|
static void snds_ima_expand_nibble(VGMSTREAMCHANNEL* stream, off_t byte_offset, int nibble_shift, int32_t * hist1, int32_t * step_index) {
|
||||||
|
int sample, step, delta;
|
||||||
|
|
||||||
sample_nibble = (read_8bit(byte_offset,stream->streamfile) >> nibble_shift)&0xf;
|
uint8_t code = (read_u8(byte_offset,stream->streamfile) >> nibble_shift)&0xf;
|
||||||
sample_decoded = *hist1;
|
sample = *hist1;
|
||||||
|
|
||||||
*step_index += ima_index_table[sample_nibble];
|
int code_pos = code & 7;
|
||||||
if (*step_index < 0) *step_index=0;
|
*step_index += ima_index_table[code_pos]; //OG table doesn't have negative indexes
|
||||||
if (*step_index > 88) *step_index=88;
|
if (*step_index < 0) *step_index = 0;
|
||||||
|
if (*step_index > 88) *step_index = 88;
|
||||||
|
|
||||||
step = ima_step_size_table[*step_index];
|
step = ima_step_size_table[*step_index];
|
||||||
|
|
||||||
delta = (sample_nibble & 7) * step / 4 + step / 8; /* standard IMA */
|
delta = (step >> 3) + ((step * code_pos) >> 2);
|
||||||
if (sample_nibble & 8) delta = -delta;
|
if (code & 8) delta = -delta;
|
||||||
sample_decoded += delta;
|
sample += delta;
|
||||||
|
|
||||||
*hist1 = clamp16(sample_decoded);
|
*hist1 = clamp16(sample);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Omikron: The Nomad Soul, algorithm from the .exe */
|
/* Omikron: The Nomad Soul, algorithm from the .exe */
|
||||||
|
@ -440,20 +443,27 @@ void decode_camelot_ima(VGMSTREAMCHANNEL * stream, sample_t * outbuf, int channe
|
||||||
}
|
}
|
||||||
|
|
||||||
void decode_snds_ima(VGMSTREAMCHANNEL * stream, sample_t * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel) {
|
void decode_snds_ima(VGMSTREAMCHANNEL * stream, sample_t * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel) {
|
||||||
int i, sample_count;
|
bool is_stereo = channelspacing > 1;
|
||||||
int32_t hist1 = stream->adpcm_history1_32;
|
|
||||||
int step_index = stream->adpcm_step_index;
|
int32_t hist1 = stream->adpcm_history1_32; // starts at 0
|
||||||
|
int step_index = stream->adpcm_step_index; // starts at 0
|
||||||
|
|
||||||
//external interleave
|
//external interleave
|
||||||
|
|
||||||
//no header
|
//no header
|
||||||
|
|
||||||
for (i=first_sample,sample_count=0; i<first_sample+samples_to_do; i++,sample_count+=channelspacing) {
|
int sample_count = 0;
|
||||||
off_t byte_offset = stream->offset + i;//one nibble per channel
|
for (int i = first_sample; i < first_sample + samples_to_do; i++) {
|
||||||
int nibble_shift = (channel==0?0:4); //high nibble first, based on channel
|
off_t byte_offset = is_stereo ?
|
||||||
|
stream->offset + i : // stereo: one nibble per channel
|
||||||
|
stream->offset + i/2; // mono: consecutive nibbles
|
||||||
|
int nibble_shift = is_stereo ?
|
||||||
|
((channel&1) ? 4:0) : //high nibble first
|
||||||
|
((i&1) ? 4:0);
|
||||||
|
|
||||||
snds_ima_expand_nibble(stream, byte_offset,nibble_shift, &hist1, &step_index);
|
snds_ima_expand_nibble(stream, byte_offset,nibble_shift, &hist1, &step_index);
|
||||||
outbuf[sample_count] = (short)(hist1);
|
outbuf[sample_count] = (short)(hist1);
|
||||||
|
sample_count += channelspacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
stream->adpcm_history1_32 = hist1;
|
stream->adpcm_history1_32 = hist1;
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
|
|
||||||
/* Decodes Tantalus TADC ADPCM codec, used in Saturn games.
|
/* Decodes Tantalus TADC ADPCM codec, used in Saturn games.
|
||||||
* Guessed based on other XA-style codecs values. */
|
* Reverse engineered from the exe (@ 0x06086d2 w/ 0x06010000 base address) */
|
||||||
void decode_tantalus(VGMSTREAMCHANNEL* stream, sample_t* outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do) {
|
void decode_tantalus(VGMSTREAMCHANNEL* stream, sample_t* outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do) {
|
||||||
uint8_t frame[0x10] = {0};
|
uint8_t frame[0x10] = {0};
|
||||||
off_t frame_offset;
|
off_t frame_offset;
|
||||||
int i, frames_in, sample_count = 0;
|
int frames_in, sample_count = 0;
|
||||||
size_t bytes_per_frame, samples_per_frame;
|
size_t bytes_per_frame, samples_per_frame;
|
||||||
int shift, filter, coef1, coef2;
|
|
||||||
int32_t hist1 = stream->adpcm_history1_32;
|
int32_t hist1 = stream->adpcm_history1_32;
|
||||||
int32_t hist2 = stream->adpcm_history2_32;
|
int32_t hist2 = stream->adpcm_history2_32;
|
||||||
|
|
||||||
|
@ -22,39 +22,31 @@ void decode_tantalus(VGMSTREAMCHANNEL* stream, sample_t* outbuf, int channelspac
|
||||||
/* parse frame header */
|
/* parse frame header */
|
||||||
frame_offset = stream->offset + bytes_per_frame*frames_in;
|
frame_offset = stream->offset + bytes_per_frame*frames_in;
|
||||||
read_streamfile(frame, frame_offset, bytes_per_frame, stream->streamfile); /* ignore EOF errors */
|
read_streamfile(frame, frame_offset, bytes_per_frame, stream->streamfile); /* ignore EOF errors */
|
||||||
filter = (frame[0x00] >> 4) & 0xf; /* 0 in tested files */
|
|
||||||
shift = (frame[0x00] >> 0) & 0xf;
|
// there is no XA filter select code but upper 4 bits seem to be always 0
|
||||||
if (filter != 0) {
|
int shift = (frame[0x00] >> 0);
|
||||||
VGM_LOG_ONCE("TANTALUS: unknown filter\n");
|
|
||||||
coef1 = 64;
|
|
||||||
coef2 = 64; /* will sound horrid and hopefully reported */
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
coef1 = 64;
|
|
||||||
coef2 = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* decode nibbles */
|
/* decode nibbles */
|
||||||
for (i = first_sample; i < first_sample + samples_to_do; i++) {
|
for (int i = first_sample; i < first_sample + samples_to_do; i++) {
|
||||||
uint8_t nibbles = frame[0x01 + i/2];
|
uint8_t nibbles = frame[0x01 + i/2];
|
||||||
int32_t sample;
|
int32_t sample;
|
||||||
|
|
||||||
sample = i&1 ? /* low nibble first */
|
int8_t code = i&1 ? /* low nibble first */
|
||||||
get_high_nibble_signed(nibbles) :
|
get_high_nibble_signed(nibbles) :
|
||||||
get_low_nibble_signed(nibbles);
|
get_low_nibble_signed(nibbles);
|
||||||
sample = sample << (shift + 6);
|
|
||||||
sample = (sample + (hist1 * coef1) + (hist2 * coef2)) >> 6;
|
// calc is done via [code][shift] = delta LUT in OG code (perhaps because SH2 can only do 1/2/4 shifts)
|
||||||
|
// basically equivalent to an XA codec with coef1 = 1.0, coef2 = 0.0
|
||||||
|
sample = hist1 + (code << shift);
|
||||||
|
|
||||||
outbuf[sample_count] = clamp16(sample);
|
outbuf[sample_count] = clamp16(sample);
|
||||||
sample_count += channelspacing;
|
sample_count += channelspacing;
|
||||||
|
|
||||||
hist2 = hist1;
|
|
||||||
hist1 = sample;
|
hist1 = sample;
|
||||||
}
|
}
|
||||||
|
|
||||||
stream->adpcm_history1_32 = hist1;
|
stream->adpcm_history1_32 = hist1;
|
||||||
stream->adpcm_history2_32 = hist2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t tantalus_bytes_to_samples(size_t bytes, int channels) {
|
int32_t tantalus_bytes_to_samples(size_t bytes, int channels) {
|
||||||
|
|
|
@ -543,7 +543,7 @@ static const char* extension_list[] = {
|
||||||
"sn0",
|
"sn0",
|
||||||
"snb",
|
"snb",
|
||||||
"snd",
|
"snd",
|
||||||
"snds",
|
"snds", //fake extension for .wav (renamed, to be removed)
|
||||||
"sng",
|
"sng",
|
||||||
"sngw",
|
"sngw",
|
||||||
"snr",
|
"snr",
|
||||||
|
|
|
@ -1566,6 +1566,12 @@ static const hcakey_info hcakey_list[] = {
|
||||||
// CHUNITHM Chinese Version (AC)
|
// CHUNITHM Chinese Version (AC)
|
||||||
{30194896045700459}, // 006B461914D5756B
|
{30194896045700459}, // 006B461914D5756B
|
||||||
|
|
||||||
|
// Raidou Remastered: The Mystery of the Soulless Army (PS4)
|
||||||
|
{954534454324}, // 000000DE3EAFE434
|
||||||
|
|
||||||
|
// Sand Land (multi)
|
||||||
|
{910990237314908160}, // 0CA47CCB51010000
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -482,8 +482,6 @@ VGMSTREAM * init_vgmstream_lsf_n1nj4n(STREAMFILE* streamFile);
|
||||||
VGMSTREAM * init_vgmstream_xwav_new(STREAMFILE* sf);
|
VGMSTREAM * init_vgmstream_xwav_new(STREAMFILE* sf);
|
||||||
VGMSTREAM * init_vgmstream_xwav_old(STREAMFILE* sf);
|
VGMSTREAM * init_vgmstream_xwav_old(STREAMFILE* sf);
|
||||||
|
|
||||||
VGMSTREAM * init_vgmstream_raw_snds(STREAMFILE* streamFile);
|
|
||||||
|
|
||||||
VGMSTREAM * init_vgmstream_hyperscan_kvag(STREAMFILE* streamFile);
|
VGMSTREAM * init_vgmstream_hyperscan_kvag(STREAMFILE* streamFile);
|
||||||
|
|
||||||
VGMSTREAM* init_vgmstream_psnd(STREAMFILE* sf);
|
VGMSTREAM* init_vgmstream_psnd(STREAMFILE* sf);
|
||||||
|
|
|
@ -10,19 +10,27 @@ VGMSTREAM* init_vgmstream_piff_tpcm(STREAMFILE* sf) {
|
||||||
|
|
||||||
|
|
||||||
/* checks */
|
/* checks */
|
||||||
|
if (!is_id32be(0x00,sf, "PIFF"))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
/* .tad: from internal filenames */
|
/* .tad: from internal filenames */
|
||||||
if (!check_extensions(sf, "tad"))
|
if (!check_extensions(sf, "tad"))
|
||||||
goto fail;
|
return NULL;
|
||||||
/* Tantalus also has PIFF without this */
|
|
||||||
if (!is_id32be(0x00,sf, "PIFF") || !is_id32be(0x08,sf, "TPCM") || !is_id32be(0x0c,sf, "TADH"))
|
uint32_t piff_size = read_s32le(0x04,sf);
|
||||||
goto fail;
|
if (piff_size + 0x08 != get_streamfile_size(sf))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
// Tantalus also has PIFF without this
|
||||||
|
if (!is_id32be(0x08,sf, "TPCM") || !is_id32be(0x0c,sf, "TADH"))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
header_offset = 0x14;
|
header_offset = 0x14;
|
||||||
/* 0x00: 1? */
|
// 0x00: 1?
|
||||||
/* 0x01: 1? */
|
// 0x01: 1?
|
||||||
channels = read_u16le(header_offset + 0x02,sf);
|
channels = read_u16le(header_offset + 0x02,sf);
|
||||||
sample_rate = read_s32le(header_offset + 0x04,sf);
|
sample_rate = read_s32le(header_offset + 0x04,sf);
|
||||||
/* 0x08+: ? (mostly fixed, maybe related to ADPCM?) */
|
// 0x08+: ? (mostly fixed, maybe related to ADPCM?)
|
||||||
loop_flag = 0;
|
loop_flag = 0;
|
||||||
|
|
||||||
if (!is_id32be(0x38,sf, "BODY"))
|
if (!is_id32be(0x38,sf, "BODY"))
|
||||||
|
|
|
@ -1,51 +0,0 @@
|
||||||
#include "meta.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* .snds - from Heavy Iron's The Incredibles (PC) */
|
|
||||||
VGMSTREAM * init_vgmstream_raw_snds(STREAMFILE *streamFile) {
|
|
||||||
VGMSTREAM * vgmstream = NULL;
|
|
||||||
off_t start_offset;
|
|
||||||
int loop_flag, channel_count;
|
|
||||||
size_t file_size;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
|
|
||||||
/* checks */
|
|
||||||
if (!check_extensions(streamFile, "snds"))
|
|
||||||
goto fail;
|
|
||||||
|
|
||||||
loop_flag = 0;
|
|
||||||
channel_count = 2;
|
|
||||||
start_offset = 0;
|
|
||||||
file_size = get_streamfile_size(streamFile);
|
|
||||||
|
|
||||||
|
|
||||||
/* build the VGMSTREAM */
|
|
||||||
vgmstream = allocate_vgmstream(channel_count, loop_flag);
|
|
||||||
if (!vgmstream) goto fail;
|
|
||||||
|
|
||||||
vgmstream->meta_type = meta_RAW_SNDS;
|
|
||||||
vgmstream->sample_rate = 48000;
|
|
||||||
|
|
||||||
/* file seems to be mistakenly 1/8 too long, check for 32 0 bytes where the padding should start */
|
|
||||||
vgmstream->num_samples = file_size*8/9;
|
|
||||||
for (i = 0; i < 8; i++) {
|
|
||||||
if (read_32bitBE(vgmstream->num_samples+i*4,streamFile) != 0) {
|
|
||||||
vgmstream->num_samples = file_size; /* no padding? just play the whole file */
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
vgmstream->coding_type = coding_SNDS_IMA;
|
|
||||||
vgmstream->layout_type = layout_none;
|
|
||||||
|
|
||||||
|
|
||||||
if (!vgmstream_open_stream(vgmstream,streamFile,start_offset))
|
|
||||||
goto fail;
|
|
||||||
return vgmstream;
|
|
||||||
|
|
||||||
fail:
|
|
||||||
close_vgmstream(vgmstream);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
|
@ -58,6 +58,7 @@ typedef enum {
|
||||||
ULAW,
|
ULAW,
|
||||||
ALAW,
|
ALAW,
|
||||||
DPCM_KCEJ,
|
DPCM_KCEJ,
|
||||||
|
IMA_SNDS,
|
||||||
|
|
||||||
UNKNOWN = 255,
|
UNKNOWN = 255,
|
||||||
} txth_codec_t;
|
} txth_codec_t;
|
||||||
|
@ -273,6 +274,7 @@ VGMSTREAM* init_vgmstream_txth(STREAMFILE* sf) {
|
||||||
case SDX2: coding = coding_SDX2; break;
|
case SDX2: coding = coding_SDX2; break;
|
||||||
case DVI_IMA: coding = coding_DVI_IMA; break;
|
case DVI_IMA: coding = coding_DVI_IMA; break;
|
||||||
case IMA_HV: coding = coding_HV_IMA; break;
|
case IMA_HV: coding = coding_HV_IMA; break;
|
||||||
|
case IMA_SNDS: coding = coding_SNDS_IMA; break;
|
||||||
#ifdef VGM_USE_MPEG
|
#ifdef VGM_USE_MPEG
|
||||||
case MPEG: coding = coding_MPEG_layer3; break; /* we later find out exactly which */
|
case MPEG: coding = coding_MPEG_layer3; break; /* we later find out exactly which */
|
||||||
#endif
|
#endif
|
||||||
|
@ -1056,6 +1058,7 @@ static txth_codec_t parse_codec(txth_header* txth, const char* val) {
|
||||||
else if (is_string(val,"CP_YM")) return CP_YM;
|
else if (is_string(val,"CP_YM")) return CP_YM;
|
||||||
else if (is_string(val,"PCM_FLOAT_LE")) return PCM_FLOAT_LE;
|
else if (is_string(val,"PCM_FLOAT_LE")) return PCM_FLOAT_LE;
|
||||||
else if (is_string(val,"IMA_HV")) return IMA_HV;
|
else if (is_string(val,"IMA_HV")) return IMA_HV;
|
||||||
|
else if (is_string(val,"IMA_SNDS")) return IMA_SNDS;
|
||||||
else if (is_string(val,"HEVAG")) return HEVAG;
|
else if (is_string(val,"HEVAG")) return HEVAG;
|
||||||
else if (is_string(val,"ULAW")) return ULAW;
|
else if (is_string(val,"ULAW")) return ULAW;
|
||||||
else if (is_string(val,"ALAW")) return ALAW;
|
else if (is_string(val,"ALAW")) return ALAW;
|
||||||
|
@ -2268,6 +2271,7 @@ static int get_bytes_to_samples(txth_header* txth, uint32_t bytes) {
|
||||||
case IMA:
|
case IMA:
|
||||||
case DVI_IMA:
|
case DVI_IMA:
|
||||||
case IMA_HV:
|
case IMA_HV:
|
||||||
|
case IMA_SNDS:
|
||||||
return ima_bytes_to_samples(bytes, txth->channels);
|
return ima_bytes_to_samples(bytes, txth->channels);
|
||||||
case AICA:
|
case AICA:
|
||||||
case YMZ:
|
case YMZ:
|
||||||
|
@ -2293,6 +2297,34 @@ static int get_bytes_to_samples(txth_header* txth, uint32_t bytes) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO move
|
||||||
|
static uint32_t find_padding(STREAMFILE* sf, uint32_t start_offset, uint32_t data_size) {
|
||||||
|
uint8_t buf[0x2000];
|
||||||
|
uint32_t read_size = sizeof(buf);
|
||||||
|
|
||||||
|
int32_t offset = start_offset + data_size;
|
||||||
|
while (offset > start_offset) {
|
||||||
|
int32_t read_offset = offset - read_size;
|
||||||
|
if (read_offset < 0)
|
||||||
|
read_offset = 0;
|
||||||
|
|
||||||
|
int bytes = read_streamfile(buf, read_offset, read_size, sf);
|
||||||
|
while (bytes >= 0) {
|
||||||
|
bytes--;
|
||||||
|
|
||||||
|
if (buf[bytes] != 0) {
|
||||||
|
uint32_t last_offset = start_offset + data_size;
|
||||||
|
uint32_t curr_offset = read_offset + bytes + 1;
|
||||||
|
return last_offset - curr_offset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
offset -= read_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int get_padding_size(txth_header* txth, int discard_empty) {
|
static int get_padding_size(txth_header* txth, int discard_empty) {
|
||||||
if (txth->data_size == 0 || txth->channels == 0)
|
if (txth->data_size == 0 || txth->channels == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -2300,6 +2332,11 @@ static int get_padding_size(txth_header* txth, int discard_empty) {
|
||||||
switch(txth->codec) {
|
switch(txth->codec) {
|
||||||
case PSX:
|
case PSX:
|
||||||
return ps_find_padding(txth->sf_body, txth->start_offset, txth->data_size, txth->channels, txth->interleave, discard_empty);
|
return ps_find_padding(txth->sf_body, txth->start_offset, txth->data_size, txth->channels, txth->interleave, discard_empty);
|
||||||
|
|
||||||
|
case IMA_SNDS: {
|
||||||
|
// several files seems to be 1/8 too long
|
||||||
|
return find_padding(txth->sf_body, txth->start_offset, txth->data_size);
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -554,7 +554,6 @@ init_vgmstream_t init_vgmstream_functions[] = {
|
||||||
init_vgmstream_raw_rsf, /* raw GC streamed files */
|
init_vgmstream_raw_rsf, /* raw GC streamed files */
|
||||||
init_vgmstream_raw_int, /* .int raw PCM */
|
init_vgmstream_raw_int, /* .int raw PCM */
|
||||||
init_vgmstream_ps_headerless, /* tries to detect a bunch of PS-ADPCM formats */
|
init_vgmstream_ps_headerless, /* tries to detect a bunch of PS-ADPCM formats */
|
||||||
init_vgmstream_raw_snds, /* .snds raw SNDS IMA */
|
|
||||||
init_vgmstream_raw_wavm, /* .wavm raw xbox */
|
init_vgmstream_raw_wavm, /* .wavm raw xbox */
|
||||||
init_vgmstream_raw_pcm, /* .raw raw PCM */
|
init_vgmstream_raw_pcm, /* .raw raw PCM */
|
||||||
init_vgmstream_raw_s14_sss, /* .s14/sss raw siren14 */
|
init_vgmstream_raw_s14_sss, /* .s14/sss raw siren14 */
|
||||||
|
|
|
@ -295,7 +295,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83DE0C00180A9BD400269051 /* Build configuration list for PBXProject "vio2sf" */;
|
buildConfigurationList = 83DE0C00180A9BD400269051 /* Build configuration list for PBXProject "vio2sf" */;
|
||||||
|
@ -428,6 +428,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -480,6 +481,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -156,7 +156,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "APL" */;
|
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "APL" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -242,6 +242,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -287,6 +288,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -185,7 +185,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83D3C5EE201C674D005564CB /* Build configuration list for PBXProject "AdPlug" */;
|
buildConfigurationList = 83D3C5EE201C674D005564CB /* Build configuration list for PBXProject "AdPlug" */;
|
||||||
|
@ -315,6 +315,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -370,6 +371,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -189,7 +189,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
};
|
};
|
||||||
buildConfigurationList = 8359FF1217FEF35C0060F3ED /* Build configuration list for PBXProject "ArchiveSource" */;
|
buildConfigurationList = 8359FF1217FEF35C0060F3ED /* Build configuration list for PBXProject "ArchiveSource" */;
|
||||||
|
@ -330,6 +330,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -382,6 +383,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -160,7 +160,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "CoreAudio" */;
|
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "CoreAudio" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -285,6 +285,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -330,6 +331,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -190,7 +190,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "CueSheet" */;
|
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "CueSheet" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -339,6 +339,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -384,6 +385,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -245,7 +245,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "FFMPEG" */;
|
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "FFMPEG" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -376,6 +376,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
@ -425,6 +426,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.7">
|
version = "1.7">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
|
@ -184,7 +184,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
BuildIndependentTargetsInParallel = YES;
|
BuildIndependentTargetsInParallel = YES;
|
||||||
LastUpgradeCheck = 1620;
|
LastUpgradeCheck = 2600;
|
||||||
};
|
};
|
||||||
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "FileSource" */;
|
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "FileSource" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 12.0";
|
||||||
|
@ -332,6 +332,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
|
@ -377,6 +378,7 @@
|
||||||
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
OTHER_CFLAGS = "-Wframe-larger-than=4000";
|
||||||
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
OTHER_CPLUSPLUSFLAGS = "-Wframe-larger-than=16000";
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||||
SYMROOT = ../../build;
|
SYMROOT = ../../build;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1640"
|
LastUpgradeVersion = "2600"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|